    /* Make images responsive by default */
    img { max-width: 100%; height: auto; display: block; }
    [hidden] { display: none !important; }
    /* Mobile-only nav items: hidden on desktop, shown in mobile menu via media query */
    .mobile-nav-only { display: none; }
    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ RESET & BASE Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background: #F8F7F3;
      color: #1A1A1A;
      overflow-x: hidden;
      font-size: 15px;
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ CSS VARIABLES Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    :root {
      --gold: #C89B3C;
      --gold-hover: #D4AA52;
      --black: #000000;
      --text: #1A1A1A;
      --ivory: #F8F7F3;
      --warm-white: #FCFCFA;
      --divider: #E5E5E5;
      --muted: rgba(26, 26, 26, 0.75);
      --serif: 'Cormorant Garamond', Georgia, serif;
      --sans: 'DM Sans', sans-serif;
      --section-gap: 120px;
      --container: 1320px;
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ TYPOGRAPHY Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .serif {
      font-family: var(--serif);
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--serif);
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -0.01em;
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ UTILITIES Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 60px;
    }

    .gold {
      color: var(--gold);
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ FADE-IN ANIMATION Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-up:nth-child(2) {
      transition-delay: 0.12s;
    }

    .fade-up:nth-child(3) {
      transition-delay: 0.24s;
    }

    .fade-up:nth-child(4) {
      transition-delay: 0.36s;
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ NAVBAR Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    nav {
      position: fixed;
      background: white;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 8px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
    }

    nav.scrolled {
      background: rgba(248, 247, 243, 0.96);
      backdrop-filter: blur(18px);
      box-shadow: 0 1px 0 var(--divider);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .nav-logo-text {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: rgba(255, 255, 255, 0.92);
      transition: color 0.4s ease;
      line-height: 1;
    }

    .nav-logo-text span {
      color: var(--gold);
    }

    nav.scrolled .nav-logo-text {
      color: var(--black);
    }

    .nav-logo-sub {
      font-family: var(--sans);
      font-size: 8px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.75);
      transition: color 0.4s ease;
      display: block;
      margin-top: 2px;
    }

    nav.scrolled .nav-logo-sub {
      color: var(--muted);
    }

    .nav-links {
      display: flex;
      gap: 42px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: black;
      transition: color 0.3s ease;
    }

    nav.scrolled .nav-links a {
      color: var(--text);
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      padding: 5px 22px;
      background: var(--gold);
      color: #FFFFFF;
      border: 1px solid var(--gold);
      text-decoration: none;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .nav-cta:hover {
      background: var(--gold-hover);
      border-color: var(--gold-hover);
      transform: translateY(-1px);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-b2b, .nav-b2b-reg {
      display: inline-flex;
      align-items: center;
      padding: 5px 20px;
      background: transparent;
      color: var(--gold);
      border: 1px solid var(--gold);
      text-decoration: none;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-sizing: border-box;
    }

    .nav-b2b:hover, .nav-b2b-reg:hover {
      background: var(--gold);
      color: #FFFFFF;
      transform: translateY(-1px);
    }

    .footer-contact-cta {
      background: var(--gold);
      color: #fff;
      padding: 12px 20px;
      text-decoration: none;
      font-weight: 600;
      letter-spacing: 0.06em;
      white-space: nowrap;
    }

    /* â€”â€”â€”â€”â€”â€” HERO â€”â€”â€”â€”â€”â€” */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 720px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('../assets/hero-bg.jpg');
      background-size: cover;
      background-position: center 30%;
      transform: scale(1.04);
      transition: transform 8s ease-out;
    }

    .hero-bg.loaded {
      transform: scale(1);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right,
          rgba(10, 8, 5, 0.78) 0%,
          rgba(10, 8, 5, 0.45) 55%,
          rgba(10, 8, 5, 0.15) 100%);
    }

    .hero-overlay-bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 35%;
      background: linear-gradient(to top, rgba(10, 8, 5, 0.6) 0%, transparent 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 60px 100px;
      max-width: 760px;
    }

    .hero-label {
      display: inline-block;
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeSlideUp 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hero h1 {
      font-size: clamp(50px, 6vw, 82px);
      font-weight: 300;
      color: #FCFCFA;
      margin-bottom: 28px;
      letter-spacing: -0.02em;
      line-height: 1.05;
      opacity: 0;
      animation: fadeSlideUp 1s 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hero h1 em {
      font-style: italic;
      font-weight: 300;
      color: rgba(252, 252, 250, 0.88);
    }

    .hero-sub {
      font-family: var(--sans);
      font-size: 15.5px;
      font-weight: 300;
      color: rgba(252, 252, 250, 0.72);
      max-width: 480px;
      line-height: 1.75;
      margin-bottom: 50px;
      opacity: 0;
      animation: fadeSlideUp 1s 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hero-btns {
      display: flex;
      gap: 18px;
      align-items: center;
      opacity: 0;
      animation: fadeSlideUp 1s 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 38px;
      background: var(--gold);
      color: white;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .btn-primary:hover {
      background: var(--gold-hover);
      transform: translateY(-1px);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      padding: 16px 38px;
      border: 1px solid rgba(252, 252, 250, 0.35);
      color: rgba(252, 252, 250, 0.88);
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: border-color 0.3s ease, color 0.3s ease;
    }

    .btn-ghost:hover {
      border-color: rgba(252, 252, 250, 0.7);
      color: white;
    }

    .hero-footnote {
      position: absolute;
      bottom: 48px;
      right: 60px;
      z-index: 2;
      font-family: var(--sans);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(252, 252, 250, 0.75);
      opacity: 0;
      animation: fadeIn 1.2s 1.5s ease forwards;
    }

    @keyframes fadeSlideUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ SECTION LABELS Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .section-eyebrow {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 18px;
    }

    .section-title {
      font-size: clamp(38px, 4.5vw, 52px);
      font-weight: 400;
      color: var(--black);
      line-height: 1.08;
      margin-bottom: 20px;
    }

    .section-desc {
      font-family: var(--sans);
      font-size: 15px;
      font-weight: 300;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.8;
    }

    .section-divider {
      width: 48px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 30px;
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ DESTINATIONS SECTION Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .destinations {
      padding: var(--section-gap) 0;
      background: var(--ivory);
    }

    .dest-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 72px;
    }

    .dest-header-right {
      font-family: var(--sans);
      font-size: 13px;
      color: var(--muted);
      letter-spacing: 0.05em;
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ JOURNEYS SECTION Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .journeys {
      padding: 5%;
      background: var(--warm-white);
    }

    .journeys-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 80px;
    }

    .journeys-header .section-divider {
      margin: 0 auto 30px;
    }

    .journey-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .journey-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background: #111;
    }

    .journey-card-img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
      transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
      opacity: 0.82;
    }

    .journey-card:hover .journey-card-img {
      transform: scale(1.07);
      opacity: 0.65;
    }

    .journey-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 8, 5, 0.88) 0%, rgba(10, 8, 5, 0.2) 55%, transparent 100%);
    }

    .journey-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 40px 44px;
    }

    .journey-meta {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 16px;
    }

    .journey-tag {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .journey-duration {
      font-family: var(--sans);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(252, 252, 250, 0.75);
    }

    .journey-duration::before {
      content: '';
      display: inline-block;
      width: 18px;
      height: 1px;
      background: rgba(252, 252, 250, 0.3);
      vertical-align: middle;
      margin-right: 12px;
    }

    .journey-name {
      font-size: 30px;
      font-weight: 400;
      color: #FCFCFA;
      line-height: 1.12;
      margin-bottom: 14px;
      transition: transform 0.4s ease;
    }

    .journey-card:hover .journey-name {
      transform: translateY(-3px);
    }

    .journey-desc {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 300;
      color: rgba(252, 252, 250, 0.62);
      line-height: 1.65;
      max-width: 380px;
    }

    .journey-arrow {
      position: absolute;
      top: 36px;
      right: 36px;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(200, 155, 60, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    }

    .journey-card:hover .journey-arrow {
      opacity: 1;
      transform: scale(1);
    }

    .journey-arrow svg {
      stroke: var(--gold);
      fill: none;
      width: 16px;
      height: 16px;
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ ABOUT SECTION (WHY US + PHILOSOPHY) Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .about-section {
      /* padding: var(--section-gap) 0; */
      background: var(--warm-white);
    }

    /* Centered header */
    .about-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 64px;
    }

    .about-header .section-divider {
      margin: 0 auto 30px;
    }

    /* 3?2 feature grid */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--divider);
      border: 1px solid var(--divider);
      margin-bottom: 0;
    }

    .why-item {
      background: var(--ivory);
      padding: 36px 32px;
      transition: background 0.3s ease;
    }

    .why-item:hover {
      background: #F4F3EF;
    }

    .why-icon {
      width: 32px;
      height: 32px;
      margin-bottom: 18px;
    }

    .why-icon svg {
      width: 32px;
      height: 32px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.3;
    }

    .why-item h4 {
      font-size: 17px;
      font-weight: 400;
      color: var(--black);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .why-item p {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.75;
    }

    /* Full-width philosophy quote banner */
    .about-quote-banner {
      text-align: center;
      max-width: 800px;
      margin: 72px auto 0;
      /* padding: 48px 0; */
      border-top: 1px solid var(--divider);
    }

    .about-quote-banner .section-eyebrow {
      margin-bottom: 20px;
    }

    .about-statement {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 300;
      font-style: italic;
      color: var(--text);
      line-height: 1.5;
      margin: 0 0 24px;
      border: none;
      padding: 0;
    }

    .about-body {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.85;
      margin: 0;
    }

    /* 3-column pillar cards */
    .about-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--divider);
      border: 1px solid var(--divider);
      margin-top: 72px;
    }

    .about-pillar {
      background: var(--ivory);
      padding: 40px 32px;
    }

    .about-pillar-icon {
      width: 28px;
      height: 28px;
      margin-bottom: 20px;
    }

    .about-pillar-icon svg {
      width: 28px;
      height: 28px;
    }

    .about-pillar-label {
      display: block;
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .about-pillar-title {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 400;
      color: var(--text);
      line-height: 1.35;
      margin-bottom: 14px;
    }

    .about-pillar-text {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.85;
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ INQUIRY SECTION Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .inquiry {
      padding: var(--section-gap) 0;
      background: var(--black);
      position: relative;
      overflow: hidden;
    }

    .inquiry-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://images.unsplash.com/photo-1565018054866-968e244671af?w=1400&q=75&auto=format');
      background-size: cover;
      background-position: center;
      opacity: 0.12;
      filter: saturate(0.5);
    }

    .inquiry-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: start;
    }

    .inquiry-label {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 24px;
    }

    .inquiry-left h2 {
      font-size: clamp(36px, 4vw, 58px);
      color: var(--warm-white);
      font-weight: 300;
      line-height: 1.08;
      margin-bottom: 30px;
    }

    .inquiry-left p {
      font-family: var(--sans);
      font-size: 15px;
      font-weight: 300;
      color: rgba(252, 252, 250, 0.75);
      line-height: 1.8;
      margin-bottom: 36px;
      max-width: 400px;
    }

    .contact-list {
      display: flex;
      flex-direction: row;
      gap: 32px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .contact-icon {
      width: 48px;
      height: 48px;
      border: 1px solid rgba(200, 155, 60, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--gold);
      fill: none;
    }

    .contact-info {
      font-family: var(--sans);
      font-size: 13px;
      color: rgba(252, 252, 250, 0.65);
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .contact-info a {
      color: rgba(252, 252, 250, 0.65);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-info a:hover {
      color: var(--gold);
    }

    .inquiry-form {
      background: rgba(252, 252, 250, 0.04);
      border: 1px solid rgba(252, 252, 250, 0.09);
      padding: 56px 52px;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 20px;
    }

    .form-row--triple {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .child-age-fields {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 16px;
      width: 100%;
    }

    .child-age-item {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .child-age-item label {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(252, 252, 250, 0.75);
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 20px;
    }

    .form-group label {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(252, 252, 250, 0.85);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(252, 252, 250, 0.4);
      padding: 12px 0;
      color: #FFFFFF;
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 300;
      outline: none;
      transition: border-color 0.3s ease;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      box-sizing: border-box;
    }

    .form-group input,
    .form-group select {
      height: 45px;
    }

    /* When JS expands a select by setting the `size` attribute make the expanded
       list taller (approx. 3x the normal control height) and allow scrolling. */
    .form-group select[size],
    select[size] {
      height: calc(45px * 3) !important;
      min-height: calc(45px * 3) !important;
      overflow-y: auto;
    }

    .form-group select {
      cursor: pointer;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(252, 252, 250, 0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
      background-repeat: no-repeat;
      background-position: right 4px center;
      background-size: 14px;
      padding-right: 24px;
    }

    .form-group select optgroup {
      background: #1a1a1a;
      color: var(--gold);
      font-style: normal;
      font-weight: 500;
      font-size: 11px;
    }

    .form-group select option {
      background: #1a1a1a;
      color: rgba(252, 252, 250, 0.88);
      font-size: 13px;
    }

    .form-group select option:disabled {
      color: rgba(252, 252, 250, 0.75);
    }

    .form-group select:invalid {
      color: rgba(252, 252, 250, 0.75);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(252, 252, 250, 0.6);
    }

    .form-group input[type="date"]::-webkit-calendar-picker-indicator {
      filter: invert(0.8) sepia(100%) saturate(800%) hue-rotate(15deg) brightness(0.9);
      cursor: pointer;
      opacity: 0.6;
      transition: opacity 0.3s ease;
    }

    .form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
      opacity: 1;
    }

    .date-range-group {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
    }

    .date-range-group input {
      flex: 1;
    }

    .date-range-group span {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(252, 252, 250, 0.75);
      flex-shrink: 0;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-bottom-color: var(--gold);
    }

    .form-group textarea {
      resize: none;
      min-height: 90px;
    }

    .form-actions {
      display: flex;
      gap: 14px;
      margin-top: 8px;
    }

    .btn-form-submit {
      flex: 1;
      padding: 16px 28px;
      background: var(--gold);
      color: white;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .btn-form-submit:hover {
      background: var(--gold-hover);
    }

    .btn-whatsapp {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 16px 24px;
      border: 1px solid rgba(200, 155, 60, 0.35);
      color: var(--gold);
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      background: transparent;
      transition: background 0.3s ease, color 0.3s ease;
      white-space: nowrap;
    }

    .btn-whatsapp:hover {
      background: rgba(200, 155, 60, 0.1);
    }

    .btn-whatsapp svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
    }

    @media (max-width: 768px) {
      .form-row,
      .form-row--triple {
        grid-template-columns: 1fr;
      }

      .child-age-fields {
        grid-template-columns: 1fr;
      }
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€ PREMIUM MULTI-COLUMN FOOTER Ã¢â‚¬â€Ã¢â‚¬â€ */
    footer, .footer {
      background: #0d0d0b;
      padding: 64px 0 40px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      color: rgba(252, 252, 250, 0.75);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      max-width: var(--container);
      margin: 0 auto 48px auto;
    }

    .footer-col h5 {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      margin-top: 0;
    }

    .footer-logo-box {
      background: #ffffff;
      padding: 6px 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      margin-bottom: 16px;
    }

    .footer-brand-desc {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(252, 252, 250, 0.75);
      max-width: 360px;
      margin: 0;
    }

    .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

    .footer-social-link {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid rgba(252, 252, 250, 0.15);
      background: rgba(252, 252, 250, 0.02);
      color: rgba(252, 252, 250, 0.75);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
    }

    .footer-social-link:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: #1a1a1a;
      box-shadow: 0 4px 12px rgba(200, 155, 60, 0.3);
    }

    .footer-social-link svg {
      width: 18px;
      height: 18px;
      transition: stroke-width 0.3s ease;
    }

    .footer-social-link:hover svg {
      stroke-width: 2.2;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 400;
      color: rgba(252, 252, 250, 0.65) !important;
      text-decoration: none;
      transition: color 0.25s ease;
    }

    .footer-links a:hover {
      color: var(--gold) !important;
    }

    .footer-contact-desc {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(252, 252, 250, 0.75);
      margin: 0;
    }

    .footer-address {
      margin-top: 24px;
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 300;
      line-height: 1.6;
      color: rgba(252, 252, 250, 0.75);
    }

    .footer-address strong {
      display: block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    /* Tablet layout */
    @media (max-width: 960px) {
      .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 36px;
      }
    }

    /* Mobile layout */
    @media (max-width: 768px) {
      footer, .footer {
        padding: 48px 24px 36px 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
      }

      .footer-brand-desc,
      .footer-contact-desc {
        max-width: 100%;
      }
    }

    .footer-inner {
      max-width: var(--container);
      margin: 0 auto;
      margin-bottom: 48px;
    }

    .footer-contact-label {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(252, 252, 250, 0.75);
      margin-bottom: 32px;
      display: block;
    }

    .footer-contact-row {
      display: flex;
      align-items: stretch;
      gap: 0;
    }

    .footer-contact-item {
      flex: 1;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 24px 28px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      margin-right: -1px;
      text-decoration: none;
      transition: background 0.35s ease, border-color 0.35s ease;
      cursor: pointer;
      min-height: 120px;
    }

    .footer-contact-item:hover {
      background: rgba(200, 155, 60, 0.06);
      border-color: rgba(200, 155, 60, 0.18);
      z-index: 1;
    }

    .footer-contact-item-icon {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(200, 155, 60, 0.28);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.35s ease, border-color 0.35s ease;
    }

    .footer-contact-item:hover .footer-contact-item-icon {
      background: rgba(200, 155, 60, 0.1);
      border-color: rgba(200, 155, 60, 0.4);
    }

    .footer-contact-item-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
    }

    .footer-contact-item-icon svg.fill-icon {
      fill: var(--gold);
      stroke: none;
    }

    .footer-contact-item-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .footer-contact-item-label {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(252, 252, 250, 0.75);
    }

    

    .footer-contact-item-value {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 8px 16px;
      margin-top: 4px;
    }

    .footer-contact-item-value a,
    .footer-contact-item-value span {
      color: rgba(252, 252, 250, 0.72);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-contact-item-value a:hover,
    .footer-contact-item-value span:hover {
      color: var(--gold);
    }

    .footer-contact-item:hover .footer-contact-item-value a,
    .footer-contact-item:hover .footer-contact-item-value span {
      color: var(--gold);
    }

    /* Send Inquiry CTA item */
    .footer-contact-item--cta {
      background: var(--gold);
      border-color: var(--gold);
      gap: 12px;
      transition: background 0.35s ease;
    }

    .footer-contact-item--cta:hover {
      background: var(--gold-hover);
      border-color: var(--gold-hover);
    }

    .footer-contact-item--cta .footer-contact-item-icon {
      border-color: rgba(255, 255, 255, 0.75);
    }

    .footer-contact-item--cta:hover .footer-contact-item-icon {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.75);
    }

    .footer-contact-item--cta .footer-contact-item-icon svg {
      stroke: white;
    }

    .footer-contact-item--cta .footer-contact-item-label {
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-contact-item--cta .footer-contact-item-value {
      color: white;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 12px;
    }

    .footer-contact-item--cta:hover .footer-contact-item-value {
      color: white;
    }

    .footer-bottom {
      max-width: var(--container);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-copy {
      font-family: var(--sans);
      font-size: 12px;
      color: rgba(252, 252, 250, 0.75);
      letter-spacing: 0.03em;
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ PARTNERS LOGO STRIP Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .partners-strip {
      background: var(--black);
      display: flex;
      align-items: center;
      overflow: hidden;
      border-bottom: 1px solid rgba(200, 155, 60, 0.12);
    }

    .partners-label {
      width: 20%;
      min-width: 180px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px 20px;
      border-right: 1px solid rgba(200, 155, 60, 0.15);
      gap: 4px;
    }

    .partners-label-eyebrow {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(252, 252, 250, 0.7);
    }

    .partners-label-title {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 400;
      color: var(--gold);
      letter-spacing: 0.01em;
    }

    .partners-marquee {
      flex: 1;
      overflow: hidden;
      position: relative;
      padding: 18px 0;
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    }

    .partners-track {
      display: flex;
      align-items: center;
      gap: 48px;
      white-space: nowrap;
      width: max-content;
      will-change: transform;
    }

    .partner-logo {
      height: 48px !important;
      width: auto;
      min-width: 60px;
      max-width: 300px;
      display: inline-block;
      object-fit: contain;
      flex-shrink: 0;
      /* Golden tint matching --gold: #C89B3C */
      filter: brightness(0) saturate(100%) invert(63%) sepia(56%) saturate(500%) hue-rotate(10deg) brightness(105%) contrast(88%);
      opacity: 0.8;
      transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
    }

    .partner-logo:hover {
      opacity: 1;
      filter: brightness(0) saturate(100%) invert(63%) sepia(56%) saturate(500%) hue-rotate(10deg) brightness(100%) contrast(88%);
      transform: scale(1.12);
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
      .partners-strip {
        flex-direction: column;
      }

      .partners-label {
        width: 100%;
        min-width: unset;
        flex-direction: row;
        gap: 8px;
        padding: 14px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(200, 155, 60, 0.12);
      }

      .partners-label-title {
        font-size: 18px;
      }

      .partner-logo {
        height: 38px;
        min-width: 50px;
        max-width: 110px;
      }

      .partners-track {
        gap: 36px;
      }
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ REGION TABS Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .region-tabs {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 72px;
      border-bottom: 1px solid #E5E5E5;
      padding-bottom: 0;
    }

    .region-tab {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 0 0 28px 0;
      margin-right: 60px;
      background: none;
      border: none;
      cursor: pointer;
      position: relative;
      text-align: left;
    }

    .region-tab::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 0;
      height: 2px;
      background: #C89B3C;
      transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .region-tab.active::after {
      width: 100%;
    }

    .tab-label {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 26px;
      font-weight: 400;
      color: rgba(26, 26, 26, 0.75);
      transition: color 0.3s ease;
      letter-spacing: -0.01em;
    }

    .region-tab.active .tab-label {
      color: #1A1A1A;
    }

    .tab-sub {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(26, 26, 26, 0.75);
      transition: color 0.3s ease;
    }

    .region-tab.active .tab-sub {
      color: #C89B3C;
    }

    .region-tab-divider {
      width: 1px;
      height: 36px;
      background: #E5E5E5;
      margin-right: 60px;
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ REGION PANELS Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .region-panel {
      display: none;
    }

    .region-panel.active {
      display: block;
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ STATE GRID (DOMESTIC) Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .state-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 20px;
    }

    .state-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 3/4;
      background: #FFFFFF;
      text-decoration: none;
      display: block;
    }

    .state-card--wide {
      grid-column: span 2;
      aspect-ratio: 3/2;
    }

    .state-card--full {
      grid-column: span 3;
      aspect-ratio: 21/9;
    }

    .state-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
      transform-origin: center;
    }

    .state-card:hover .state-card-img {
      transform: scale(1.06);
    }

    .state-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 100%);
    }

    .state-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 32px;
    }

    .state-region-badge {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #C89B3C;
      margin-bottom: 10px;
    }

    .state-name {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 32px;
      font-weight: 400;
      color: #FCFCFA;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .state-tagline {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 300;
      color: rgba(252, 252, 250, 0.6);
      letter-spacing: 0.05em;
      margin-bottom: 14px;
    }

    .state-dest-count {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(252, 252, 250, 0.75);
      border-top: 1px solid rgba(252, 252, 250, 0.15);
      padding-top: 10px;
    }

    .state-arrow {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(252, 252, 250, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.3s, background 0.3s;
    }

    .state-arrow svg {
      width: 16px;
      height: 16px;
      stroke: rgba(252, 252, 250, 0.6);
      fill: none;
      transition: stroke 0.3s;
    }

    .state-card:hover .state-arrow {
      background: #C89B3C;
      border-color: #C89B3C;
    }

    .state-card:hover .state-arrow svg {
      stroke: #fff;
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ INTERNATIONAL GRID Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .intl-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .intl-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 3/4;
      background: #FFFFFF;
    }

    .intl-card--wide {
      grid-column: span 2;
      aspect-ratio: 21/9;
      grid-row: span 1;
    }

    .intl-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .intl-card:hover .intl-card-img {
      transform: scale(1.06);
    }

    .intl-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
    }

    .intl-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 32px;
    }

    .intl-region-badge {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #C89B3C;
      margin-bottom: 10px;
    }

    .intl-name {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 32px;
      font-weight: 400;
      color: #FCFCFA;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .intl-tagline {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 300;
      color: rgba(252, 252, 250, 0.6);
      margin-bottom: 14px;
    }

    .intl-journey-count {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(252, 252, 250, 0.75);
      border-top: 1px solid rgba(252, 252, 250, 0.15);
      padding-top: 10px;
    }

    .intl-arrow {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(252, 252, 250, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.3s, background 0.3s;
    }

    .intl-arrow svg {
      width: 16px;
      height: 16px;
      stroke: rgba(252, 252, 250, 0.6);
      fill: none;
    }

    .intl-card:hover .intl-arrow {
      background: #C89B3C;
      border-color: #C89B3C;
    }

    .intl-card:hover .intl-arrow svg {
      stroke: #fff;
    }


    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ DETAIL OVERLAY Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .detail-overlay {
      position: fixed;
      inset: 0;
      z-index: 11000;
      display: flex;
      align-items: stretch;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.5s ease;
    }

    .detail-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .detail-overlay-bg {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(6px);
    }

    .detail-panel {
      position: relative;
      width: 100%;
      max-width: 960px;
      margin: 0 auto;
      background: #F8F7F3;
      overflow-y: auto;
      height: 100vh;
      max-height: 100vh;
      transform: translateY(40px);
      transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 1;
    }

    #detail-places-block {
      display: none;
    }

    .detail-overlay.open .detail-panel {
      transform: translateY(0);
    }

    .detail-close {
      position: absolute;
      top: 20px;
      right: 24px;
      z-index: 10;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(252, 252, 250, 0.2);
      background: rgba(13, 13, 11, 0.5);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
    }

    .detail-close:hover {
      background: #C89B3C;
      border-color: #C89B3C;
    }

    .detail-close:hover svg {
      stroke: #0d0d0b;
    }

    .detail-close:focus {
      outline: none;
    }

    .detail-close:focus-visible {
      outline: 2px solid #C89B3C;
      outline-offset: 2px;
    }

    .detail-close svg {
      width: 18px;
      height: 18px;
      stroke: #FCFCFA;
      transition: stroke 0.25s ease;
    }

    /* Hero */
    .detail-hero {
      position: relative;
      height: 420px;
      overflow: hidden;
      background: #FFFFFF;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }

    .detail-hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .detail-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    }

    .detail-hero-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 48px 60px;
    }

    .detail-region-badge {
      display: inline-block;
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #C89B3C;
      margin-bottom: 12px;
    }

    .detail-title {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 52px;
      font-weight: 300;
      color: #FCFCFA;
      line-height: 1.0;
      margin-bottom: 10px;
    }

    .detail-subtitle {
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 300;
      color: rgba(252, 252, 250, 0.65);
      letter-spacing: 0.06em;
    }

    /* Body */
    .detail-body {
      padding: 72px 60px;
      display: flex;
      flex-direction: column;
      gap: 72px;
    }

    .detail-section-label {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #C89B3C;
      margin-bottom: 16px;
    }

    .detail-divider-line {
      width: 40px;
      height: 1px;
      background: #C89B3C;
      margin-bottom: 28px;
      opacity: 0.5;
    }

    .detail-description {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 300;
      color: #1A1A1A;
      line-height: 1.95;
      max-width: 100%;
    }

    /* Places grid */
    .detail-places-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .detail-place-pill {
      padding: 8px 18px;
      border: 1px solid #E5E5E5;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 400;
      color: #1A1A1A;
      background: white;
      letter-spacing: 0.04em;
      transition: border-color 0.25s, color 0.25s;
      cursor: default;
    }

    .detail-place-pill:hover {
      border-color: #C89B3C;
      color: #C89B3C;
    }

    /* Itinerary cards */
    .detail-itinerary-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .detail-itin-card {
      background: white;
      border: 1px solid #E5E5E5;
      overflow: hidden;
    }

    .detail-itin-card-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .detail-itin-card-body {
      padding: 24px;
    }

    .detail-itin-meta {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .detail-itin-tag {
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #C89B3C;
    }

    .detail-itin-duration {
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      letter-spacing: 0.1em;
      color: rgba(26, 26, 26, 0.75);
    }

    .detail-itin-name {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 22px;
      font-weight: 400;
      color: #1A1A1A;
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .detail-itin-desc {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 300;
      color: rgba(26, 26, 26, 0.75);
      line-height: 1.75;
    }

    /* CTA strip */
    .detail-cta-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 40px 48px;
      background: #000000;
      margin: 0 -60px -72px;
    }

    .detail-cta-text {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 24px;
      font-weight: 300;
      color: rgba(252, 252, 250, 0.8);
    }

    .detail-cta-btn {
      padding: 14px 32px;
      background: #C89B3C;
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.3s;
      white-space: nowrap;
    }

    .detail-cta-btn:hover {
      background: #D4AA52;
    }


    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ HAMBURGER MENU ICON Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
      z-index: 1001;
    }

    .nav-hamburger:focus {
      outline: none;
    }

    .nav-hamburger:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    }

    nav.scrolled .nav-hamburger span {
      background: var(--text);
    }

    .nav-hamburger.open span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
      background: white;
    }

    .nav-hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
      background: white;
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ RESPONSIVE: TABLET (max 960px) Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    @media (max-width: 960px) {
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-pillars {
        grid-template-columns: 1fr;
      }

      .about-statement {
        font-size: 24px;
      }

      .inquiry-inner {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ RESPONSIVE: MOBILE (max 768px) Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    @media (max-width: 768px) {
      :root {
        --section-gap: 72px;
      }

      .container {
        padding: 0 24px;
      }

      .section-title {
        font-size: clamp(26px, 8vw, 36px);
      }

      /* Navbar */
      nav {
        padding: 16px 24px;
      }

      .nav-hamburger {
        display: flex;
        z-index: 10001;
      }

      .nav-links {
        position: fixed;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        background: #000000;
        backdrop-filter: none;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease, transform 0.35s ease;
        z-index: 10000;
        padding-top: 80px;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
      }

      .nav-links.open {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
      }

      .nav-links a {
        font-size: 18px;
        color: white !important;
        letter-spacing: 0.12em;
      }

      /* Larger tap targets on mobile */
      .nav-links a { padding: 12px 18px; }

      .nav-actions {
        display: none;
      }

      /* Ã¢â€â‚¬Ã¢â€â‚¬ Mobile-only nav items Ã¢â€â‚¬Ã¢â€â‚¬ */
      .mobile-nav-only {
        display: list-item !important;
      }

      .mobile-divider {
        width: 40px;
        height: 1px;
        background: rgba(255,255,255,0.2);
        margin: 4px auto;
        list-style: none;
        padding: 0;
      }

      .mobile-nav-cta {
        display: inline-block;
        padding: 12px 32px !important;
        background: #C89B3C;
        color: #fff !important;
        font-family: 'DM Sans', sans-serif;
        font-size: 12px !important;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        border-radius: 2px;
        text-align: center;
      }

      .mobile-nav-b2b {
        font-size: 18px;
        color: white !important;
        letter-spacing: 0.12em;
        display: flex;
        align-items: center;
        gap: 6px;
      }

      /* Ã¢â€â‚¬Ã¢â€â‚¬ Mobile accordion: Destinations & B2B sub-menus Ã¢â€â‚¬Ã¢â€â‚¬ */
      @media (max-width: 768px) {
        .mobile-accordion .mobile-submenu,
        .mobile-accordion .dropdown-menu {
          display: none;
          flex-direction: column;
          gap: 0;
          background: rgba(255,255,255,0.06);
          border-radius: 4px;
          padding: 6px 0;
          margin-top: 6px;
          width: 100%;
          list-style: none;
        }

        .mobile-accordion.open .mobile-submenu,
        .mobile-accordion.open .dropdown-menu {
          display: flex;
        }

        .mobile-accordion .mobile-submenu a,
        .mobile-accordion .dropdown-menu a {
          font-size: 14px !important;
          letter-spacing: 0.08em;
          color: rgba(255,255,255,0.75) !important;
          padding: 10px 20px !important;
          display: block;
        }

        .mobile-accordion-toggle .dropdown-caret {
          display: inline-block;
          transition: transform 0.25s ease;
          font-size: 10px;
        }

        .mobile-accordion.open .mobile-accordion-toggle .dropdown-caret {
          transform: rotate(180deg);
        }

        /* Keep nav-links scrollable if content overflows */
        .nav-links {
          overflow-y: auto !important;
          justify-content: flex-start !important;
          padding-top: 90px !important;
          padding-bottom: 32px !important;
          gap: 16px !important;
        }

        .nav-links > li {
          width: 100%;
          text-align: center;
          list-style: none;
        }

        .nav-links > li > a {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 6px;
        }
      }


      /* Hero */
      .hero {
        min-height: 600px;
      }

      .hero-content {
        padding: 0 24px 60px;
        max-width: 100%;
      }

      .hero-sub {
        font-size: 14px;
        margin-bottom: 36px;
      }

      .hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }

      .btn-primary,
      .btn-ghost {
        padding: 14px 28px;
        font-size: 11px;
        width: 100%;
        justify-content: center;
      }

      .hero-footnote {
        display: none;
      }

      /* Dest header */
      .dest-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 48px;
      }

      .dest-header-right {
        display: none;
      }

      /* Region tabs */
      .region-tabs {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        border-bottom: none;
        margin-bottom: 48px;
      }

      .region-tab-divider {
        width: 40px;
        height: 1px;
        margin: 0;
      }

      .region-tab {
        margin-right: 0;
      }

      /* State & intl grids */
      .state-grid,
      .intl-grid {
        grid-template-columns: 1fr;
      }

      .state-card {
        aspect-ratio: 4/3;
      }

      .state-card--wide,
      .state-card--full,
      .intl-card--wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
      }

      .intl-card {
        aspect-ratio: 4/3;
      }

      /* Journeys */
      .journey-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .journey-card-img {
        height: 340px;
      }

      .journey-content {
        padding: 28px;
      }

      .journey-name {
        font-size: 24px;
      }

      .journeys-header {
        margin-bottom: 48px;
      }

      /* About section */
      .why-grid {
        grid-template-columns: 1fr;
      }

      .why-item {
        padding: 28px 24px;
      }

      .about-pillars {
        grid-template-columns: 1fr;
      }

      .about-pillar {
        padding: 32px 24px;
      }

      .about-quote-banner {
        margin-top: 48px;
        padding: 36px 0;
      }

      .about-statement {
        font-size: 22px;
      }

      /* Inquiry */
      .inquiry-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .inquiry-form {
        padding: 36px 24px;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .form-actions {
        flex-direction: column;
      }

      .btn-whatsapp {
        justify-content: center;
      }

      /* Footer */
      footer {
        padding: 48px 24px 36px;
      }

      .footer-inner {
        margin-bottom: 32px;
      }

      .footer-contact-row {
        flex-direction: column;
        gap: 0;
      }

      .footer-contact-item {
        margin-right: 0;
        margin-bottom: -1px;
        padding: 18px 20px;
      }

      .footer-contact-item-icon {
        width: 34px;
        height: 34px;
      }

      .footer-contact-item-icon svg {
        width: 14px;
        height: 14px;
      }

      .contact-list {
        flex-direction: column;
        gap: 20px;
      }

      .contact-info {
        flex-direction: column;
        gap: 6px;
      }

      .footer-contact-item-value {
        font-size: 13px;
        flex-direction: column;
        gap: 5px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }

      /* Detail overlay */
      .detail-panel {
        max-width: 100%;
      }

      .detail-hero {
        height: 300px;
      }

      .detail-hero-content {
        padding: 28px 24px;
      }

      .detail-title {
        font-size: 32px;
      }

      .detail-body {
        padding: 40px 24px;
        gap: 40px;
      }

      .detail-itinerary-cards {
        grid-template-columns: 1fr;
      }

      .detail-cta-strip {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin: 0 -24px -40px;
        padding: 32px 24px;
      }

      /* Make image blocks respect aspect ratio and remain responsive */
      .state-card-img,
      .intl-card-img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
        background-color: #FFFFFF;
      }

      /* Itinerary card image: keep fixed height on mobile so text details are fully visible */
      .detail-itin-card-img {
        width: 100%;
        height: 180px;
        display: block;
        object-fit: cover;
        object-position: center center;
        background-color: #FFFFFF;
      }

      /* Ensure hero image always fills the hero container on mobile */
      .detail-hero-img {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center center;
        display: block;
        background-color: #FFFFFF;
      }
    }

    /* Itinerary Modal Overlay Styles */
    .itin-modal {
      position: fixed;
      inset: 0;
      z-index: 12000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .itin-modal.open {
      opacity: 1;
      pointer-events: all;
    }

    .itin-modal-bg {
      position: absolute;
      inset: 0;
      background: rgba(10, 8, 5, 0.88);
      backdrop-filter: blur(8px);
    }

    .itin-modal-container {
      position: relative;
      width: 92%;
      max-width: 1200px;
      height: 85vh;
      background: #0d0d0b;
      border: 1px solid rgba(200, 155, 60, 0.3);
      border-radius: 4px;
      overflow: hidden;
      transform: scale(0.95);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 1;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
    }

    .itin-modal.open .itin-modal-container {
      transform: scale(1);
    }

    .b2b-agent-modal {
      position: fixed;
      inset: 0;
      z-index: 12500;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .b2b-agent-modal.open {
      opacity: 1;
      pointer-events: all;
    }

    .b2b-agent-modal-bg {
      position: absolute;
      inset: 0;
      background: rgba(25, 23, 18, 0.72);
      backdrop-filter: blur(8px);
    }

    .b2b-agent-modal-container {
      position: relative;
      width: min(640px, 94%);
      max-height: 92vh;
      overflow-y: auto;
      background: rgba(12, 12, 12, 0.95);
      border: 1px solid rgba(200, 155, 60, 0.3);
      border-radius: 4px;
      padding: 32px 30px;
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
      color: #f6f2e8;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .b2b-agent-modal-close {
      position: absolute;
      top: 18px;
      right: 22px;
      z-index: 10;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
    }

    .b2b-agent-modal-close:hover {
      background: rgba(255, 255, 255, 0.18);
      border-color: rgba(255, 255, 255, 0.75);
    }

    .b2b-agent-modal-close:hover svg {
      stroke: #0d0d0b;
    }

    .b2b-agent-modal-close:focus {
      outline: none;
    }

    .b2b-agent-modal-close:focus-visible {
      outline: 2px solid #C89B3C;
      outline-offset: 2px;
    }

    .b2b-agent-modal-close svg {
      width: 18px;
      height: 18px;
      stroke: #FCFCFA;
    }

    .b2b-agent-title {
      font-family: var(--serif);
      font-size: clamp(24px, 3.5vw, 32px);
      font-weight: 400;
      color: #FCFCFA;
      margin-bottom: 8px;
      line-height: 1.1;
    }

    .b2b-agent-title em {
      font-style: italic;
      color: var(--gold);
    }

    .b2b-agent-copy {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 300;
      color: rgba(252, 252, 250, 0.65);
      margin-bottom: 20px;
      max-width: 500px;
      line-height: 1.5;
    }

    .b2b-agent-form {
      display: grid;
      gap: 14px;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .b2b-agent-form .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .b2b-agent-form .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 12px;
    }

    .b2b-agent-form .form-group label {
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(252, 252, 250, 0.85);
      margin-bottom: 4px;
      transition: color 0.3s ease;
    }

    .b2b-agent-form .form-group:focus-within label {
      color: var(--gold);
    }

    .b2b-agent-form input,
    .b2b-agent-form select,
    .b2b-agent-form textarea {
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(252, 252, 250, 0.4);
      padding: 8px 0;
      color: #FFFFFF;
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 300;
      outline: none;
      transition: border-color 0.3s ease;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      box-sizing: border-box;
    }

    .b2b-agent-form select {
      width: 100%;
      height: 38px;
    }

    .b2b-agent-form .select-wrapper {
      position: relative;
      width: 100%;
      height: 38px;
    }

    .b2b-agent-form select[size] {
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      background: #111111 !important;
      border: 1px solid var(--gold) !important;
      border-radius: 4px !important;
      padding: 4px !important;
      z-index: 9999 !important;
      height: auto !important;
      overflow-y: auto !important;
      box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
    }
    
    .b2b-agent-form select[size] option {
      padding: 8px 12px !important;
      background: #111111 !important;
      color: #ffffff !important;
      border-bottom: none !important;
    }
    
    .b2b-agent-form select[size] option:hover,
    .b2b-agent-form select[size] option:focus {
      background: var(--gold) !important;
      color: #000000 !important;
    }

    .b2b-agent-form input:focus,
    .b2b-agent-form select:focus,
    .b2b-agent-form textarea:focus {
      border-color: var(--gold);
      box-shadow: none;
      outline: none;
      background-color: transparent;
    }

    .b2b-agent-form textarea {
      min-height: 70px;
      resize: none;
    }

    .b2b-agent-form input::placeholder,
    .b2b-agent-form textarea::placeholder {
      color: rgba(252, 252, 250, 0.6);
    }

    .b2b-agent-status {
      font-family: var(--sans);
      font-size: 13px;
      min-height: 1.2em;
      margin-top: 8px;
      opacity: 0.95;
      transition: color 0.3s ease;
    }

    .b2b-agent-modal .form-actions {
      margin-top: 6px;
    }

    .b2b-agent-modal .btn-form-submit {
      width: 100%;
      padding: 14px 28px;
      background: var(--gold);
      color: white;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.3s ease;
    }

    .b2b-agent-modal .btn-form-submit:hover,
    .b2b-agent-modal .btn-form-submit:focus {
      background: var(--gold-hover);
      transform: translateY(-1px);
      outline: none;
    }

    .b2b-agent-modal .btn-arrow {
      display: inline-block;
      transition: transform 0.3s ease;
      margin-left: 6px;
    }

    .b2b-agent-modal .btn-form-submit:hover .btn-arrow {
      transform: translateX(4px);
    }

    @media (max-width: 768px) {
      .b2b-agent-modal-container {
        padding: 30px 24px;
      }
      .b2b-agent-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
      }
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ TOAST NOTIFICATIONS Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€Ã¢â‚¬â€ */
    .toast-container {
      position: fixed;
      top: 32px;
      right: 32px;
      z-index: 150000;
      display: flex;
      flex-direction: column;
      gap: 12px;
      pointer-events: none;
    }

    .toast {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 24px;
      background: rgba(12, 12, 12, 0.95);
      border: 1px solid rgba(200, 155, 60, 0.3);
      color: #FCFCFA;
      font-family: var(--sans);
      font-size: 13.5px;
      font-weight: 400;
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
      pointer-events: auto;
      opacity: 0;
      transform: translateY(-20px);
      transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      min-width: 280px;
      max-width: 420px;
    }

    .toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    .toast-success {
      border-color: rgba(40, 167, 69, 0.4);
    }

    .toast-success .toast-icon {
      color: #28a745;
    }

    .toast-error {
      border-color: rgba(220, 53, 69, 0.4);
    }

    .toast-error .toast-icon {
      color: #dc3545;
    }

    .toast-info {
      border-color: rgba(200, 155, 60, 0.4);
    }

    .toast-info .toast-icon {
      color: var(--gold);
    }

    .toast-icon {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .toast-message {
      line-height: 1.4;
    }

    @media (max-width: 480px) {
      .toast-container {
        left: 20px;
        right: 20px;
        top: 20px;
        bottom: auto;
      }
      .toast {
        min-width: 0;
        width: 100%;
      }
    }

    .itin-modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 48px;
      background: #0d0d0b;
      border-bottom: 1px solid rgba(200, 155, 60, 0.2);
      padding: 0 16px;
      position: relative;
      z-index: 10;
    }

    .itin-modal-title {
      color: #FCFCFA;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .itin-modal-close {
      position: relative;
      width: 36px;
      height: 36px;
      border: none;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: rgba(252, 252, 250, 0.6);
      transition: background 0.2s ease, color 0.2s ease;
    }

    .itin-modal-close:hover {
      background: rgba(255, 255, 255, 0.08);
      color: #C89B3C;
    }

    .itin-modal-close:focus {
      outline: none;
    }

    .itin-modal-close:focus-visible {
      outline: 2px solid #C89B3C;
      outline-offset: 2px;
    }

    .itin-modal-close svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
    }

    .itin-modal-iframe {
      width: 100%;
      height: calc(100% - 48px);
      border: none;
      background: white;
    }

    .itin-modal-loader {
      position: absolute;
      top: 48px;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #0d0d0b;
      z-index: 2;
      transition: opacity 0.3s ease;
    }

    .itin-modal-spinner {
      width: 48px;
      height: 48px;
      border: 3px solid rgba(200, 155, 60, 0.15);
      border-top-color: #C89B3C;
      border-radius: 50%;
      animation: itinSpin 1s linear infinite;
    }

    @keyframes itinSpin {
      to { transform: rotate(360deg); }
    }

    /* Make itinerary cards look clickable and have premium hover effects */
    .detail-itin-card[data-itinerary] {
      cursor: pointer;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
    }

    .detail-itin-card[data-itinerary]:hover {
      transform: translateY(-4px);
      border-color: rgba(200, 155, 60, 0.5);
      box-shadow: 0 12px 24px rgba(200, 155, 60, 0.1);
    }

    /* Align WhatsApp span color on container hover */
    .footer-contact-item:hover .footer-contact-item-value span {
      color: var(--gold);
    }

    @media (max-width: 768px) {
      .detail-close {
        top: 12px;
        right: 16px;
        width: 36px;
        height: 36px;
      }
    }

    /* Ã¢ÂÂ Ã¢â‚¬â€Ã¢ÂÂ Ã¢â‚¬â€ NAV DESTINATIONS DROPDOWN Ã¢ÂÂ Ã¢â‚¬â€Ã¢ÂÂ Ã¢â‚¬â€Ã¢ÂÂ Ã¢â‚¬â€Ã¢ÂÂ Ã¢â‚¬â€Ã¢ÂÂ Ã¢â‚¬â€Ã¢ÂÂ Ã¢â‚¬â€Ã¢ÂÂ Ã¢â‚¬â€ */
    .nav-dropdown {
      position: relative;
    }

    .dropdown-toggle {
      display: inline-flex;
      align-items: center;
      cursor: pointer;
    }

    .dropdown-caret {
      font-size: 8px;
      margin-left: 6px;
      transition: transform 0.25s ease;
      display: inline-block;
      line-height: 1;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: #FFFFFF;
      border: 1px solid var(--divider);
      list-style: none;
      padding: 8px 0;
      margin: 0;
      min-width: 180px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      z-index: 1000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-dropdown.open .dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .nav-dropdown.open .dropdown-caret {
      transform: rotate(180deg);
    }

    .dropdown-item {
      display: block;
      padding: 10px 24px;
      color: var(--text) !important;
      text-decoration: none;
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background 0.2s ease, color 0.2s ease;
      white-space: nowrap;
      text-align: left;
    }

    .dropdown-item:hover {
      background: rgba(200, 155, 60, 0.08);
      color: var(--gold) !important;
    }

    /* Mobile Accordion Style Dropdown */
    @media (max-width: 768px) {
      .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        pointer-events: auto;
        display: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 8px 0 0 0;
        text-align: center;
        min-width: unset;
        width: 100%;
      }

      .nav-dropdown.open .dropdown-menu {
        display: block;
      }

      .dropdown-item {
        color: rgba(255, 255, 255, 0.75) !important;
        padding: 12px 18px;
        font-size: 16px;
        text-align: center;
      }

      .dropdown-item:hover {
        background: transparent;
        color: var(--gold) !important;
      }
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€ FLOATING WHATSAPP BUTTON Ã¢â‚¬â€Ã¢â‚¬â€ */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: #25D366;
      color: #FFF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
      z-index: 9999;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, box-shadow 0.3s;
    }

    .whatsapp-float svg {
      width: 26px;
      height: 26px;
      fill: #FFF;
    }

    .whatsapp-float:hover {
      background-color: #128C7E;
      transform: scale(1.08);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    }

    /* Pulse wave effect behind WhatsApp button */
    .whatsapp-float::before {
      content: '';
      position: absolute;
      inset: 0;
      background-color: #25D366;
      border-radius: 50%;
      z-index: -1;
      opacity: 0.65;
      animation: whatsapp-pulse 2s infinite ease-out;
    }

    @keyframes whatsapp-pulse {
      0% {
        transform: scale(1);
        opacity: 0.65;
      }
      100% {
        transform: scale(1.55);
        opacity: 0;
      }
    }

    /* Tooltip styling on hover */
    .whatsapp-float .tooltip-text {
      visibility: hidden;
      width: 110px;
      background-color: #0d0d0b;
      color: #FCFCFA;
      text-align: center;
      border-radius: 4px;
      padding: 6px 10px;
      position: absolute;
      z-index: 1;
      right: 125%;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 0.25s, transform 0.25s;
      transform: translateX(5px);
      pointer-events: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(200, 155, 60, 0.25);
    }

    .whatsapp-float .tooltip-text::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 100%;
      margin-top: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: transparent transparent transparent #0d0d0b;
    }

    .whatsapp-float:hover .tooltip-text {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }

    /* Mobile responsive overrides */
    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
      }

      .whatsapp-float svg {
        width: 22px;
        height: 22px;
      }

      .whatsapp-float .tooltip-text {
        display: none; /* Hide tooltip on mobile to save space */
      }
    }

    /* Ã¢â‚¬â€Ã¢â‚¬â€ FLOATING COMPANY PROFILE BUTTON Ã¢â‚¬â€Ã¢â‚¬â€ */
    .profile-float {
      position: fixed;
      bottom: 105px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: #ffffff;
      border: 1px solid rgba(200, 155, 60, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
      z-index: 9999;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, box-shadow 0.3s;
      padding: 10px;
      box-sizing: border-box;
    }

    .profile-float img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .profile-float:hover {
      background-color: #fcfcfc;
      transform: scale(1.08);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
      border-color: var(--gold, #c89b3c);
    }

    /* Pulse wave effect behind Company Profile button */
    .profile-float::before {
      content: '';
      position: absolute;
      inset: 0;
      background-color: var(--gold, #c89b3c);
      border-radius: 50%;
      z-index: -1;
      opacity: 0.4;
      animation: profile-pulse 2s infinite ease-out;
    }

    @keyframes profile-pulse {
      0% {
        transform: scale(1);
        opacity: 0.4;
      }
      100% {
        transform: scale(1.45);
        opacity: 0;
      }
    }

    /* Tooltip styling on hover */
    .profile-float .tooltip-text {
      visibility: hidden;
      width: 120px;
      background-color: #0d0d0b;
      color: #FCFCFA;
      text-align: center;
      border-radius: 4px;
      padding: 6px 10px;
      position: absolute;
      z-index: 1;
      right: 125%;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 0.25s, transform 0.25s;
      transform: translateX(5px);
      pointer-events: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(200, 155, 60, 0.25);
    }
    .profile-float .tooltip-text::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 100%;
      margin-top: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: transparent transparent transparent #0d0d0b;
    }

    .profile-float:hover .tooltip-text {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }

    /* Mobile responsive overrides */
    @media (max-width: 768px) {
      .profile-float {
        bottom: 82px;
        right: 20px;
        width: 42px;
        height: 42px;
        padding: 8px;
      }

      .profile-float .tooltip-text {
        display: none; /* Hide tooltip on mobile to save space */
      }
    }

    /* â€”â€”â€”â€”â€”â€” AESTHETIC ANIMATIONS â€”â€”â€”â€”â€”â€” */
    @keyframes heroZoom {
      0% { transform: scale(1); }
      100% { transform: scale(1.08); }
    }

    .hero-bg, .detail-hero-img {
      animation: heroZoom 20s ease-out forwards;
    }

    .nav-cta, .btn-primary, .btn-form-submit, .detail-cta-btn {
      position: relative;
      overflow: hidden;
    }

    .nav-cta::after, .btn-primary::after, .btn-form-submit::after, .detail-cta-btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
      transform: skewX(-25deg);
      transition: all 0.75s ease;
    }

    .nav-cta:hover::after, .btn-primary:hover::after, .btn-form-submit:hover::after, .detail-cta-btn:hover::after {
      left: 200%;
    }

    /* â€”â€”â€”â€”â€”â€” SCENIC TRAVEL LOADER â€”â€”â€”â€”â€”â€” */
    .scenic-loader-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(248, 247, 243, 0.3); /* High transparency */
      backdrop-filter: blur(5px); /* Gentle blur */
      -webkit-backdrop-filter: blur(5px);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 999999;
      opacity: 1;
      transition: opacity 0.6s ease-out;
    }
    
    .scenic-loader-overlay.hide {
      opacity: 0;
      pointer-events: none;
    }

    .scenic-loader-wrapper {
      position: relative;
      width: 90px;
      height: 90px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .scenic-ring-svg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      animation: spinNoodle 1s linear infinite;
      z-index: 1;
    }

    .scenic-ring-svg circle {
      /* Circumference is 282.7. 30% is 85. */
      stroke-dasharray: 85 200;
      stroke-dashoffset: 0;
    }

    @keyframes spinNoodle {
      100% { transform: rotate(360deg); }
    }

    .scenic-loader-svg {
      width: 50px; /* Extremely tiny and minimalist */
      height: 50px;
      position: relative;
      z-index: 2;
      overflow: visible; /* Prevents drastic animations from being cropped out */
    }

    /* Core line drawing animation (Even faster) */
    .scenic-path {
      stroke-dasharray: 400;
      stroke-dashoffset: 400;
      animation: drawScenicLine 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes drawScenicLine {
      to { stroke-dashoffset: 0; }
    }

    /* Mountains */
    .anim-mtn-sun {
      transform: translateY(60px);
      opacity: 0;
      animation: riseMtnSun 1.5s ease-out forwards; 
    }
    @keyframes riseMtnSun { 
      0% { transform: translateY(60px); opacity: 0; } 
      20% { transform: translateY(0px); opacity: 1; }
      100% { transform: translateY(-45px); opacity: 1; } /* Drastic sun rise */
    }

    /* Beach */
    .anim-beach-sun {
      opacity: 0;
      transform: scale(0.6);
      animation: pulseBeachSun 1s ease-in-out infinite alternate;
    }
    @keyframes pulseBeachSun { 
      0% { opacity: 0.3; transform: scale(0.6); } 
      100% { opacity: 1; transform: scale(1.6); } /* Drastic pulse */
    }
    
    .anim-beach-wave {
      animation: drawScenicLine 0.5s ease-out forwards, waveDrift 0.8s ease-in-out infinite alternate;
    }
    @keyframes waveDrift { 
      0% { transform: translate(-12px, -4px); } 
      100% { transform: translate(15px, 6px); } /* Drastic wave crash */
    }
    
    .anim-palm-leaf {
      transform-origin: 45px 35px;
      animation: drawScenicLine 0.5s ease-out forwards, palmSway 0.6s ease-in-out infinite alternate;
    }
    @keyframes palmSway { 0% { transform: rotate(-15deg); } 100% { transform: rotate(25deg); } /* Drastic whipping sway */ }

    /* Forest (Replaced Jungle) */
    .anim-forest-sun {
      animation: fadeForestSun 1s ease-in-out infinite alternate;
    }
    @keyframes fadeForestSun { 0% { opacity: 0; transform: scale(0.8); } 100% { opacity: 0.8; transform: scale(1.4); } /* Drastic glow pulse */ }
    
    .anim-forest-tree {
      transform-origin: 60px 100px;
      animation: drawScenicLine 0.5s ease-out forwards, forestSway 0.8s ease-in-out infinite alternate;
    }
    @keyframes forestSway { 0% { transform: rotate(-10deg); } 100% { transform: rotate(15deg); } /* Drastic deep sway */ }

    /* Boat */
    .anim-boat-sun {
      opacity: 0;
      transform: scale(0.8);
      animation: pulseBeachSun 1s ease-in-out infinite alternate;
    }
    .anim-boat-sail {
      transform-origin: 60px 80px;
      animation: boatRock 0.9s ease-in-out infinite alternate;
    }
    @keyframes boatRock {
      0% { transform: rotate(-15deg) translate(-12px, 5px); }
      100% { transform: rotate(20deg) translate(15px, -8px); } /* Drastic rock and slide */
    }
    .anim-boat-wave {
      animation: drawScenicLine 0.5s ease-out forwards, waveDrift 0.6s ease-in-out infinite alternate;
    }

    /* Balloon */
    .anim-balloon-float {
      animation: balloonFloat 1.2s ease-in-out infinite alternate;
    }
    @keyframes balloonFloat {
      0% { transform: translate(-10px, 10px) rotate(-10deg); }
      100% { transform: translate(15px, -30px) rotate(15deg); } /* Drastic float up and away */
    }

    /* Paragliding */
    .anim-paragliding-sun {
      opacity: 0;
      transform: scale(0.8);
      animation: pulseBeachSun 1s ease-in-out infinite alternate;
    }
    .anim-paragliding-fly {
      transform-origin: 60px 45px;
      animation: paraglidingFly 2.5s ease-in-out infinite alternate;
    }
    @keyframes paraglidingFly {
      0% { transform: translate(-15px, 5px) rotate(-8deg); } 50% { transform: translate(0px, -5px) rotate(0deg); } 100% { transform: translate(15px, 5px) rotate(8deg); }
    }

    /* Skiing */
    .anim-skiing-sun {
      opacity: 0;
      transform: scale(0.8);
      animation: pulseBeachSun 1s ease-in-out infinite alternate;
    }
    .anim-skiing-slide {
      transform-origin: 50px 60px;
      animation: skiingSlide 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    }
    @keyframes skiingSlide {
      0% { transform: translate(-20px, -11px); } 100% { transform: translate(20px, 11px); }
    }

