
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --saffron:    #E8761A;
      --deep-maroon:#6B1212;
      --maroon:     #e95a2c;
      --gold:       #ffb706;
      --gold-light: #F4C842;
      --cream:      #FDF6E8;
      --warm-white: #FFFBF3;
      --charcoal:   #1A1209;
      --text-body:  #3D2B0E;
      --text-muted: #7A5C38;
      --border:     #E8D5B0;
      --shadow:     rgba(107,18,18,0.12);
      --nav-h:      72px;
      --radius:     10px;
      --font-display:sans-serif;
      --font-body:  'DM Sans', sans-serif;
      --font-serif: 'Tiro Devanagari Sanskrit', serif;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); background: var(--warm-white); color: var(--text-body); line-height: 1.7; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; height: auto; display: block; }

    /* -- TOP BAR -- */
    .topbar {
      background: var(--charcoal);
      color: rgba(255,255,255,.75);
      font-size: .78rem;
      padding: 7px 5%;
      display: flex; justify-content: space-between; align-items: center; gap: 10px;
    }
    .topbar a { color: var(--gold-light); }
    .topbar-promo { background: var(--saffron); color: #fff; padding: 3px 12px; border-radius: 50px; font-weight: 700; font-size: .74rem; letter-spacing: .05em; }
    .topbar-social { display: flex; gap: 12px; }
    .topbar-social a { color: rgba(255,255,255,.6); font-size: .75rem; transition: color .2s; }
    .topbar-social a:hover { color: var(--gold-light); }

    /* -- NAVBAR -- */
    .navbar {
      position: sticky; top: 0; z-index: 999;
      background: var(--maroon);
      height: var(--nav-h);
      display: flex; align-items: center; padding: 0 5%;
      box-shadow: 0 2px 16px rgba(0,0,0,.3);
    }
    .nav-logo img { height: 52px; object-fit: contain; filter:brightness(0) invert(1); }
    .nav-logo { display: flex; align-items: center; }
    .nav-main { display: flex; align-items: center; list-style: none; margin-left: auto; }
    .nav-main > li { position: relative; }
    .nav-main > li > a,
    .nav-main > li > span {
      display: block; padding: 0 13px;
      height: var(--nav-h); line-height: var(--nav-h);
      color: #fff; font-size: .95rem; font-weight: 500;
      white-space: nowrap; cursor: pointer;
      transition: background .2s; letter-spacing: .02em;
    }
    .nav-main > li:hover > a,
    .nav-main > li:hover > span { background: rgba(255,255,255,.12); }
    .nav-dropdown {
      position: absolute; top: var(--nav-h); left: 0;
      background: #fff; min-width: 230px;
      border-radius: 0 0 var(--radius) var(--radius);
      box-shadow: 0 8px 32px rgba(0,0,0,.18);
      opacity: 0; pointer-events: none;
      transform: translateY(-6px);
      transition: opacity .2s, transform .2s;
      list-style: none; z-index: 200;
    }
    .nav-main > li:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
    .nav-dropdown a {
      display: block; padding: 10px 18px;
      color: var(--text-body); font-size: .82rem;
      border-bottom: 1px solid var(--border);
      transition: background .15s, color .15s;
    }
    .nav-dropdown li:last-child a { border-bottom: none; }
    .nav-dropdown a:hover { background: var(--cream); color: var(--maroon); }
    .nav-phone { margin-left: 10px; }
    .nav-phone a {
      display: flex; align-items: center; gap: 6px;
      background: var(--gold); color: var(--charcoal) !important;
      padding: 8px 14px !important; border-radius: 50px;
      height: auto !important; line-height: 1 !important;
      font-weight: 700 !important; font-size: .8rem !important;
    }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; margin-left: auto; padding: 8px;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

    /* -- HERO -- */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('https://www.dilkashholidayskashmir.com/img/1.jpg');
      background-size: cover; background-position: center;
      transform: scale(1.06); transition: transform 8s ease-out; z-index: 0;
    }
    .hero:hover .hero-bg { transform: scale(1); }
    .hero-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(160deg, rgba(107,18,18,.7) 0%, rgba(20,8,2,.78) 100%);
    }
    .hero-pattern {
      position: absolute; inset: 0; z-index: 1; opacity: .05;
      background-image: radial-gradient(circle, #F4C842 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .hero-content { position: relative; z-index: 2; padding: 40px 20px; max-width: 860px; }
    .hero-badge {
      display: inline-block;
      background: var(--gold); color: var(--charcoal);
      font-size: .75rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; padding: 6px 20px; border-radius: 50px;
      margin-bottom: 20px; animation: fadeUp .8s ease both;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 6.5vw, 4rem);
      color: #fff; line-height: 1.15; margin-bottom: 14px;
      animation: fadeUp .9s .1s ease both;
      text-shadow: 0 4px 24px rgba(0,0,0,.4);
    }
    .hero-sub {
      font-size: clamp(.95rem, 2vw, 1.18rem);
      color: rgba(255,255,255,.88); margin-bottom: 20px;
      font-family: var(--font-serif); font-style: italic;
      animation: fadeUp 1s .2s ease both;
    }
    .hero-facts {
      display: inline-grid; grid-template-columns: 1fr 1fr;
      gap: 10px 20px; text-align: left;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.22);
      border-radius: var(--radius);
      padding: 14px 20px; margin-bottom: 22px;
      font-size: .82rem; color: rgba(255,255,255,.9);
      animation: fadeUp 1s .25s ease both;
    }
    .hero-facts span { display: flex; gap: 7px; align-items: center; }
    .hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fadeUp 1.1s .3s ease both; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--saffron); color: #fff;
      padding: 15px 34px; border-radius: 50px;
      font-size: .97rem; font-weight: 700;
      box-shadow: 0 8px 28px rgba(232,118,26,.5);
      transition: transform .2s, box-shadow .2s;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(232,118,26,.55); color: #fff; }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.12); color: #fff;
      padding: 15px 30px; border-radius: 50px;
      font-size: .97rem; font-weight: 600;
      border: 1.5px solid rgba(255,255,255,.4);
      transition: background .2s;
    }
    .btn-outline:hover { background: rgba(255,255,255,.22); color: #fff; }
    .hero-scroll {
      position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
      color: rgba(255,255,255,.55); font-size: .73rem; letter-spacing: .1em; text-transform: uppercase;
    }
    .scroll-dot { width: 6px; height: 6px; background: rgba(255,255,255,.55); border-radius: 50%; animation: bounce 1.6s infinite; }

    @keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
    @keyframes bounce { 0%,100% { transform:translateY(0); } 50% { transform:translateY(6px); } }

    /* -- SECTION COMMONS -- */
    section { padding: 80px 5%; }
    .section-label {
      display: inline-block; font-size: .72rem; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase;
      color: var(--saffron); margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.9rem);
      color: var(--maroon); line-height: 1.2; margin-bottom: 14px;
    }
    .section-desc { max-width: 680px; color: var(--text-muted); font-size: .97rem; margin-bottom: 48px; }
    .divider {
      width: 56px; height: 4px;
      background: linear-gradient(90deg, var(--saffron), var(--gold));
      border-radius: 2px; margin: 14px 0 22px;
    }
    .center { text-align: center; }
    .center .section-desc { margin-left: auto; margin-right: auto; }
    .center .divider { margin-left: auto; margin-right: auto; }

    /* -- STATS STRIP -- */
    .stats-strip {
      background: var(--cream); border-bottom: 1px solid var(--border);
      padding: 0;
    }
    .stats-inner {
      display: grid; grid-template-columns: repeat(4, 1fr);
      max-width: 1100px; margin: 0 auto;
    }
    .stat-box {
      text-align: center; padding: 28px 20px;
      border-right: 1px solid var(--border);
      transition: background .2s;
    }
    .stat-box:last-child { border-right: none; }
    .stat-box:hover { background: #fff; }
    .stat-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--maroon); line-height: 1; }
    .stat-lbl { font-size: .82rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

    /* -- PACKAGES -- */
    #packages { background: var(--cream); }
    .pkg-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
    .pkg-tab {
      padding: 8px 20px; border-radius: 50px; font-size: .82rem; font-weight: 600;
      border: 1.5px solid var(--border); color: var(--text-muted);
      cursor: pointer; transition: .2s; background: #fff;
    }
    .pkg-tab.active, .pkg-tab:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }
    .packages-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 26px;
    }
    .pkg-card {
      background: #fff; border-radius: 14px; overflow: hidden;
      box-shadow: 0 4px 20px var(--shadow);
      transition: transform .25s, box-shadow .25s;
      display: flex; flex-direction: column;
    }
    .pkg-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px var(--shadow); }
    .pkg-card figure { position: relative; aspect-ratio: 16/10; overflow: hidden; margin: 0; }
    .pkg-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .pkg-card:hover figure img { transform: scale(1.07); }
    .pkg-badge {
      position: absolute; top: 14px; left: 14px;
      background: var(--maroon); color: #fff;
      font-size: .7rem; font-weight: 700;
      padding: 4px 12px; border-radius: 50px; letter-spacing: .06em;
    }
    .pkg-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
    .pkg-body h3 { font-family: var(--font-display); font-size: 1.12rem; color: var(--maroon); margin-bottom: 7px; line-height: 1.3; }
    .pkg-route { font-size: .82rem; color: var(--text-muted); margin-bottom: 16px; flex: 1; line-height: 1.5; }
    .pkg-route strong { color: var(--saffron); }
    .pkg-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
    .pkg-tag { font-size: .73rem; background: var(--cream); color: var(--text-muted); padding: 3px 10px; border-radius: 50px; border: 1px solid var(--border); }
    .pkg-actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .btn-enquiry, .btn-view {
      display: inline-block; padding: 9px 18px; border-radius: 50px;
      font-size: .78rem; font-weight: 700; transition: .2s;
    }
    .btn-enquiry { background: var(--saffron); color: #fff; }
    .btn-enquiry:hover { background: var(--maroon); color: #fff; }
    .btn-view { border: 1.5px solid var(--maroon); color: var(--maroon); }
    .btn-view:hover { background: var(--maroon); color: #fff; }

    /* -- DESTINATIONS -- */
    #destinations { background: var(--warm-white); }
    .dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .dest-card {
      position: relative; border-radius: 14px; overflow: hidden;
      aspect-ratio: 3/4; cursor: pointer;
      box-shadow: 0 4px 18px var(--shadow);
      transition: transform .3s;
    }
    .dest-card:hover { transform: translateY(-5px); }
    .dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .dest-card:hover img { transform: scale(1.08); }
    .dest-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(107,18,18,.85) 0%, transparent 55%);
    }
    .dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 16px; }
    .dest-info h3 { font-family: var(--font-display); color: #fff; font-size: 1.15rem; margin-bottom: 3px; }
    .dest-info span { font-size: .76rem; color: rgba(255,255,255,.75); }
    .dest-card-wide { grid-column: span 2; aspect-ratio: 16/9; }

    /* -- WHY US -- */
    #why-us {
      background: linear-gradient(135deg, var(--maroon) 0%, var(--deep-maroon) 100%);
      position: relative; overflow: hidden;
    }
    #why-us::before {
      content: ''; position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(244,200,66,.07) 1px, transparent 1px);
      background-size: 30px 30px;
    }
    #why-us .section-title { color: #fff; }
    #why-us .section-desc { color: rgba(255,255,255,.75); }
    #why-us .section-label { color: var(--gold-light); }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
    .why-card {
      background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.15);
      border-radius: 14px; padding: 30px 26px; text-align: center;
      backdrop-filter: blur(4px); transition: background .2s;
    }
    .why-card:hover { background: rgba(255,255,255,.15); }
    .why-icon { font-size: 2.2rem; margin-bottom: 14px; }
    .why-card h4 { color: var(--gold-light); font-weight: 700; margin-bottom: 8px; font-size: 1.02rem; }
    .why-card p { color: rgba(255,255,255,.72); font-size: .88rem; line-height: 1.65; }

    /* -- BEST TIME -- */
    #best-time { background: var(--cream); }
    .seasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .season-card {
      background: #fff; border-radius: 14px; padding: 26px 22px;
      border-top: 4px solid var(--saffron);
      box-shadow: 0 3px 16px var(--shadow); text-align: center;
      transition: transform .2s;
    }
    .season-card:hover { transform: translateY(-4px); }
    .season-icon { font-size: 2.4rem; margin-bottom: 12px; }
    .season-card h3 { font-family: var(--font-display); color: var(--maroon); font-size: 1.15rem; margin-bottom: 6px; }
    .season-card .months { font-size: .78rem; color: var(--saffron); font-weight: 700; margin-bottom: 10px; letter-spacing: .05em; }
    .season-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

    /* -- ABOUT / CONTENT -- */
    #about { background: var(--warm-white); }
    .about-grid { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
    .about-content h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--maroon); margin-bottom: 10px; }
    .about-content h3 { font-family: var(--font-display); color: var(--maroon); font-size: 1.2rem; margin: 22px 0 8px; }
    .about-content h4 { color: var(--text-body); font-size: .96rem; margin: 12px 0 4px; font-weight: 700; }
    .about-content p { color: var(--text-muted); font-size: .96rem; line-height: 1.85; margin-bottom: 14px; }
    .about-content ul { padding-left: 20px; margin-bottom: 14px; }
    .about-content ul li { color: var(--text-muted); font-size: .93rem; line-height: 1.75; margin-bottom: 5px; }
    .about-aside { position: sticky; top: calc(var(--nav-h) + 20px); }
    .contact-widget {
      background: linear-gradient(135deg, var(--maroon), var(--deep-maroon));
      border-radius: 16px; padding: 30px 26px; color: #fff; margin-bottom: 20px;
    }
    .contact-widget h4 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 10px; }
    .contact-widget p { font-size: .88rem; opacity: .82; margin-bottom: 20px; line-height: 1.6; }
    .contact-widget a.cta-full {
      display: block; text-align: center;
      background: var(--gold); color: var(--charcoal);
      padding: 14px; border-radius: 50px;
      font-weight: 700; font-size: .95rem; margin-bottom: 10px; transition: .2s;
    }
    .contact-widget a.cta-full:hover { background: var(--gold-light); }
    .contact-widget a.cta-wa {
      display: block; text-align: center;
      background: #25D366; color: #fff;
      padding: 12px; border-radius: 50px;
      font-weight: 700; font-size: .88rem; transition: .2s;
    }
    .contact-widget a.cta-wa:hover { background: #16a34a; }
    .contact-info-list { list-style: none; margin-top: 18px; }
    .contact-info-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.82); font-size: .84rem; margin-bottom: 9px; line-height: 1.5; }

    /* -- TESTIMONIALS -- */
    #testimonials { background: var(--cream); }
    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .review-card {
      background: #fff; border-radius: 12px; padding: 24px;
      border-top: 4px solid var(--maroon);
      box-shadow: 0 3px 16px var(--shadow); position: relative;
    }
    .review-stars { font-size: 1rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; display: block; }
    .review-body {
      font-size: .88rem; line-height: 1.75; color: #555;
      font-style: italic; margin-bottom: 16px;
      position: relative; padding-left: 16px;
    }
    .review-body::before {
      content: '\201C'; font-size: 44px; color: rgba(139,26,26,.13);
      position: absolute; left: -4px; top: -10px; line-height: 1; font-style: normal;
    }
    .review-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 14px; }
    .review-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--maroon); display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0;
      overflow: hidden;
    }
    .review-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .review-name { font-size: .85rem; font-weight: 700; color: var(--maroon); display: block; }
    .review-meta { font-size: .75rem; color: var(--text-muted); }
    .review-badge {
      position: absolute; top: 14px; right: 14px;
      background: rgba(139,26,26,.07); color: var(--maroon);
      font-size: .68rem; font-weight: 700; padding: 3px 8px;
      border-radius: 20px; letter-spacing: .04em; text-transform: uppercase;
    }

    /* -- BLOG -- */
    #blog { background: var(--warm-white); }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .blog-card {
      background: #fff; border-radius: 14px; overflow: hidden;
      box-shadow: 0 4px 18px var(--shadow);
      transition: transform .25s, box-shadow .25s;
    }
    .blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px var(--shadow); }
    .blog-card-img { overflow: hidden; aspect-ratio: 16/10; position: relative; }
    .blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; display: block; }
    .blog-card:hover .blog-card-img img { transform: scale(1.07); }
    .blog-date-badge {
      position: absolute; top: 14px; left: 14px;
      background: var(--saffron); color: #fff;
      font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 50px;
    }
    .blog-card-body { padding: 20px 22px 24px; }
    .blog-cat { font-size: .7rem; color: var(--saffron); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; display: block; }
    .blog-card-body h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--maroon); line-height: 1.35; margin-bottom: 10px; }
    .blog-card-body h3 a { color: inherit; transition: color .2s; }
    .blog-card-body h3 a:hover { color: var(--saffron); }
    .blog-read { display: inline-flex; align-items: center; gap: 5px; color: var(--saffron); font-size: .78rem; font-weight: 700; transition: gap .2s; }
    .blog-read:hover { gap: 10px; color: var(--maroon); }

    /* -- FAQ -- */
    #faq { background: var(--cream); }
    .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 10px; }
    .faq-q {
      padding: 15px 20px; font-weight: 600; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      gap: 12px; font-size: .88rem; color: var(--text-body);
      background: #fff; transition: background .2s; user-select: none;
    }
    .faq-q:hover { background: var(--cream); }
    .faq-q.open { background: var(--maroon); color: #fff; }
    .faq-q .arrow { font-size: 1rem; flex-shrink: 0; transition: transform .3s; }
    .faq-q.open .arrow { transform: rotate(45deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .25s;
      background: var(--cream); font-size: .87rem;
      color: var(--text-muted); line-height: 1.7; padding: 0 20px;
    }
    .faq-a.open { max-height: 260px; padding: 14px 20px; }

    /* -- TRAVEL GUIDE LINKS -- */
    #guide { background: var(--warm-white); }
    .link-group { margin-bottom: 34px; }
    .link-group h3 { font-family: var(--font-display); color: var(--maroon); font-size: 1.15rem; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
    .link-list { display: flex; flex-wrap: wrap; gap: 8px; }
    .link-list a {
      display: inline-block; background: #fff; border: 1px solid var(--border);
      color: var(--maroon); padding: 7px 14px; border-radius: 50px;
      font-size: .8rem; transition: .2s;
    }
    .link-list a:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }

    /* -- FOOTER -- */
    footer { background: var(--charcoal); color: rgba(255,255,255,.75); padding: 60px 5% 24px; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-brand img { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
    .footer-brand p { font-size: .84rem; line-height: 1.7; color: rgba(255,255,255,.58); margin-bottom: 10px; }
    footer h4 { color: var(--gold-light); font-size: .92rem; margin-bottom: 14px; font-weight: 700; }
    footer ul { list-style: none; }
    footer ul li { margin-bottom: 8px; }
    footer ul li a { color: rgba(255,255,255,.58); font-size: .82rem; transition: color .2s; }
    footer ul li a:hover { color: var(--gold-light); }
    .footer-social { display: flex; gap: 10px; margin-top: 14px; }
    .footer-social a {
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(255,255,255,.1); display: flex;
      align-items: center; justify-content: center;
      font-size: .8rem; color: rgba(255,255,255,.7);
      transition: background .2s;
    }
    .footer-social a:hover { background: var(--saffron); color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.38);
    }

    /* -- FLOATING BAR (mobile) -- */
    .floating-bar {
      position: fixed; bottom: 0; left: 0; right: 0;
      display: none; background: #fff;
      border-top: 1px solid var(--border); z-index: 998;
      box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    }
    .floating-bar a {
      flex: 1; text-align: center; padding: 11px 0;
      font-size: .83rem; font-weight: 700;
    }
    .fb-query { background: var(--maroon); color: #fff; }
    .fb-call  { background: var(--saffron); color: #fff; }
    .fb-wa    { background: #25D366; color: #fff; }

    /* -- WA BUBBLE -- */
    .wa-bubble {
      position: fixed; bottom: 80px; right: 18px;
      background: var(--gold); color: var(--charcoal);
      padding: 10px 18px; border-radius: 50px; z-index: 997;
      font-size: .88rem; font-weight: 700;
      box-shadow: 0 6px 20px rgba(255,183,6,.4);
      transition: transform .2s; display: flex; align-items: center; gap: 6px;
    }
    .wa-bubble:hover { transform: scale(1.08); color: var(--charcoal); }

    /* -- MODAL -- */
    .modal-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,.65); z-index: 1000;
      align-items: center; justify-content: center;
      backdrop-filter: blur(4px);
    }
    .modal-overlay.active { display: flex; }
    .modal-box {
      background: #fff; border-radius: 16px;
      width: 100%; max-width: 500px; margin: 20px;
      padding: 30px 28px; position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,.3);
      animation: fadeUp .3s ease;
      max-height: 90vh; overflow-y: auto;
    }
    .modal-close { position: absolute; top: 16px; right: 18px; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); background: none; border: none; }
    .modal-close:hover { color: var(--maroon); }
    .modal-box h3 { font-family: var(--font-display); color: var(--maroon); font-size: 1.5rem; margin-bottom: 4px; }
    .modal-box > p { color: var(--text-muted); font-size: .85rem; margin-bottom: 20px; }
    .form-row { margin-bottom: 14px; }
    .form-row label { display: block; font-size: .78rem; font-weight: 700; margin-bottom: 5px; color: var(--text-body); letter-spacing: .03em; text-transform: uppercase; }
    .form-row input, .form-row select, .form-row textarea {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid var(--border); border-radius: 8px;
      font-size: .9rem; font-family: var(--font-body); outline: none;
      transition: border .2s; background: var(--warm-white);
    }
    .form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--saffron); background: #fff; }
    .form-row textarea { resize: vertical; min-height: 80px; }
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-submit {
      width: 100%; background: var(--saffron); color: #fff; border: none;
      padding: 14px; border-radius: 50px; font-size: 1rem; font-weight: 700;
      cursor: pointer; transition: background .2s; font-family: var(--font-body);
    }
    .form-submit:hover { background: var(--maroon); }

    /* -- RESPONSIVE -- */
    @media (max-width: 1100px) {
      .about-grid { grid-template-columns: 1fr; }
      .about-aside { position: static; }
      .dest-grid { grid-template-columns: repeat(2, 1fr); }
      .dest-card-wide { grid-column: span 2; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .why-grid { grid-template-columns: 1fr 1fr; }
      .reviews-grid { grid-template-columns: 1fr 1fr; }
      .seasons-grid { grid-template-columns: 1fr 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr 1fr; }
      .stats-inner { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-main { display: none; }
      .hamburger { display: flex; }
      .nav-main.open {
        display: flex; flex-direction: column;
        position: absolute; top: var(--nav-h); left: 0; right: 0;
        background: var(--maroon); padding: 10px 0; gap: 0;
      }
      .nav-main.open > li > a,
      .nav-main.open > li > span { height: auto; line-height: 1.6; padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
      .nav-dropdown { position: static; opacity: 1; transform: none; box-shadow: none; border-radius: 0; pointer-events: all; display: none; }
      .nav-main.open li.dd-open .nav-dropdown { display: block; background: rgba(0,0,0,.2); }
      .nav-dropdown a { color: rgba(255,255,255,.85); border-bottom-color: rgba(255,255,255,.1); padding-left: 32px; }
      .floating-bar { display: flex; }
      body { padding-bottom: 60px; }
      .wa-bubble { display: none; }
      .topbar { display: none; }
      .hero-facts { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .dest-grid { grid-template-columns: 1fr; }
      .dest-card-wide { grid-column: span 1; }
      .packages-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 560px) {
      section { padding: 60px 5%; }
      .why-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .seasons-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .nav-phone { display: none; }
      .stats-inner { grid-template-columns: 1fr 1fr; }
      .form-row-2 { grid-template-columns: 1fr; }
    }