
  *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
/*
  font-family: "Tagesschrift", system-ui;
  font-weight: 400;
  font-style: normal;*/



}
/* header desgin */


  :root{
    --header-h: 121px;
  }

  :root{
    --site-header-h: 72px; /* তোমার header height অনুযায়ী 64/72/80 adjust করতে পারো */
    }


  /* ✅ Fixed Header */
  .fixed-header{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: var(--header-h) !important;
    z-index: 9999 !important;
    background: #fff !important;
    box-shadow: 0 6px 18px rgba(0,0,0,.08) !important;
  }


  /* ✅ Topbar */
  .topbar{
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    height: var(--header-h);
    border-top: 2px solid #2f3a45;
    border-bottom: 1px solid #e7e7e7;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
  }

  .topbar .inner{ padding-left: 18px; padding-right: 18px; }
  @media (min-width: 992px){
    .topbar .inner{ padding-left: 28px; padding-right: 28px; }
  }

  /* columns */
  .nav-col-left, .nav-col-right{ flex: 1 1 0; min-width: 0; }

  /* Desktop menu items */
  .menu-item{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: .2s ease;
    color: #111;
    white-space: nowrap;
    border: 1px solid #59bb7d;
  }
  .menu-item:hover{ background: rgba(0,0,0,.04); color:#111; }
  .menu-item i{ font-size: 18px; color:#111; }
  .nav-link-min{
    font-size: 12px;
    letter-spacing: .6px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    color:#111;
  }
  /* Right items */
  .right-item{
    display: inline-flex;
    align-items:center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    text-decoration: none;
    color:#111;
    transition: .2s ease;
    white-space: nowrap;
  }
  .right-item:hover{ background: rgba(0,0,0,.04); color:#111; }
  .right-item i{ font-size: 16px; }

  /*  Responsive toggles */
  .desktop-only{ display:flex; }
  .mobile-only{ display:none; }

  /*  LOGO FIX (default desktop) */
  .destop-logo{ display:flex; align-items:center; }
  .center-logo{ display:none; align-items:center; justify-content:center; }

  .destop-logo img{ width: 119px; height: auto; object-fit: contain; }
  .center-logo{
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
  }
  .center-logo img{
    max-width: 135%;
    object-fit: contain;
  }
  /*  Mobile Rules */
  @media (max-width: 991.98px){
    :root{ --header-h: 56px; }
    .desktop-only{ display:none !important; }
    .mobile-only{ display:flex !important; }
    /*  LOGO FIX (mobile) */
    .destop-logo{ display:none !important; }
    .center-logo{ display:flex !important; }
    .nav-col-left{ flex: 1 1 auto; }
    .nav-col-right{ flex: 1 1 auto; }
    .mobile-left-wrap{
      display:flex;
      align-items:center;
      gap: 10px;
      min-width: 0;
    }
    .mobile-right-wrap{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap: 8px;
      white-space: nowrap;
    }
    .center-logo{ width: 36px; height: 36px; }
    .mobile-right-wrap .right-item{
      padding: 6px 8px;
      border-radius: 10px;
    }
    .mobile-right-wrap .right-item i{ font-size: 18px; }
    .mobile-right-wrap .nav-link-min{
      font-size: 11px;
      letter-spacing: .4px;
    }
  }

  /* Extra small devices */
  @media (max-width: 360px){
    .mobile-right-wrap{ gap: 4px; }
    .mobile-right-wrap .right-item i{ font-size: 14px; }
    .mobile-right-wrap .nav-link-min{
      font-size: 9px;
      letter-spacing: .2px;
    }
    .mobile-right-wrap .right-item{ padding: 4px 6px; }
    .center-logo{ width: 30px; height: 30px; }
    .topbar .inner{ padding-left: 10px; padding-right: 10px; }
    .mobile-right-wrap .phone-text{ display:none; }
  }


  /* ✅ Offcanvas menu items */
  .off-item{
    position: relative;
    display:flex;
    align-items:center;
    gap:10px;
    padding: 12px 12px;
    border-radius: 10px;
    text-decoration:none;
    color:#111;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .6px;
  }
  .off-item:hover{ background: rgba(0,0,0,.05); color:#111; }

  /* ✅ Offcanvas above header */
  .offcanvas{ z-index: 11000 !important; }
  .offcanvas-backdrop{ z-index: 10999 !important; }

  /*login madel */

  /* ===== LOGIN MODAL THEME (MATCH GREEN UI) ===== */
.login-modal .modal-dialog { padding: 10px; }
.login-modal-content{
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  position: relative;
}

.login-close{
  position:absolute;
  top:14px;
  right:14px;
  z-index: 10;
  width:40px;
  height:40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.35);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.login-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 560px;
  background: rgba(255,255,255,.0);
}

.login-visual{
  padding: 28px;
  color:#fff;
  background:
        linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.65)),
        url("https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&w=1400&q=60");
  background-size: cover;
  background-position: center;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
}
.login-brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.login-logo{
  width:48px;height:48px;
  border-radius: 14px;
  background: rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.22);
}
.login-logo img{ width:100%; height:100%; object-fit: cover; }
.login-brand-title{ font-weight: 800; font-size: 18px; }
.login-brand-sub{ opacity:.85; font-size: 12px; margin-top:2px; }

.login-hero h2{ margin:0 0 10px; font-size: 34px; line-height:1.1; }
.login-hero p{ margin:0; opacity:.88; font-size: 14px; line-height: 1.6; max-width: 430px; }

.login-badges{ margin-top: 14px; display:flex; gap:10px; flex-wrap:wrap; }
.l-badge{
  font-size: 12px;
  padding: 9px 11px;
  border-radius: 14px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.20);
  display:inline-flex;
  gap:8px;
  align-items:center;
}
.login-foot{ font-size: 12px; opacity:.85; }
.login-panel{
  background: #f7faf9;
  padding: 26px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.login-card{
  width: min(420px, 100%);
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}
.login-card h3{ margin:0 0 6px; font-size: 22px; font-weight: 900; color:#0f172a; }
.login-card p{ margin:0 0 16px; color:#475569; font-size: 13px; }
.l-field{ margin-bottom: 12px; }
.l-field label{ display:block; margin-bottom:6px; font-size: 12px; color:#334155; font-weight:700; }
.l-input{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.14);
  background: #f8fafc;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
}
.l-input:focus{
  border-color: rgba(8,141,96,.55);
  box-shadow: 0 0 0 4px rgba(8,141,96,.12);
  background: #fff;
}
.l-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:10px;
}
.l-row2{ margin: 10px 0 14px; }

.l-link{
  font-size: 12px;
  color:#0f9b6c;
  text-decoration:none;
  font-weight:700;
}
.l-link:hover{ text-decoration: underline; }

.l-check{ display:flex; align-items:center; gap:8px; font-size: 13px; color:#334155; cursor:pointer; }
.l-mini{ font-size: 12px; color:#64748b; }

.l-btn{
  width:100%;
  border:0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  font-size: 14px;
  cursor:pointer;
  color:#fff;
  background: linear-gradient(135deg, #0f9b6c, #10b981);
  box-shadow: 0 14px 34px rgba(16,185,129,.25);
}
.l-btn:hover{ filter: brightness(1.03); }

.l-alt{
  margin-top: 12px;
  display:flex;
  gap:10px;
}
.l-alt-btn{
  flex:1;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.14);
  background: #f8fafc;
  padding: 10px 12px;
  cursor:pointer;
  font-weight: 800;
  font-size: 13px;
  color:#0f172a;
}
.l-alt-btn:hover{ background:#eef2f7; }

.l-note{
  margin-top: 12px;
  text-align:center;
  color:#64748b;
  font-size: 12px;
}


/* ===== Responsive ===== */
@media (max-width: 992px){
  .login-grid{ grid-template-columns: 1fr; min-height: auto; }
  .login-visual{ min-height: 280px; }
  .login-hero h2{ font-size: 28px; }

  .mobilemenu{
    padding-top: 50px !important;
  
    
    
  }
}


















/*search */
/* ===== HERO IMAGE SECTION (example) =====
*/
.hero-banner{
  position: relative;
  width: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ✅ Search bar section overlay between hero and packages */
.hero-search-wrap{
  position: relative;
  margin-top: -85px;          /* 🔥 image এর উপর overlap */
  z-index: 50;
  padding-bottom: 30px;
}

.hero-search-wrap .container{
  position: relative;
}

/*  Background plate (grey) */
.hero-search-bar{
  background: #f6f6f6;       
  border-radius: 18px;
  padding: 34px 34px;
  box-shadow: 0 18px 140px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 150px;
}

/*  Field style */
.hs-field{
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 290px;              /* desktop width */
  height: 62px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

.hs-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0f9d58;
  flex: 0 0 auto;
  margin-top: 2px;
}

.hs-field-inner{
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  min-width: 0;
}

.hs-field-inner small{
  font-size: 11px;
  font-weight: 900;
  color: #0f9d58;
  text-transform: uppercase;
  letter-spacing: .6px;
  line-height: 1;
}

/* ✅ Input text look like screenshot */
.date-input{
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  font-size: 16px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.2;
  cursor: pointer;
}
.date-input::placeholder{
  color: #9ca3af;
  font-weight: 700;
}

/*  Search button */
.hs-right{
  display: flex;
  align-items: center;
}
.hs-btn{
  height: 62px;
  min-width: 180px;
  padding: 0 34px;
  border: 0;
  border-radius: 14px;
  background: #0f9d58;
  color: #fff;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(15,157,88,.28);
  transition: .2s ease;
}
.hs-btn:hover{
  transform: translateY(-1px);
  filter: brightness(.97);
}
/*  Packages section spacing (so search bar doesn't crash into title) */
.packages-section,
#packages,
.popular-packages{
  position: relative;
  z-index: 1;
  padding-top: 30px;
}
/* =========================
    Responsive
========================= */
@media (max-width: 1199.98px){
  .hero-search-bar{
    padding: 28px;
    min-height: 140px;
  }
  .hs-field{ width: 270px; }
  .hs-btn{ min-width: 170px; }
}
@media (max-width: 991.98px){
  .hero-search-wrap{
    margin-top: -60px;    /* less overlap on tablet */
  }
  .hero-search-bar{
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    padding: 22px;
    min-height: auto;
  }
  .hs-field{
    width: 100%;
    max-width: 520px;
    height: 58px;
  }
  .hs-btn{
    width: 100%;
    max-width: 520px;
    height: 58px;
  }
}
@media (max-width: 575.98px){
  .hero-search-wrap{
    margin-top: -45px;
    padding-bottom: 18px;
  }
  .hero-search-bar{
    border-radius: 16px;
    padding: 18px 14px;
  }
  .hs-field{
    height: 54px;
    border-radius: 12px;
  }
  .hs-btn{
    height: 54px;
    border-radius: 12px;
  }
  .date-input{ font-size: 15px; }
}
.flatpickr-calendar{
  z-index: 99999 !important;
}

/* slider */

.slider{
  width:100%;
  height:500px;
  overflow:hidden;
  position:relative;
}
.slides{
  display:flex;
  height:100%;
  transition:transform .5s ease;
}
.slide{
  min-width:100%;
  height:100%;
}
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
/* arrows */
.s-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:999px; border:0; cursor:pointer;
  font-size:28px; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.85); box-shadow:0 10px 24px rgba(0,0,0,.18);
}
.s-prev{ left:14px; }
.s-next{ right:14px; background:white; color:black; }
.s-prev{ left:14px; }
.s-prev{ right:14px; background:white; color:black; }
@media (max-width:768px){
  .s-nav{ width:38px; height:38px; font-size:22px; }
}
/* pagkag */
.pkg-section{ padding:56px 0; background:#fff; }
.pkg-title{
  text-align:center;
  font-weight:900;
  color:#188b3d;
  margin-bottom: 28px;
}
.pkg-card{
  background:#fff;
  border:1px solid #e9eef2;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  transition:.2s ease;
}
.pkg-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(0,0,0,.10);
}
.pkg-media{ position:relative; height:190px; overflow:hidden; }
.pkg-media img{ width:100%; height:100%; object-fit:cover; display:block; transform:scale(1.03); }
.pkg-badge{
  position:absolute; top:12px; left:12px;
  background:rgba(0,0,0,.55);
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.pkg-badge .dot{
  width:8px; height:8px; border-radius:50%;
  background:#12c76a;
  box-shadow:0 0 0 3px rgba(18,199,106,.18);
}
.pkg-meta{
  position:absolute; left:0; right:0; bottom:10px;
  padding:0 14px;
  display:flex; justify-content:space-between; gap:10px;
  color:#fff; font-weight:900; font-size:12px;
  text-shadow:0 2px 10px rgba(0,0,0,.6);
}
.pkg-meta span{ display:inline-flex; align-items:center; gap:8px; }
.pkg-meta i{ font-size:14px; }
.pkg-body{ padding:14px 16px 16px; }
.pkg-name{
  font-size:16px;
  font-weight:900;
  line-height:1.25;
  margin:0 0 10px;
  color:#1f2937;
  min-height:44px;
}
.pkg-price{ font-size:20px; font-weight:900; color:#15803d; }
.pkg-sub{ font-size:12px; color:#6b7280; margin-top:2px; }
/* Pagination UI */
.pkg-pagination-wrap{
  display:flex;
  justify-content:center;
  margin-top: 26px;
}
.pkg-pagination{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}
.pkg-page-btn{
  border:1px solid #e5e7eb;
  background:#fff;
  padding:8px 12px;
  border-radius:10px;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  transition:.15s ease;
}
.pkg-page-btn:hover{ background:rgba(0,0,0,.04); }
.pkg-page-btn.active{
  background:#188b3d;
  border-color:#188b3d;
  color:#fff;
}
.pkg-page-btn:disabled{
  opacity:.5;
  cursor:not-allowed;
}
/* Mobile */
@media (max-width:768px){
  .pkg-media{ height:170px; }
}





























/*About */

.about-wrap{
  background: #f6f6f6;
  padding: 70px 0;
}

.about-wrap .container{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Layout */
.about-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text */
.about-title{
  font-size: 46px;
  font-weight: 900;
  margin: 0 0 10px;
  color: #111;
}

.about-subtitle{
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 28px;
  color: #111;
}

.about-content p{
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 22px;
  color: #333;
  max-width: 520px;
}

/* Image Stack */
.about-media{
  position: relative;
  min-height: 420px;
  display: flex;
  justify-content: flex-end;
}

.about-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* back image (bottom-left) */

.img-back{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* front image (top-right) */

.img-front{
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 360px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  border: 10px solid #fff; 
}

/* ===================== Responsive ===================== */

@media (max-width: 992px){
  .about-grid{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about-content p{
    max-width: 100%;
  }

  .about-media{
    min-height: 380px;
  }

  .img-front{ width: 82%; height: 320px; }
  .img-back{ width: 78%; height: 280px; }
}

@media (max-width: 576px){
  .about-wrap{ padding: 50px 0; }

  .about-title{ font-size: 34px; }
  .about-subtitle{ font-size: 16px; margin-bottom: 20px; }

  /* Mobile: neat stacked look */
  .about-media{
    min-height: auto;
    position: static;
    display: grid;
    gap: 14px;
  }
  .img-front, .img-back{
    position: static;
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 10px;
  }
  .img-front{
    border: 8px solid #fff;
  }
}




/* portfolio wrap */

.portfolio-wrap{
  padding: 70px 0 90px;
  background: silver;
 
}

.portfolio-wrap .container{
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.pf-title{
  font-weight: 900;
  font-size: 42px;
  margin: 10px 0 8px;
  color: #111;
}
.pf-sub{
  max-width: 860px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* Stage */
.pf-stage{
  height: 340px;
  position: relative;
  perspective: 1200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Track */
.pf-track{
  position: relative;
  width: 100%;
  height: 0px;
  transform-style: preserve-3d;
}

/* Cards */
.pf-card{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 240px;
  height: 240px;
  transform-style: preserve-3d;
  transform: translate(-50%, -50%);
  transition: transform 650ms ease, opacity 650ms ease, filter 650ms ease;
  will-change: transform;
}

.pf-card img{
   width: 200%;
  height: 100%;
  object-fit: cover;
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

/* Reflection effect (like screenshot) */
.pf-card::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 90px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), rgba(255,255,255,0));
  transform: scaleY(-1);
  opacity: .55;
  pointer-events: none;
  filter: blur(.2px);
}

/* Responsive sizes */
@media (max-width: 992px){
  .pf-title{ font-size: 36px; }
  .pf-stage{ height: 320px; }
  .pf-card{ width: 210px; height: 210px; }
}

@media (max-width: 576px){
  .pf-title{ font-size: 30px; }
  .pf-sub{ font-size: 14px; }
  .pf-stage{ height: 280px; }
  .pf-card{ width: 170px; height: 170px; }
}



















/* ========= Booking Page ========= */

.bookingpage{

  margin-top: 55px;
 padding-top:250px!important;
}

.stepbar-wrap{
  width: 100%;
  background: #59bb7d;
}
.stepbar{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-align: center;
  flex-wrap: wrap;
}
.stepbar-item{
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.stepbar-item.is-active{
  text-decoration: underline;
  text-underline-offset: 4px;
}
.stepbar-sep{
  opacity: .9;
  font-size: 16px;
  line-height: 1;
}
.ticket-wrap{ 
  padding: 18px 0; 
}
.ticket-grid{ 
  row-gap: 16px; 
}
.ticket-card{
  background:#fff;
  border:1px solid #eef0f4;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(16,24,40,.08);
  height:auto;
}
.ticket-body{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap:14px;
  padding:14px;
  align-items:start;
}
.t-side-left{
  border:1px solid #eef0f4;
  border-radius:14px;
  padding:12px;
  background:#fbfcff;
  height:260px;
}
.t-img{
  width:100%;
  height:100%;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #e8ebf2;
  background:#fff;
}
.t-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.t-left-info{
  border:1px solid #eef0f4;
  border-radius:12px;
  padding:10px;
  background:#fff;
}
.t-side-right{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  align-content:start;
}
.t-box{
  border:1px solid #eef0f4;
  border-radius:14px;
  padding:12px;
  background:#ffffff;
  min-height:69px;
}
.t-box-wide{
  grid-column: 1 / -1;
}
.t-new{
  font-size:13px;
  line-height:1.35;
  color:#101828;
  font-weight:700;
  margin-bottom:6px;
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}
.spanstatus{ 
  color:#12a150; 
  font-weight:800; 
}
.t-discount-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  border-radius:8px;
  background:#fff1f2;
  border:1px solid #ffe4e6;
  margin-right:6px;
  font-size:14px;
}
.t-left-discount{
  border:1px dashed #e6e8ee;
  border-radius:12px;
  padding:10px;
  background:#fff;
  font-weight:800;
  font-size:13px;
}
.inportent{
  color:red;
}
.t-actions{
  grid-column: 1 / -1;
  display:flex;
  justify-content:flex-end;
  align-items:center;
  padding-top:2px;
}
.t-btn{
  width: 100%;
  border:none;
  cursor:pointer;
  padding:10px 16px;
  border-radius:12px;
  font-weight:900;
  font-size:14px;
  color:#fff;
  background: linear-gradient(90deg, #0aa84f 0%, #1bbf6b 100%);
  box-shadow:0 10px 20px rgba(10,168,79,.20);
}
@media (max-width: 576px){
  .stepbar{
    padding: 12px 10px;
    gap: 6px;
  }
  .stepbar-item{
    font-size: 12px;
    white-space: normal;
  }
  .stepbar-sep{
    font-size: 14px;
  }
  .ticket-body{
    grid-template-columns: 2fr 3fr;
    gap:8px;
    padding:8px;
  }
  .t-side-left{
    height:220px;
    padding:6px;
  }
  .t-side-right{
    gap:7px;
  }
  .t-box{
    min-height:58px;
    padding:8px 7px;
    border-radius:10px;
  }
  .t-new{
    font-size:10.5px;
    margin-bottom:4px;
    gap:4px;
  }
  .t-btn{
    padding:9px 12px;
    font-size:13px;
    border-radius:9px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 991px){
  .ticket-body{ grid-template-columns: 200px 1fr; }
}

@media (max-width: 575px){
  /* bootstrap col-6 -> full width on mobile */
  .ticket-grid > [class*="col-6"]{ flex:0 0 100%; max-width:100%; }

  .ticket-body{ grid-template-columns: 1fr; }
  .t-side-right{ grid-template-columns: 1fr; }
  .t-actions{ justify-content:stretch; }
  .t-btn{ width:100%; }
}
/* ===== Booking Ticket Responsive Fix ===== */

.ticket-wrap{
  padding: 18px 0;
  overflow-x: hidden;
}

.ticket-card{
  max-width: 100%;
}

.ticket-body{
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
}

.t-side-left,
.t-side-right,
.t-box{
  min-width: 0;
}

.t-img{
  height: 475px;
}

.t-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet / iPad */
@media (max-width: 1024px){
  .ticket-grid > [class*="col-"]{
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .ticket-body{
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .t-img{
    height: 430px;
  }
}

/* Mobile */
@media (max-width: 767px){
  .ticket-body{
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .t-side-right{
    grid-template-columns: 1fr;
    z-index: 999;
  }
  .t-img{
    height: 300px;
  }
  .t-actions{
    justify-content: stretch;
  }
  .t-btn{
    width: 100%;
  }
}
/* Small Mobile */
@media (max-width: 420px){
  .ticket-wrap{
    padding: 10px 0;
  }

  .ticket-body{
    padding: 10px;
    gap: 10px;
  }

  .t-img{
    height: 240px;
  }

  .t-box{
    padding: 10px;
  }

  .t-new{
    font-size: 12px;
  }
}

/* ===== iPad / Tablet Device Fix Only ===== */
/* ===== Tablet/iPad Professional Layout ===== */
@media (min-width:768px) and (max-width:1024px){
  .ticket-body{
    display:grid;
    grid-template-columns: 2fr 3fr;
    gap:12px;
    align-items:start;
  }
  .t-side-left{
    height:100%;
  }
  .t-img{
    min-height:100%;
    height:100%;
  }
  .t-side-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .t-box{
    padding:10px;
    min-height:auto;
  }
  .t-actions{
    grid-column:1 / -1;
  }
  .t-btn{
    width:100%;
  }

}






/* ===== Booking Offcanvas ===== */
.booking-canvas{  width: 420px; 
  max-width: 100vw;}
.booking-canvas-head{ border-bottom:1px solid #e9eef3; }
.booking-canvas-body{ background:#f6f7fb; }

.bk-summary{
  background:#fff;
  border:1px solid #e9eef3;
  border-radius:16px;
  padding:12px;
}
.bk-s-row{
  display:flex; gap:10px; flex-wrap:wrap;
  justify-content:space-between;
}
.bk-s-item{
  font-size:13px;
  color:#111827;
}
.bk-s-item span{ color:#6b7280; font-weight:600; margin-right:6px; }
.bk-s-item.price b{ color:#ef4444; }

.bk-block{
  background:#fff;
  border:1px solid #e9eef3;
  border-radius:16px;
  padding:14px;
}
.bk-title{
  font-weight:800;
  display:flex; align-items:center; gap:10px;
  margin:0 0 12px;
}
.bk-title i{ color:#0aa06e; }
.req{ color:#ef4444; font-weight:800; }
/* Image preview */
.img-preview{
  width:100%;
  border:1px dashed #cfd8e3;
  border-radius:14px;
  background:#fbfdff;
  overflow:hidden;
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.img-preview img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:none;
}
.img-preview .hint{
  padding:12px;
  color:#6b7280;
  font-size:13px;
  text-align:center;
}
.off-item:hover {
  background: #f3f4f6;
}

/* Payment options */
.pay-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.pay-option{
  border:1px solid #e9eef3;
  border-radius:16px;
  padding:12px;
  background:#fff;
  display:flex;
  gap:10px;
  cursor:pointer;
}
.pay-option.active{
  border-color: rgba(10,160,110,.45);
  box-shadow: 0 0 0 4px rgba(10,160,110,.12);
}
.p-title{ font-weight:900; }
.p-sub{ font-size:12px; color:#6b7280; margin-top:4px; }
/* Desktop default */
#bookingCanvas.offcanvas-end{
  width: 30vw;        /* 30% feel */
  min-width: 360px;
  max-width: 520px;
}
/* Mobile */
@media (max-width: 992px){
  #bookingCanvas.offcanvas-end{
    width: 95vw !important;
    max-width: 95vw !important;
  }
  .booking-canvas{ width: 100% !important; }
  .pay-grid{ grid-template-columns:1fr; }
}


/* ===================== help desk =====================*/

.helpdesk-image{
  margin-top: 55px;
  padding-top:250px!important;
  }
/*help desk serve */

.stepbar-wrap{
  width: 100%;
  background: #59bb7d;
}
.help-wrap{ background:#f6f7fb; }
.help-head{
  display:flex; gap:14px; align-items:flex-start; justify-content:space-between;
  flex-wrap:wrap;
}
.help-title{ font-weight:900; margin:0; }
.help-sub{ color:#6b7280; margin:6px 0 0; }
.help-badges{ display:flex; gap:10px; flex-wrap:wrap; }
.help-badge{
  background:#fff; border:1px solid #e9eef3; border-radius:999px;
  padding:8px 12px; font-size:13px; font-weight:700;
}
.help-badge.is-green{
  border-color: rgba(10,160,110,.35);
  box-shadow: 0 0 0 4px rgba(10,160,110,.10);
}
.qcard{
  display:flex; gap:12px; align-items:center;
  background:#fff; border:1px solid #e9eef3; border-radius:16px;
  padding:14px; text-decoration:none; color:#111827;
  transition:.18s;
}
.qcard:hover{ transform: translateY(-2px); box-shadow:0 12px 22px rgba(15,23,42,.08); }
.qicon{
  width:42px; height:42px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(10,160,110,.12); color:#0aa06e;
  font-size:20px;
}
.qtitle{ font-weight:900; }
.qmeta{ font-size:13px; color:#6b7280; }
.help-card{
  background:#fff; border:1px solid #e9eef3; border-radius:18px;
  padding:16px;
}
.hcard-title{
  display:flex; align-items:center; gap:10px;
  font-weight:900; margin:0;
}
.hcard-title i{ color:#0aa06e; }
.req{ color:#ef4444; font-weight:900; }
.cat-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:10px;
}
.cat-item{
  border:1px solid #e9eef3; border-radius:14px; padding:10px 12px;
  font-weight:700; font-size:13px; color:#111827;
  display:flex; gap:10px; align-items:center;
}
.cat-item i{ color:#0aa06e; }
.chip{
  display:flex; align-items:center; gap:8px;
  border:1px solid #e9eef3; border-radius:999px;
  padding:8px 12px; font-weight:700; font-size:13px;
  background:#fff;
}
.addr-row{ display:flex; gap:10px; align-items:center; color:#374151; margin:8px 0; }
.addr-row i{ color:#0aa06e; }

@media (max-width: 576px){
  .cat-grid{ grid-template-columns:1fr; }
}


/* roombooking */
.seat-grid-card{ background:#fff; border:1px solid #e9ecef; border-radius:16px; padding:16px; }
.seat-wrapper{ display:flex; justify-content:center; gap: 30px; }
.seat{
  width: 52px; height: 52px; border-radius: 14px;
  font-size: 13px; font-weight: 800;
  display:flex; align-items:center; justify-content:center;
  user-select:none; cursor:pointer;
  background:#fff; border: 1.5px solid #d9d9d9; color:#111;
  transition: transform .08s ease;
}
.seat:active{ transform: scale(.98); }
.seat.disabled{ background:#dcdcdc; color:#9a9a9a; cursor:not-allowed; border-color:#dcdcdc; }
.seat.selected{ background:#0a8a4b; border-color:#0a8a4b; color:#fff; }
.bk-seat-center{ display:flex; align-items:center; justify-content:center; min-height: calc(100vh - 120px); }

/* sticky */
.bk-sticky{
  position: sticky;
  bottom: 0; left: 0; right: 0;
  background:#0a8a4b; color:#fff;
  padding: 10px 12px;
  display:flex; justify-content:space-between; align-items:center;
  gap:10px; z-index: 9999;
  border-radius: 14px;
  margin-top: 14px;
}
.bk-count{ font-weight:900; font-size:14px; }
.bk-sub{ font-size:12px; opacity:.95; max-width: 280px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.bk-total{ font-weight:900; font-size:18px; }
.bk-btn{ border: 0; border-radius: 12px; padding: 10px 14px; font-weight: 900; background:#fff; color:#0a8a4b; cursor:pointer; }
.bk-btn:disabled{ opacity:.6; cursor:not-allowed; }
.d-none{ display:none !important; }

/* header close */
.bk-form-head{ position: relative; padding: 8px 0 14px; margin-bottom: 12px; border-bottom: 1px solid #e9ecef; }
.bk-form-title{ font-weight: 800; font-size: 16px; }
.bk-form-close{
  position:absolute; top: 0; right: 0;
  width:36px; height:36px;
  border:1px solid #e6e6e6; background:#fff;
  border-radius:12px; font-size:24px; line-height: 1;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.bk-form-close:hover{ border-color:#cfcfcf; }

.bk-title{ font-weight: 800; margin:0 0 10px; }
.req{ color:#dc3545; }

/* preview */
.img-preview{
  border: 1px dashed #cfcfcf;
  border-radius: 12px;
  padding: 12px;
  min-height: 120px;
  display: grid;
  place-items: center;
}
.img-preview img{ max-width: 100%; max-height: 220px; border-radius: 10px; }
.hint{ font-size: 12px; color:#6c757d; }

/* summary */
.bk-summary{ background:#f8f9fa; border:1px solid #e9ecef; border-radius:14px; padding:10px 12px; }
.bk-s-row{ display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap; }
.bk-s-item span{ color:#6c757d; font-size:12px; margin-right:6px; }
.bk-s-item b{ font-weight:900; }
.bk-s-item.price b{ font-size:16px; }

/* payment */
.pay-grid{ display:grid; gap:10px; }
.pay-option{ border:1px solid #e9ecef; border-radius:14px; padding:10px 12px; display:flex; gap:10px; cursor:pointer; }
.pay-option input{ margin-top:4px; }
.p-title{ font-weight:900; }
.p-sub{ font-size:12px; color:#6c757d; }






 /* ============================================ new section  ============================================================ */

  /* ===== HOTEL SERVICES SECTION ===== */
.services-section {
  background-color: #f6f6f6;
  padding: 80px 0 90px;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-label {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  color: #b8985a;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}

.services-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #2c2c2c;
  font-family: 'Georgia', serif;
  line-height: 1.2;
}

.services-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 150px;
}

.service-icon-wrap {
  width: 120px;
  height: 120px;
  background: #edeae4;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover .service-icon-wrap {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(184, 152, 90, 0.18);
}

.service-item:hover svg {
  stroke: #9a7c3f;
}

svg {
  transition: stroke 0.3s ease;
}

.service-name {
  font-size: 14px;
  color: #444;
  text-align: center;
  font-weight: 400;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    gap: 20px;
  }
  .service-item {
    width: 120px;
  }
  .service-icon-wrap {
    width: 95px;
    height: 95px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    gap: 16px;
  }
  .service-item {
    width: 100px;
  }
  .service-icon-wrap {
    width: 80px;
    height: 80px;
  }
  .service-icon-wrap svg {
    width: 36px;
    height: 36px;
  }
  .services-title {
    font-size: 1.6rem;
  }
}

/* ===== RESTAURANT & BAR ===== */
.restaurant-section {
  padding: 60px 0 80px;
  background: #fff;
}

.restaurant-main-title {
  text-align: center;
  font-family: 'Georgia', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #2c2c2c;
  margin-bottom: 40px;
}

.restaurant-layout {
  display: flex;
  align-items: stretch;
  gap: 50px;
}

/* Left Image */
.restaurant-left-img {
  position: relative;
  width: 420px;
  min-width: 280px;
  flex-shrink: 0;
  overflow: hidden;
  min-height: 380px;
}

.restaurant-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.restaurant-chef-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 78px;
  height: 78px;
  background: #b8985a;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right */
.restaurant-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.menu-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid #ebebeb;
}

/* Left column items — right border + right padding */
.menu-item-row:nth-child(odd) {
  padding-right: 30px;
  border-right: 1px solid #ebebeb;
}

/* Right column items — left padding */
.menu-item-row:nth-child(even) {
  padding-left: 30px;
}

/* Remove bottom border from last 2 items */
.menu-item-row:nth-last-child(1),
.menu-item-row:nth-last-child(2) {
  border-bottom: none;
}

.menu-item-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-name {
  flex: 1;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.menu-item-price {
  font-size: 15px;
  color: #b8985a;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 991px) {
  .restaurant-layout {
    flex-direction: column;
    gap: 30px;
  }
  .restaurant-left-img {
    width: 100%;
    min-height: 260px;
  }
}

@media (max-width: 576px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-item-row:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }
  .menu-item-row:nth-child(even) {
    padding-left: 0;
  }
  .menu-item-row:nth-last-child(2) {
    border-bottom: 1px solid #ebebeb;
  }
  .menu-item-row:nth-last-child(1) {
    border-bottom: none;
  }
}


/* ===== STATS SECTION ===== */
.stats-section {
  background: #3f3f3f;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}
.stat-item {
  padding: 10px 20px;
  border-right: 1px solid #3a3733;
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: 'Georgia', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #b8985a;
  font-weight: 700;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
}
.stat-label {
  font-size: 13px;
  color: #888;
  margin: 0;
  letter-spacing: 0.5px;
}
/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(3) {
    border-right: 1px solid #3a3733;
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid #3a3733;
    padding-top: 20px;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .stat-item {
    padding: 20px 15px;
  }
}

 /* ============================================ FOOTER  section ============================================================ */
.footer-section {
  background: #3f3f3f;
  padding: 70px 0 0;
  color:#fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 0.8fr 1.2fr;
  gap: 40px;
}

/* Brand */
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-logo-main {
  font-family: 'Georgia', serif;
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
  line-height: 1;
}

.footer-logo-sub {
  font-size: 10px;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}

.footer-social-btn:hover {
  background: #b8985a;
  border-color: #b8985a;
  color: #fff;
}

/* Columns */
.footer-col-title {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Georgia', serif;
}

/* Services — 2 column list */
.footer-col:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.footer-col:nth-child(2) .footer-col-title {
  grid-column: span 2;
}

.footer-col:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  column-gap: 10px;
}

.footer-col:nth-child(2) h4 {
  grid-column: 1 / -1;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-links li a::before {
  content: '❯';
  font-size: 10px;
  color: #fff;
}

.footer-links li a:hover {
  color: #fff;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid #2a2a2a;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #fff;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col:nth-child(2) {
    grid-template-columns: 1fr 1fr;
  }
}






/* ===== iPad Pro 1024 Fix Only ===== */
@media only screen 
and (width: 1024px){

  .topbar .inner{
    padding: 8px 10px;
  }

  .nav-col-left{
    gap: 4px !important;
  }

  .menu-item{
    padding: 8px 10px;
    font-size: 11px;
  }

  .menu-item i{
    font-size: 12px;
  }

  .nav-link-min{
    font-size: 10px;
  }

  .destop-logo img{
    width: 78px !important;
    height: 78px !important;
  }

  .nav-col-right{
    gap: 4px !important;
  }

  .right-item{
    font-size: 11px;
  }

  .right-item span{
    font-size: 10px;
  }

}


/* =========================================================
   GLOBAL RESPONSIVE SAFETY PATCH - added by ChatGPT
   Keeps layout safe on mobile, tablet, desktop, and print
========================================================= */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
img, svg, video, canvas, iframe {
  max-width: 100%;
}
.container, .container-fluid {
  max-width: 100%;
}
button, input, select, textarea {
  max-width: 100%;
}

/* Large tablet */
@media (max-width: 1199.98px) {
  .menu-item { padding: 10px 8px; }
  .nav-link-min { font-size: 11px; }
  .right-item { padding: 8px 7px; }
  .destop-logo img { width: 100px; }
}

/* Tablet */
@media (max-width: 991.98px) {
  body { padding-top: var(--header-h); }
  .fixed-header { height: var(--header-h) !important; }
  .topbar { height: var(--header-h); }
  .login-modal .modal-dialog { margin: 8px; }
  .login-card { padding: 18px; }
  .hero-banner { min-height: 300px; }
  .pkg-section, .about-wrap, .portfolio-wrap, .services-section, .restaurant-section, .footer-section {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  :root { --header-h: 56px; }
  h1, .about-title, .pf-title, .services-title, .restaurant-main-title {
    word-break: break-word;
  }
  .hero-search-wrap { margin-top: -35px; }
  .hero-search-bar { width: 100%; }
  .hs-field, .hs-btn { max-width: 100%; }
  .login-visual { min-height: 230px; padding: 20px; }
  .login-hero h2 { font-size: 24px; }
  .login-panel { padding: 16px; }
  .about-content p { font-size: 14px; line-height: 1.75; }
  .portfolio-wrap .container, .about-wrap .container { padding: 0 14px; }
  .footer-section { padding-top: 45px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .topbar .inner { padding-left: 8px; padding-right: 8px; }
  .center-logo { width: 32px; height: 32px; }
  .mobile-right-wrap .nav-link-min { font-size: 10px; }
  .slider { height: 200px; }
  .s-nav { width: 34px; height: 34px; font-size: 20px; }
  .pkg-name { min-height: auto; }
  .login-card { border-radius: 14px; padding: 16px; }
  .l-alt { flex-direction: column; }
  .footer-col:nth-child(2) { grid-template-columns: 1fr; }
}

@media print {
  .fixed-header, .no-print, .s-nav, .offcanvas, .offcanvas-backdrop {
    display: none !important;
  }
  body { padding-top: 0 !important; overflow: visible !important; }
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}



/* =====================================================
   BOOKING CANVAS — MOBILE BUTTON FIX
   এটা CSS ফাইলের একদম শেষে add করুন
===================================================== */

