* {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    a { text-decoration: none; }
    a:hover { text-decoration: none; }

    :root {
      /* ── Derived from #273DB4 (royal blue) ── */
      --sky: #EEF0FF;
      --sky2: #D8DCFF;
      /* ── Core palette ── */
      --ocean: #273DB4;
      --ocean2: #4055CC;
      --ocean-light: rgba(39, 61, 180, 0.08);
      --coral: #F95CA4;
      --coral2: #ED7845;
      /* ── Derived from #ED7845 (warm orange) ── */
      --sand: #FFF3EE;
      --sand2: #FFE2CC;
      /* ── Derived from #F95CA4 (hot pink) — body & light sections ── */
      --ivory: #FFF5FA;
      --charcoal: #141414;
      --charcoal2: #222222;
      --mid: #555568;
      --muted: #8888A8;
      --white: #FFFFFF;
      --border: #EAD8E8;
      --border2: rgba(39, 61, 180, 0.15);
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden
    }

    body {
      font-family: Arial, sans-serif;
      background: var(--ivory);
      color: var(--charcoal);
      overflow-x: hidden;
      max-width: 100vw
    }

    h3, h4, h5, h6 {
      font-family: 'Nunito', sans-serif;
      font-weight: 600;
    }

    /* SCROLLBAR */
    ::-webkit-scrollbar {
      width: 5px
    }

    ::-webkit-scrollbar-track {
      background: var(--sky)
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(var(--ocean), var(--coral));
      border-radius: 4px
    }

    /* ===== NAV ===== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      padding: 0 64px;
      height: 72px;
      background: rgba(253, 250, 246, 0);
      transition: all .4s ease;
    }

    .nav.scrolled {
      background: rgb(10 10 10);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 4px 30px rgba(39, 61, 180, 0.08);
    }

    .nav-logo {
      font-family: Georgia, serif;
      font-size: 21px;
      color: var(--white);
      letter-spacing: .01em;
      text-decoration: none;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: color .3s;
      flex-shrink: 0;
    }

    .nav.scrolled .nav-logo {
      color: var(--charcoal)
    }

    .nav-logo-badge {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--ocean), var(--ocean2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      color: #fff;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(39, 61, 180, 0.3);
    }

    .nav-logo-img {
      height: 48px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .nav-logo span {
      color: var(--coral)
    }

    .nav.scrolled .nav-logo span {
      color: var(--coral)
    }

    .nav-links {
      display: flex;
      gap: 28px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-link {
      font-family: 'Nunito', sans-serif;
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.85);
      letter-spacing: .02em;
      cursor: pointer;
      transition: color .25s;
      text-decoration: none;
      font-weight: 600;
    }

    .nav.scrolled .nav-link {
      color: #fff;
    }

    .nav-link:hover {
      color: #fff;
    }

    .nav.scrolled .nav-link:hover {
      color: var(--ocean)
    }

    .nav-contact {
      display: flex;
      align-items: center;
      gap: 0;
      margin-left: auto;
      flex-shrink: 0;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 100px;
      padding: 6px 16px;
      backdrop-filter: blur(8px);
      transition: all .3s;
    }
    .nav.scrolled .nav-contact {
      background: var(--sky);
      border-color: var(--border);
    }
    .nav-contact-item {
      display: flex;
      align-items: center;
      gap: 7px;
      text-decoration: none;
      color: rgba(255,255,255,0.9);
      font-family: 'Nunito', sans-serif;
      font-size: 12.5px;
      font-weight: 600;
      white-space: nowrap;
      transition: color .25s;
    }
    .nav-contact-item:hover { color: #fff; }
    .nav.scrolled .nav-contact-item { color: var(--charcoal); }
    .nav.scrolled .nav-contact-item:hover { color: var(--ocean); }
    /* ── Floating icon animation ─────────────────────── */
    @keyframes iconFloat {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-5px); }
    }
    @keyframes iconFloatSlow {
      0%,100% { transform: translateY(0) rotate(0deg); }
      40%     { transform: translateY(-6px) rotate(3deg); }
      60%     { transform: translateY(-4px) rotate(-2deg); }
    }

    .nav-contact-icon {
      font-size: 20px;
      line-height: 1;
      display: inline-block;
      animation: iconFloat 2.8s ease-in-out infinite;
    }
    /* stagger the two nav icons */
    .nav-contact-item:nth-child(1) .nav-contact-icon { animation-delay: 0s; }
    .nav-contact-item:nth-child(3) .nav-contact-icon { animation-delay: 1.4s; }
    .nav-contact-divider {
      width: 1px;
      height: 18px;
      background: rgba(255,255,255,0.25);
      margin: 0 12px;
    }
    .nav.scrolled .nav-contact-divider {
      background: var(--border);
    }

    /* ===== HERO VIDEO BANNER ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-video-wrap iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100vw;
      height: 56.25vw;
      min-height: 100vh;
      min-width: 177.77vh;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    /* Fallback animated gradient if video not available */
    .hero-bg-fallback {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #141414 0%, #1a1a2e 30%, #273DB4 60%, #1e2a8a 100%);
      z-index: 0;
    }

    .hero-bg-anim {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(ellipse 900px 600px at 70% 40%, rgba(39, 61, 180, 0.3), transparent),
        radial-gradient(ellipse 600px 400px at 20% 70%, rgba(249, 92, 164, 0.1), transparent);
      animation: bgShift 10s ease-in-out infinite alternate;
    }

    @keyframes bgShift {
      0% {
        background-position: 0% 0%
      }

      100% {
        background-position: 100% 100%
      }
    }

    /* Animated floating elements in hero */
    .hero-particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, var(--op, 0.15));
      animation: particleFloat var(--dur, 6s) var(--del, 0s) ease-in-out infinite;
      filter: blur(var(--blur, 0px));
    }

    @keyframes particleFloat {

      0%,
      100% {
        transform: translateY(0) translateX(0)
      }

      33% {
        transform: translateY(var(--y1, -20px)) translateX(var(--x1, 10px))
      }

      66% {
        transform: translateY(var(--y2, 10px)) translateX(var(--x2, -15px))
      }
    }

    .hero-wave {
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      z-index: 3;
      display: none;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(to right,
          rgba(20, 20, 20, 0.82) 0%,
          rgba(20, 20, 20, 0.6) 50%,
          rgba(20, 20, 20, 0.15) 100%);
    }

    .hero-inner {
      position: relative;
      z-index: 4;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px;
      width: 100%;
      display: flex;
      align-items: center;
      gap: 60px;
    }

    .hero-content {
      max-width: 620px;
      padding-top: 50px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 18px;
      border-radius: 100px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(8px);
      font-family: 'Nunito', sans-serif;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.85);
      letter-spacing: .12em;
      font-weight: 600;
      margin-bottom: 28px;
      text-transform: uppercase;
      animation: heroFadeUp .9s ease both;    
      
    }

    .eyebrow-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--coral);
      box-shadow: 0 0 10px var(--coral);
      animation: dotBlink 2s ease infinite;
    }

    @keyframes dotBlink {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .4;
        transform: scale(.7)
      }
    }

    .hero-title {
      font-family: Georgia, serif;
      font-size: 60px;
      line-height: 1.0;
      color: #FFFFFF;
      margin-bottom: 24px;
      font-weight: 700;
      animation: heroFadeUp .9s .1s ease both;
    }

    .hero-title em {
      font-style: italic;
      color: var(--coral2)
    }
    .hero-gradient-text {
      font-style: italic;
      font-weight: 500;
      background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845, #C50900, #F95CA4, #273DB4);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      filter: drop-shadow(0 2px 8px rgba(249,92,164,0.35));
      animation: footer-title-flow 3s linear infinite;
    }

    .hero-title .line2 {
      color: rgba(255, 255, 255, 0.9);
      font-weight: 400;
      font-size: 64px
    }

    .hero-sub {
      font-size: 17px;
      color: #fff;
      line-height: 1.75;
      max-width: 500px;
      margin-bottom: 40px;
      animation: heroFadeUp .9s .2s ease both;
      font-weight: 300;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: heroFadeUp .9s .3s ease both
    }

    .btn-primary {
      padding: 16px 36px;
      background: linear-gradient(135deg, var(--coral), var(--coral2));
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      border-radius: 100px;
      cursor: pointer;
      letter-spacing: .02em;
      transition: all .3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 6px 24px rgba(249, 92, 164, 0.4);
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.15);
      transform: translateX(-100%);
      transition: transform .4s;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(249, 92, 164, 0.5)
    }

    .btn-primary:hover::before {
      transform: translateX(0)
    }

    .btn-ghost {
      padding: 15px 32px;
      border: 2px solid rgba(255, 255, 255, 0.35);
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      border-radius: 100px;
      cursor: pointer;
      letter-spacing: .02em;
      transition: all .3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      backdrop-filter: blur(8px);
      font-weight: 500;
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.7);
      color: #fff;
      background: rgba(255, 255, 255, 0.1)
    }

    .hero-trust {
      display: flex;
      gap: 28px;
      margin-top: 40px;
      animation: heroFadeUp .9s .4s ease both;
    }

    .hero-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 34px;
      color: #fff;
    }

    .hero-trust-item strong {
      color: #fff;
      font-size: 34px;
    }

    .bbb-badge {
      display: flex;
      align-items: stretch;
      border-radius: 8px;
      overflow: hidden;
      border: 1.5px solid rgba(255,255,255,0.25);
      box-shadow: 0 2px 12px rgba(0,0,0,0.25);
      height: 44px;
    }
    .bbb-left {
      background: #ffffff;
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 0 10px;
    }
    .bbb-text {
      font-family: Georgia, serif;
      font-size: 17px;
      font-weight: 700;
      color: #1B5FA3;
      letter-spacing: -0.5px;
    }
    .bbb-right {
      background: #1B5FA3;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 0 10px;
      gap: 1px;
    }
    .bbb-right span {
      font-family: 'Nunito', sans-serif;
      font-size: 9px;
      font-weight: 700;
      color: #ffffff;
      letter-spacing: .08em;
      line-height: 1.2;
    }

    /* Right side stats cards */
    .hero-stats {
      display: flex;
      flex-direction: column;
      gap: 12px;
      animation: statsIn .9s .5s ease both;
      flex-shrink: 0;
      padding-left: 70px;
    }

    @keyframes statsIn {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .hero-stat-card {
      padding: 20px 26px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 18px;
      text-align: center;
      backdrop-filter: blur(16px);
      transition: all .4s;
      width: 200px;
      position: relative;
      overflow: hidden;
      
    }

    .hero-stat-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--coral), var(--ocean2));
      transform: scaleX(0);
      transition: transform .4s;
    }

    .hero-stat-card:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.04)
    }

    .hero-stat-card:hover::after {
      transform: scaleX(1)
    }

    .stat-val {
      font-family: Georgia, serif;
      font-size: 34px;
      color: #fff;
      line-height: 1;
      font-weight: 700;
    }

    .stat-val small {
      font-size: 18px;
      color: var(--coral2)
    }

    .stat-label {
      font-size: 10.5px;
      color: #fff;
      margin-top: 5px;
      letter-spacing: .07em;
      font-weight: 500
    }

    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ===== SEARCH BAR ===== */
    .search-section {
      background: var(--ivory);
      padding: 0 64px 60px;
      position: relative;
      z-index: 10;
    }

    .search-card {
      max-width: 1200px;
      margin: 0 auto;
      background: var(--white);
      border-radius: 24px;
      box-shadow: 0 20px 80px rgba(39, 61, 180, 0.12), 0 4px 20px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      margin-top: -40px;
      position: relative;
    }

    .search-tabs {
      display: flex;
      padding: 0 28px;
      gap: 4px;
      background: var(--sand);
      border-bottom: 1px solid var(--border);
    }

    .stab {
      padding: 16px 22px;
      font-size: 13px;
      color: var(--muted);
      cursor: pointer;
      border-bottom: 3px solid transparent;
      margin-bottom: -1px;
      letter-spacing: .02em;
      transition: all .25s;
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 500;
    }

    .stab.on {
      color: var(--ocean);
      border-bottom-color: var(--ocean);
      font-weight: 600
    }

    .stab:hover:not(.on) {
      color: var(--charcoal)
    }

    .search-fields {
      display: flex;
      align-items: stretch;
      padding: 20px 20px
    }

    .sf {
      flex: 1;
      padding: 14px 20px;
      background: var(--sky);
      border: 1.5px solid var(--border);
      border-right: none;
      font-size: 13.5px;
      color: var(--charcoal);
      font-family: 'Nunito', sans-serif;
      cursor: pointer;
      transition: all .25s;
    }

    .sf:hover {
      background: var(--sky2);
      border-color: var(--ocean2)
    }

    .sf:first-child {
      border-radius: 12px 0 0 12px
    }

    .sf-label {
      font-size: 9.5px;
      color: var(--ocean);
      letter-spacing: .09em;
      display: block;
      margin-bottom: 3px;
      font-weight: 600;
      text-transform: uppercase
    }

    .search-btn {
      padding: 0 40px;
      background: linear-gradient(135deg, var(--ocean), var(--ocean2));
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .03em;
      border-radius: 0 12px 12px 0;
      cursor: pointer;
      white-space: nowrap;
      transition: all .3s;
      border: none;
      font-family: 'Nunito', sans-serif;
      box-shadow: 0 4px 20px rgba(39, 61, 180, 0.3);
    }

    .search-btn:hover {
      box-shadow: 0 8px 32px rgba(39, 61, 180, 0.45);
      transform: scale(1.02)
    }

    /* ===== SECTION BASE ===== */
    .section {
      padding: 50px 64px
    }

    .section-light {
      background: var(--ivory)
    }

    .section-white {
      background: var(--white)
    }

    .section-sand {
      background: var(--sand)
    }

    .section-sky {
      background: var(--sky)
    }

    .section-dark {
      background: var(--charcoal);
      color: #fff
    }

    .max-w {
      max-width: 1200px;
      margin: 0 auto
    }

    .flex-between {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 56px
    }

    .eyebrow {
      font-family: 'Nunito', sans-serif;
      font-size: 11px;
      letter-spacing: .18em;
      color: #cd5600;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .eyebrow::before {
      content: '';
      width: 28px;
      height: 2px;
      background: linear-gradient(90deg, var(--coral), var(--ocean));
      border-radius: 2px;
      display: block
    }

    .eyebrow-dark {
      font-family: 'Nunito', sans-serif;
      font-size: 11px;
      letter-spacing: .18em;
      color: var(--coral2);
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px
    }

    .eyebrow-dark::before {
      content: '';
      width: 28px;
      height: 2px;
      background: linear-gradient(90deg, var(--coral), var(--ocean2));
      border-radius: 2px;
      display: block
    }

    .section-title {
      font-family: Georgia, serif;
      font-size: 46px;
      color: var(--charcoal);
      line-height: 1.1;
      font-weight: 700;
      margin-bottom: 16px
    }

    .section-title em {
      font-style: italic;
      font-weight: 500;
      background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845, #C50900, #F95CA4, #273DB4);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: footer-title-flow 3s linear infinite;
    }

    .section-title-white {
      font-family: Georgia, serif;
      font-size: 46px;
      color: #fff;
      line-height: 1.1;
      font-weight: 700;
      margin-bottom: 16px
    }

    .section-sub {
      font-family: Arial, sans-serif;
      font-size: 15.5px;
      color: var(--mid);
      line-height: 1.75;
      max-width: 440px;
      font-weight: 400
    }

    .section-sub-white {
      font-family: Arial, sans-serif;
      font-size: 15.5px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.75;
      max-width: 440px;
      font-weight: 400
    }

    /* ===== TRUST BAR ===== */
    .trust-bar {
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12.5px;
      color: var(--mid);
      letter-spacing: .04em;
      padding: 18px 36px;
      border-right: 1px solid var(--border);
      transition: all .3s;
      font-weight: 500;
    }

    .trust-item:last-child {
      border-right: none
    }

    .trust-item:hover {
      color: var(--ocean);
      background: var(--sky)
    }

    .trust-icon {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--ocean-light), rgba(39, 61, 180, 0.12));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      border: 1px solid var(--border2);
      animation: iconFloatSlow 3.2s ease-in-out infinite;
    }
    .trust-item:nth-child(1) .trust-icon { animation-delay: 0s; }
    .trust-item:nth-child(2) .trust-icon { animation-delay: 0.5s; }
    .trust-item:nth-child(3) .trust-icon { animation-delay: 1.0s; }
    .trust-item:nth-child(4) .trust-icon { animation-delay: 1.5s; }
    .trust-item:nth-child(5) .trust-icon { animation-delay: 2.0s; }
    .trust-item:nth-child(6) .trust-icon { animation-delay: 2.5s; }

    /* ===== SERVICES ===== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px
    }

    .svc-card {
      padding: 38px 32px;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 22px;
      transition: all .4s cubic-bezier(.25, .8, .25, 1);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .svc-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--sky), rgba(255, 255, 255, 0));
      opacity: 0;
      transition: opacity .4s;
    }

    .svc-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--ocean), var(--coral));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s;
    }

    .svc-card:hover {
      border-color: var(--ocean2);
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(39, 61, 180, 0.14);
    }

    .svc-card:hover::before {
      opacity: 1
    }

    .svc-card:hover::after {
      transform: scaleX(1)
    }

    .svc-img {
      width: 100%;
      height: 160px;
      border-radius: 14px;
      overflow: hidden;
      margin-bottom: 22px;
      position: relative;
    }

    .svc-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s
    }

    .svc-card:hover .svc-img img {
      transform: scale(1.07)
    }

    .svc-icon-badge {
      position: absolute;
      bottom: 12px;
      right: 12px;
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    }

    .svc-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 10px;
      position: relative;
      z-index: 1
    }

    .svc-desc {
      font-size: 13.5px;
      color: var(--mid);
      line-height: 1.7;
      position: relative;
      z-index: 1;
      font-weight: 300
    }

    .svc-arrow {
      margin-top: 20px;
      font-size: 13px;
      color: var(--ocean);
      font-weight: 600;
      opacity: 0;
      transform: translateX(-10px);
      transition: all .35s;
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .svc-card:hover .svc-arrow {
      opacity: 1;
      transform: translateX(0)
    }

    /* ===== DESTINATIONS SHOWCASE ===== */
    .dest-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      grid-template-rows: 280px 280px;
      gap: 16px;
    }

    .dest-hover-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 52px;
    }
    .dest-hover-grid .arv-card {
      height: 380px;
    }
    .dest-hover-grid .arv-card-reveal {
      height: 62%;
      overflow: hidden;
    }
    .dest-hover-grid .arv-card-reveal p {
      font-size: 12px;
      line-height: 1.55;
    }

    .dest-card {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: transform .4s;
    }

    .dest-card:hover {
      transform: scale(1.02)
    }

    .dest-card:first-child {
      grid-row: span 2
    }

    .dest-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s
    }

    .dest-card:hover img {
      transform: scale(1.06)
    }

    .dest-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20, 20, 20, 0.8) 0%, rgba(20, 20, 20, 0.15) 60%, transparent 100%);
      transition: all .4s;
    }

    .dest-card:hover .dest-overlay {
      background: linear-gradient(to top, rgba(20, 20, 20, 0.85) 0%, rgba(20, 20, 20, 0.3) 60%, transparent 100%)
    }

    .dest-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px 22px;
    }

    .dest-label {
      font-size: 10px;
      color: rgba(255, 255, 255, 0.65);
      letter-spacing: .1em;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 5px
    }

    .dest-name {
      font-family: Georgia, serif;
      font-size: 24px;
      color: #fff;
      font-weight: 700;
      line-height: 1.2
    }

    .dest-card:first-child .dest-name {
      font-size: 34px
    }

    .dest-price {
      margin-top: 8px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.75);
      font-weight: 500;
      opacity: 0;
      transform: translateY(8px);
      transition: all .3s;
    }

    .dest-card:hover .dest-price {
      opacity: 1;
      transform: translateY(0)
    }

    .dest-badge {
      position: absolute;
      top: 14px;
      right: 14px;
      padding: 5px 14px;
      border-radius: 100px;
      background: var(--coral);
      font-size: 10px;
      color: #fff;
      font-weight: 700;
      letter-spacing: .05em;
    }

    /* ===== AIRLINES MARQUEE ===== */
    .marquee-section {
      overflow: hidden;
      padding: 52px 0;
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border)
    }

    .section-ocean,
    .section-dark {
      overflow: hidden
    }

    .marquee-track {
      display: flex;
      gap: 12px;
      width: max-content;
      animation: scrollLeft 40s linear infinite
    }

    .marquee-track2 {
      display: flex;
      gap: 12px;
      width: max-content;
      animation: scrollRight 50s linear infinite;
      margin-top: 12px
    }

    @keyframes scrollLeft {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    @keyframes scrollRight {
      from {
        transform: translateX(-50%)
      }

      to {
        transform: translateX(0)
      }
    }

    .airline-chip {
      padding: 10px 22px;
      background: var(--sky);
      border: 1.5px solid var(--border);
      border-radius: 100px;
      font-size: 12.5px;
      color: var(--mid);
      white-space: nowrap;
      transition: all .25s;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .airline-chip:hover {
      border-color: var(--ocean2);
      color: var(--ocean);
      background: var(--sky2)
    }

    .airline-chip-icon {
      width: 20px;
      height: 20px;
      background: var(--ocean-light);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }

    /* Fade edges */
    .marquee-fade {
      position: relative;
      overflow: hidden
    }

    .marquee-fade::before,
    .marquee-fade::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100px;
      z-index: 2;
      pointer-events: none;
    }

    /* .marquee-fade::before {
      left: 0;
      background: linear-gradient(90deg, var(--white), transparent)
    }

    .marquee-fade::after {
      right: 0;
      background: linear-gradient(-90deg, var(--white), transparent)
    } */

    /* ── Hotel chips marquee (single row, dark bg) ── */
    .hotel-marquee-track {
      display: flex;
      gap: 12px;
      width: max-content;
      animation: scrollLeft 35s linear infinite;
      padding: 6px 0;
    }
    .hotel-chip {
      padding: 10px 22px;
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(255,255,255,0.14);
      border-radius: 100px;
      font-size: 12.5px;
      color: rgba(255,255,255,0.8);
      white-space: nowrap;
      font-family: 'Nunito', sans-serif;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 7px;
      transition: all .25s;
    }
    .hotel-chip:hover {
      background: rgba(255,255,255,0.15);
      border-color: rgba(249,92,164,0.5);
      color: #fff;
    }
    .hotel-chip-icon {
      width: 20px;
      height: 20px;
      background: rgba(249,92,164,0.2);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
    }
    /* Dark section fade edges */
    .section-dark .marquee-fade::before { background: linear-gradient(90deg, var(--charcoal), transparent); }
    .section-dark .marquee-fade::after  { background: linear-gradient(-90deg, var(--charcoal), transparent); }

    /* ===== ABOUT REVAMPED ===== */
    .about-revamp { padding-top: 80px; padding-bottom: 32px; }

    /* Header */
    .arv-header { text-align: center; margin-bottom: 64px; }
    .arv-title { font-size: 50px; margin: 12px auto 20px; max-width: 640px; }
    .arv-desc { font-family: Arial, sans-serif; font-size: 16px; color: var(--mid); line-height: 1.8; max-width: 580px; margin: 0 auto; }

    /* Floating stat cards */
    @keyframes arvFloat {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-10px); }
    }
    .arv-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 56px;
    }
    .arv-stat {
      background: #fff;
      border-radius: 22px;
      padding: 0 0 24px;
      text-align: center;
      box-shadow: 0 8px 32px rgba(39,61,180,.10), 0 2px 8px rgba(0,0,0,.05);
      overflow: hidden;
      animation: arvFloat 5s ease-in-out infinite;
      animation-delay: var(--fd, 0s);
      transition: box-shadow .3s;
    }
    .arv-stat:hover { box-shadow: 0 20px 56px rgba(39,61,180,.18); }
    .arv-stat-top {
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .arv-stat-num {
      font-family: Georgia, serif;
      font-size: 34px;
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1;
      margin-bottom: 6px;
    }
    .arv-stat-lbl {
      font-family: 'Nunito', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* 6-card feature grid */
    .arv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 52px;
    }
    /* Image-overlay card */
    .arv-card {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      height: 260px;
      cursor: pointer;
      box-shadow: 0 8px 32px rgba(0,0,0,.22);
      transition: transform .45s cubic-bezier(.4,0,.2,1), box-shadow .45s;
      animation-delay: var(--cd, 0s);
    }
    .arv-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 28px 64px rgba(0,0,0,.38);
    }
    .arv-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform .55s cubic-bezier(.4,0,.2,1);
    }
    .arv-card:hover .arv-card-bg { transform: scale(1.08); }
    .arv-card-overlay {
      position: absolute;
      inset: 0;
      opacity: .88;
      transition: opacity .3s;
    }
    .arv-card:hover .arv-card-overlay { opacity: .78; }
    .arv-card-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 22px 24px;
    }
    .arv-card-badge {
      width: 42px; height: 42px;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.28);
      border-radius: 13px;
      display: flex; align-items: center; justify-content: center;
      transition: background .3s;
      animation: iconFloat 3s ease-in-out infinite;
      position: relative; z-index: 3;
    }
    .arv-card:nth-child(1) .arv-card-badge { animation-delay: 0s; }
    .arv-card:nth-child(2) .arv-card-badge { animation-delay: 0.5s; }
    .arv-card:nth-child(3) .arv-card-badge { animation-delay: 1.0s; }
    .arv-card:nth-child(4) .arv-card-badge { animation-delay: 1.5s; }
    .arv-card:nth-child(5) .arv-card-badge { animation-delay: 2.0s; }
    .arv-card:nth-child(6) .arv-card-badge { animation-delay: 2.5s; }
    .arv-card:hover .arv-card-badge { background: rgba(255,255,255,.25); }
    .arv-card-bottom {
      margin-top: auto;
      position: relative;
      z-index: 3;
    }
    .arv-card-content::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 65%;
      background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.30) 55%, transparent 100%);
      border-radius: 0 0 24px 24px;
      pointer-events: none;
      z-index: 1;
    }
    .arv-card-cat {
      font-family: 'Nunito', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255,255,255,.9);
      margin-bottom: 6px;
      text-shadow: 0 1px 6px rgba(0,0,0,.6);
    }
    .arv-card-heading {
      font-family: Georgia, serif;
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      line-height: 1.25;
      text-shadow: 0 2px 10px rgba(0,0,0,.7);
    }

    /* Card hover reveal panel */
    .arv-card-reveal {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 52%;
      padding: 18px 22px 20px;
      background: rgba(8,8,18,.82);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-top: 1px solid rgba(255,255,255,.12);
      transform: translateY(100%);
      transition: transform .42s cubic-bezier(.4,0,.2,1);
      z-index: 4;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 8px;
    }
    .arv-card:hover .arv-card-reveal { transform: translateY(0); }
    .arv-card-reveal p {
      font-family: Arial, sans-serif;
      font-size: 12.5px;
      line-height: 1.6;
      color: rgba(255,255,255,.88);
      margin: 0;
    }
    .arv-card-reveal .arv-reveal-label {
      font-family: 'Nunito', sans-serif;
      font-size: 9.5px;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
    }

    /* Credential badges */
    /* ── Logo marquee (replaces text credential badges) ── */
    .arv-logo-marquee-wrap {
      position: relative;
      overflow: hidden;
      margin-bottom: 0;
      padding: 12px 0;
    }
    .arv-logo-marquee-wrap::before,
    .arv-logo-marquee-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 100px;
      z-index: 2;
      pointer-events: none;
    }
    .arv-logo-marquee-wrap::before {
      left: 0;
      background: linear-gradient(90deg, var(--sand) 0%, transparent 100%);
    }
    .arv-logo-marquee-wrap::after {
      right: 0;
      background: linear-gradient(-90deg, var(--sand) 0%, transparent 100%);
    }
    .arv-logo-track {
      display: flex;
      align-items: center;
      gap: 56px;
      width: max-content;
      animation: arv-logo-scroll 22s linear infinite;
    }
    .arv-logo-marquee-wrap:hover .arv-logo-track { animation-play-state: paused; }
    @keyframes arv-logo-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .arv-logo-item {
      flex-shrink: 0;
      width: 160px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 12px;
      border: 1px solid rgba(39,61,180,0.1);
      padding: 16px 20px;
      box-shadow: 0 2px 12px rgba(39,61,180,0.07);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .arv-logo-item:hover {
      box-shadow: 0 6px 24px rgba(39,61,180,0.13);
      transform: translateY(-3px);
    }
    .arv-logo-item img {
      width: 100%;
      /* height: 100%; */
      object-fit: contain;
      filter: grayscale(15%) opacity(0.85);
      transition: filter 0.3s;
    }
    .arv-logo-item:hover img {
      filter: grayscale(0%) opacity(1);
    }

    /* Discounts & Savings — vertical timeline layout */
    .arv-mission {
      padding: 56px 52px;
      background: linear-gradient(160deg, rgb(28, 9, 0) 0%, rgb(77, 34, 0) 50%, rgb(125, 53, 18) 100%);
      border-radius: 28px;
      position: relative;
      overflow: hidden;
    }
    .arv-mission::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 0% 0%, rgba(39,61,180,.22) 0%, transparent 50%),
                  radial-gradient(ellipse at 100% 100%, rgba(249,92,164,.16) 0%, transparent 50%);
      pointer-events: none;
    }
    .arv-disc-layout {
      display: flex;
      gap: 64px;
      align-items: flex-start;
      position: relative;
    }
    .arv-disc-left {
      width: 260px;
      flex-shrink: 0;
    }
    .arv-disc-emblem {
      width: 64px; height: 64px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(39,61,180,.4), rgba(249,92,164,.3));
      border: 1px solid rgba(249,92,164,.35);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
      box-shadow: 0 8px 32px rgba(249,92,164,.2);
    }
    .arv-disc-emblem svg {
      width: 30px; height: 30px;
      stroke: #F95CA4;
    }
    .arv-disc-title {
      font-family: 'Nunito', sans-serif;
      font-size: 30px;
      font-weight: 800;
      line-height: 1.2;
      background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845, #C50900, #F95CA4, #273DB4);
      background-size: 200% auto;
      animation: footer-title-flow 3s linear infinite;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 16px;
    }
    .arv-disc-sub {
      font-family: 'Nunito', sans-serif;
      font-size: 14px;
      color: rgba(255,255,255,.5);
      line-height: 1.75;
      margin-bottom: 28px;
    }
    .arv-disc-line-deco {
      width: 48px; height: 3px;
      background: linear-gradient(90deg, #273DB4, #F95CA4);
      border-radius: 2px;
    }
    /* Timeline right column */
    .arv-disc-right {
      flex: 1;
      position: relative;
      padding-left: 48px;
    }
    .arv-disc-tl-line {
      position: absolute;
      left: 15px;
      top: 10px;
      bottom: 48px;
      width: 2px;
      background: linear-gradient(to bottom, #273DB4, #F95CA4, #ED7845, rgba(197,9,0,0));
      border-radius: 2px;
    }
    .arv-disc-tl-item {
      position: relative;
      margin-bottom: 0;
      padding-bottom: 36px;
    }
    .arv-disc-tl-item--last {
      padding-bottom: 0;
    }
    .arv-disc-tl-item:not(.arv-disc-tl-item--last)::after {
      content: '';
      display: block;
      position: absolute;
      bottom: 18px;
      left: 0;
      right: 0;
      height: 1px;
      background: rgba(255,255,255,.07);
    }
    .arv-disc-tl-node {
      position: absolute;
      left: -48px;
      top: 2px;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, #273DB4, #F95CA4);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 0 5px rgba(249,92,164,.14), 0 4px 16px rgba(39,61,180,.3);
    }
    .arv-disc-tl-node span {
      font-family: 'Nunito', sans-serif;
      font-size: 10px;
      font-weight: 800;
      color: #fff;
      letter-spacing: .05em;
    }
    .arv-disc-tl-node--notice {
      background: linear-gradient(135deg, #ED7845, #C50900);
      box-shadow: 0 0 0 5px rgba(237,120,69,.14), 0 4px 16px rgba(197,9,0,.25);
    }
    .arv-disc-tl-label {
      font-family: 'Nunito', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      letter-spacing: .01em;
    }
    .arv-disc-tl-item--last .arv-disc-tl-label {
      color: #fff;
    }
    .arv-disc-tl-body p {
      font-family: 'Nunito', sans-serif;
      font-size: 13.5px;
      color: #fff;
      line-height: 1.8;
      margin: 0;
    }

    /* ===== VACATIONS ===== */
    .vac-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px
    }

    .vac-card {
      border-radius: 22px;
      overflow: hidden;
      background: var(--white);
      border: 1.5px solid var(--border);
      transition: all .4s;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .vac-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(39, 61, 180, 0.14);
      border-color: var(--ocean2)
    }

    .vac-img {
      height: 220px;
      overflow: hidden;
      position: relative
    }

    .vac-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s
    }

    .vac-card:hover .vac-img img {
      transform: scale(1.06)
    }

    .vac-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      padding: 5px 14px;
      border-radius: 100px;
      background: var(--coral);
      font-size: 10px;
      color: #fff;
      font-weight: 700;
      letter-spacing: .05em;
    }

    .vac-body {
      padding: 24px
    }

    .vac-title {
      font-family: Georgia, serif;
      font-size: 21px;
      color: var(--charcoal);
      margin-bottom: 8px;
      font-weight: 700
    }

    .vac-desc {
      font-size: 13px;
      color: var(--mid);
      line-height: 1.65;
      margin-bottom: 20px;
      font-weight: 300
    }

    .vac-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 16px;
      border-top: 1px solid var(--border)
    }

    .vac-price {
      font-family: Georgia, serif;
      font-size: 26px;
      color: var(--ocean);
      font-weight: 700
    }

    .vac-from {
      font-size: 10px;
      color: var(--muted);
      display: block;
      margin-bottom: 2px
    }

    .vac-btn {
      padding: 9px 20px;
      border-radius: 100px;
      background: var(--ocean-light);
      border: 1.5px solid var(--border2);
      font-size: 12.5px;
      color: var(--ocean);
      font-weight: 600;
      transition: all .3s;
      cursor: pointer;
    }

    .vac-card:hover .vac-btn {
      background: var(--ocean);
      color: #fff;
      border-color: var(--ocean)
    }

    /* ===== HOTELS ===== */
    .hotels-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px
    }

    .hotel-card {
      padding: 18px;
      border-radius: 16px;
      background: var(--white);
      border: 1.5px solid var(--border);
      display: flex;
      align-items: center;
      gap: 14px;
      transition: all .35s;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    }

    .hotel-card:hover {
      border-color: var(--ocean2);
      transform: translateY(-4px);
      box-shadow: 0 14px 36px rgba(39, 61, 180, 0.1);
    }

    .hotel-logo {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--sky2), var(--sky));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 800;
      color: var(--ocean);
      flex-shrink: 0;
      border: 1.5px solid var(--border2);
    }

    .hotel-name {
      font-size: 13px;
      color: var(--charcoal);
      font-weight: 700;
      line-height: 1.4
    }

    .hotel-tier {
      font-size: 10.5px;
      color: var(--muted);
      margin-top: 3px
    }

    /* ===== CRUISES ===== */
    .cruise-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px
    }

    .cruise-card {
      border-radius: 22px;
      overflow: hidden;
      background: var(--white);
      border: 1.5px solid var(--border);
      transition: all .4s;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      display: flex;
    }

    .cruise-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 55px rgba(39, 61, 180, 0.12);
      border-color: var(--ocean2)
    }

    .cruise-img {
      width: 180px;
      flex-shrink: 0;
      overflow: hidden;
      position: relative
    }

    .cruise-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s
    }

    .cruise-card:hover .cruise-img img {
      transform: scale(1.06)
    }

    .cruise-body {
      padding: 26px;
      flex: 1
    }

    .cruise-route {
      font-family: Georgia, serif;
      font-size: 22px;
      color: var(--charcoal);
      margin-bottom: 8px;
      font-weight: 700
    }

    .cruise-meta {
      font-size: 13px;
      color: var(--mid);
      line-height: 1.65;
      margin-bottom: 18px;
      font-weight: 300
    }

    .cruise-footer {
      display: flex;
      justify-content: space-between;
      align-items: flex-end
    }

    .cruise-price {
      font-family: Georgia, serif;
      font-size: 28px;
      color: var(--ocean);
      font-weight: 700
    }

    .cruise-nights {
      font-size: 11px;
      color: var(--muted);
      margin-top: 3px
    }

    .cruise-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      border-radius: 100px;
      background: var(--ocean-light);
      border: 1.5px solid var(--border2);
      font-size: 11px;
      color: var(--ocean);
      letter-spacing: .04em;
      font-weight: 600;
    }

    /* ===== STATS ===== */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px
    }

    .stat-card {
      padding: 40px 28px;
      border-radius: 22px;
      background: var(--white);
      border: 1.5px solid var(--border);
      text-align: center;
      transition: all .4s;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--ocean), var(--coral));
      transform: scaleX(0);
      transition: transform .4s;
    }

    .stat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(39, 61, 180, 0.12)
    }

    .stat-card:hover::before {
      transform: scaleX(1)
    }

    .stat-big {
      font-family: Georgia, serif;
      font-size: 60px;
      color: var(--charcoal);
      line-height: 1;
      font-weight: 700;
    }

    .stat-big span {
      color: var(--ocean)
    }

    .stat-desc {
      font-size: 12px;
      color: var(--muted);
      margin-top: 10px;
      letter-spacing: .05em;
      font-weight: 500
    }

    /* ===== TESTIMONIALS ===== */
    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px
    }

    .test-card {
      padding: 32px;
      border-radius: 22px;
      background: var(--white);
      border: 1.5px solid var(--border);
      transition: all .4s;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    }

    .test-card::before {
      content: '"';
      position: absolute;
      top: -14px;
      right: 22px;
      font-family: Georgia, serif;
      font-size: 130px;
      color: var(--sky2);
      line-height: 1;
      pointer-events: none;
    }

    .test-card:hover {
      border-color: var(--ocean2);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(39, 61, 180, 0.1)
    }

    .test-stars {
      color: var(--coral);
      font-size: 14px;
      margin-bottom: 16px;
      letter-spacing: 3px
    }

    .test-text {
      font-family: Georgia, serif;
      font-size: 16px;
      color: var(--mid);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 22px
    }

    .test-divider {
      width: 30px;
      height: 2px;
      background: linear-gradient(90deg, var(--ocean), var(--coral));
      margin-bottom: 14px;
      border-radius: 2px
    }

    .test-author {
      font-size: 14px;
      color: var(--charcoal);
      font-weight: 700
    }

    .test-role {
      font-size: 12px;
      color: var(--muted);
      margin-top: 3px
    }

    .test-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--ocean), var(--ocean2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 16px;
    }

    /* ===== CONTACT STRIP ===== */
    .contact-strip {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      background: #F95CA4;
      border-top: none;
      border-bottom: none;
    }

    .cs-item {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 32px 56px;
      border-right: 1px solid rgba(255,255,255,0.2);
      transition: all .3s;
      cursor: pointer;
    }

    .cs-item:last-child {
      border-right: none
    }

    .cs-item:hover {
      background: rgba(255,255,255,0.12)
    }

    .cs-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(255,255,255,0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      backdrop-filter: blur(8px);
    }

    .cs-label {
      font-size: 11px;
      color: rgba(255,255,255,0.72);
      letter-spacing: .06em;
      margin-bottom: 4px;
      font-weight: 600;
      text-transform: uppercase
    }

    .cs-value {
      font-size: 16px;
      color: #ffffff;
      font-weight: 700
    }

    /* ===== CAR RENTAL ===== */
    .car-banner {
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      /* background: linear-gradient(120deg, var(--charcoal) 0%, var(--charcoal2) 60%, #1e1e40 100%); */
      background: linear-gradient(160deg, #1a0000 0%, #5a0000 50%, #9B0000 100%);
      display: flex;
      align-items: stretch;
      min-height: 320px;
    }

    .car-banner-img {
      width: 55%;
      position: relative;
      overflow: hidden;
    }

    .car-banner-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .8
    }

    .car-banner-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--charcoal), transparent);
    }

    .car-banner-content {
      flex: 1;
      padding: 52px;
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .car-title {
      font-family: Georgia, serif;
      font-size: 36px;
      color: #fff;
      font-weight: 700;
      margin-bottom: 16px;
      line-height: 1.2
    }

    .car-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 20px
    }

    .car-feat {
      display: flex;
      gap: 12px;
      align-items: center;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.72);
      font-weight: 300
    }

    .car-feat-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--coral);
      flex-shrink: 0
    }

    /* ===== GROUP TRAVEL ===== */
    .group-highlight {
      border-radius: 28px;
      overflow: hidden;
      background: var(--charcoal);
      display: flex;
      align-items: stretch;
      position: relative;
    }

    .group-img {
      width: 45%;
      overflow: hidden;
      position: relative
    }

    .group-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .85
    }

    .group-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent, var(--charcoal) 95%)
    }

    .group-content {
      flex: 1;
      padding: 56px;
      display: flex;
      flex-direction: column;
      justify-content: center
    }

    .group-stats {
      display: flex;
      gap: 44px;
      margin-bottom: 36px
    }

    .group-stat-item .group-n {
      font-family: Georgia, serif;
      font-size: 46px;
      color: var(--coral2);
      font-weight: 700;
      line-height: 1
    }

    .group-stat-item .group-l {
      font-size: 10.5px;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 5px;
      letter-spacing: .06em;
      font-weight: 600
    }

    .group-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px
    }

    .group-feat {
      display: flex;
      gap: 12px;
      align-items: center;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.68);
      font-weight: 300
    }

    .group-feat-icon {
      font-size: 16px;
      color: var(--ocean2)
    }

    /* ===== NEWSLETTER ===== */
    .newsletter-section {
      background: linear-gradient(135deg, var(--ocean) 0%, var(--charcoal2) 100%);
      padding: 88px 64px;
      position: relative;
      overflow: hidden;
    }

    .nl-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&q=60') center/cover;
      opacity: .07;
    }

    .nl-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .nl-title {
      font-family: Georgia, serif;
      font-size: 48px;
      color: #fff;
      margin-bottom: 14px;
      font-weight: 700;
      line-height: 1.1
    }

    .nl-title em {
      font-style: italic;
      font-weight: 500;
      background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845, #C50900, #F95CA4, #273DB4);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: footer-title-flow 3s linear infinite;
    }

    .nl-sub {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.65);
      max-width: 460px;
      line-height: 1.75;
      margin: 0 auto 36px;
      font-weight: 300
    }

    .nl-form {
      display: flex;
      gap: 0;
      max-width: 500px;
      margin: 0 auto
    }

    .nl-input {
      flex: 1;
      padding: 17px 24px;
      background: rgba(255, 255, 255, 0.1);
      border: 1.5px solid rgba(255, 255, 255, 0.25);
      border-right: none;
      border-radius: 100px 0 0 100px;
      font-size: 14.5px;
      color: #fff;
      font-family: 'Nunito', sans-serif;
      outline: none;
      transition: all .25s;
      backdrop-filter: blur(8px);
    }

    .nl-input::placeholder {
      color: rgba(255, 255, 255, 0.45)
    }

    .nl-input:focus {
      border-color: rgba(255, 255, 255, 0.5);
      background: rgba(255, 255, 255, 0.15)
    }

    .nl-btn {
      padding: 17px 34px;
      background: var(--coral);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .03em;
      border-radius: 0 100px 100px 0;
      cursor: pointer;
      transition: all .3s;
      border: none;
      font-family: 'Nunito', sans-serif;
      box-shadow: 0 6px 20px rgba(249, 92, 164, 0.4);
    }

    .nl-btn:hover {
      background: var(--coral2);
      box-shadow: 0 10px 30px rgba(249, 92, 164, 0.5)
    }

    .nl-note {
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.4);
      margin-top: 14px
    }

    /* ===== FOOTER ===== */
    .footer {
      background: #0A0A0A;
      padding: 72px 64px 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 56px;
      /* margin-bottom: 56px */
    }

    .footer-logo {
      font-family: Georgia, serif;
      font-size: 24px;
      color: #fff;
      margin-bottom: 14px;
      display: block;
      text-decoration: none;
      font-weight: 700;
    }

    .footer-logo span {
      color: var(--coral2)
    }

    .footer-logo-img-wrap {
      display: block;
      margin-bottom: 16px;
    }

    .footer-tagline {
      font-size: 13.5px;
      color: #fff;
      line-height: 1.8;
      margin-bottom: 26px;
      font-weight: 300
    }

    .footer-socials {
      display: flex;
      gap: 10px
    }

    .footer-partner-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      padding: 24px 0;
      flex-wrap: wrap;
    }
    .footer-partner-logo {
      height: 52px;
      width: 110px;
      object-fit: contain;
      background: rgba(255,255,255,0.96);
      border-radius: 10px;
      padding: 8px 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.25);
      transition: transform .2s, box-shadow .2s;
    }
    .footer-partner-logo:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    }
    .footer-partner-logo--transparent {
      background: transparent;
      box-shadow: none;
      padding: 0;
      filter: brightness(0) invert(1);
      opacity: 0.75;
      width: 140px;
      height: 52px;
      object-fit: contain;
    }
    .footer-partner-logo--transparent:hover {
      opacity: 1;
      box-shadow: none;
    }

    .social-btn {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: #fff;
      cursor: pointer;
      transition: all .25s;
      font-weight: 700;
      text-decoration: none;
    }

    .social-btn:hover {
      border-color: var(--ocean2);
      color: var(--ocean2);
      background: rgba(39, 61, 180, 0.15)
    }

    @keyframes footer-title-flow {
      0%   { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }
    .footer-col-title {
      font-size: 11px;
      letter-spacing: .14em;
      background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845, #C50900, #F95CA4, #273DB4);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: transparent;
      font-weight: 700;
      margin-bottom: 18px;
      text-transform: uppercase;
      animation: footer-title-flow 3s linear infinite;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 11px
    }

    .footer-link {
      font-size: 13.5px;
      color: #fff;
      cursor: pointer;
      transition: color .2s;
      text-decoration: none;
      font-weight: 300
    }

    .footer-link:hover {
      color: rgba(255, 255, 255, 0.7)
    }

    .footer-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.06);
      margin-bottom: 28px
    }

    .footer-bottom {
      /* display: flex; */
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      font-size: 14px;
      color: #fff;
      line-height: 1.6;
      text-align: center;
    }

    .footer-copy-link {
      color: #fff;
      text-decoration: none;
    }

    .footer-copy-link:hover {
      text-decoration: underline;
    }

    .footer-legal {
      display: none;
      gap: 24px
    }

    .footer-legal a {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.2);
      cursor: pointer;
      text-decoration: none;
      transition: color .2s
    }

    .footer-legal a:hover {
      color: var(--ocean2)
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .8s ease, transform .8s ease
    }

    .reveal.on {
      opacity: 1;
      transform: translateY(0)
    }

    .reveal-l {
      opacity: 0;
      transform: translateX(-36px);
      transition: opacity .8s ease, transform .8s ease
    }

    .reveal-l.on {
      opacity: 1;
      transform: translateX(0)
    }

    .reveal-r {
      opacity: 0;
      transform: translateX(36px);
      transition: opacity .8s ease, transform .8s ease
    }

    .reveal-r.on {
      opacity: 1;
      transform: translateX(0)
    }

    .reveal-s {
      opacity: 0;
      transform: scale(0.92);
      transition: opacity .8s ease, transform .8s ease
    }

    .reveal-s.on {
      opacity: 1;
      transform: scale(1)
    }

    /* Discount section */
    .disc-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px
    }

    .disc-card {
      padding: 34px;
      border-radius: 22px;
      background: var(--white);
      border: 1.5px solid var(--border);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      transition: all .4s;
    }

    .disc-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 18px 45px rgba(39, 61, 180, 0.1);
      border-color: var(--border2)
    }

    .disc-icon-box {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--ocean), var(--ocean2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
      box-shadow: 0 6px 16px rgba(39, 61, 180, 0.25);
    }

    .disc-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 10px
    }

    .disc-text {
      font-size: 13.5px;
      color: var(--mid);
      line-height: 1.75;
      font-weight: 300
    }

    .disc-points {
      margin-top: 18px;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .disc-pt {
      display: flex;
      gap: 10px;
      font-size: 13px;
      color: var(--mid);
      align-items: flex-start;
      font-weight: 300
    }

    .disc-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--ocean), var(--coral));
      flex-shrink: 0;
      margin-top: 6px
    }

    /* Quote block */
    .quote-block {
      margin: 52px 0 0;
      padding: 44px 52px;
      border-radius: 22px;
      background: linear-gradient(135deg, var(--sky), var(--sky2));
      border: 1.5px solid var(--border2);
      position: relative;
      overflow: hidden;
    }

    .quote-block::before {
      content: '"';
      font-family: Georgia, serif;
      font-size: 180px;
      color: var(--border2);
      position: absolute;
      top: -40px;
      left: 20px;
      line-height: 1;
      pointer-events: none;
    }

    .quote-text {
      font-family: Georgia, serif;
      font-size: 22px;
      color: var(--charcoal);
      line-height: 1.6;
      font-style: italic;
      position: relative;
      z-index: 1;
      margin-bottom: 16px
    }

    .quote-author {
      font-size: 13px;
      color: var(--ocean);
      font-weight: 700;
      letter-spacing: .03em
    }

    /* Section divider */
    .div-wave {
      overflow: hidden;
      display: none;
      line-height: 0;
      margin: -2px 0
    }

    .div-wave svg {
      display: block;
      width: 100%
    }

@keyframes slowZoom {
      from {
        transform: scale(1)
      }

      to {
        transform: scale(1.07)
      }
    }


/* ============================================================
   EMBEDDED BOOKING FORM  (scoped under .bkm-booking)
   Colors mapped to site palette — structure unchanged
   ============================================================ */

.bkm-form-section {
  background: var(--ivory);
  padding: 0 48px 80px;
  position: relative;
  z-index: 10;
}

.bkm-booking {
  width: 100%;
  max-width: calc(100% - 335px);
  margin: -40px auto 0;
  position: relative;
}

/* ── Service selector pill bar ── */
.bkm-booking .service-selector {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 7px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 4px 24px rgba(39,61,180,.10), inset 0 1px 0 rgba(255,255,255,.9);
}

.bkm-booking .service-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 30px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--mid);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.bkm-booking .service-btn:hover { color: #1a1a1a; background: rgba(0,0,0,.07); }
.bkm-booking .service-btn.active {
  background: linear-gradient(135deg, #0a0a0a 0%, #2e2e2e 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.12);
  transform: translateY(-1px);
}
.bkm-booking .service-btn .icon { font-size: 15px; display:inline-flex; align-items:center; color: inherit; animation: iconFloat 2.6s ease-in-out infinite; }
.bkm-booking .service-btn:nth-child(1) .icon { animation-delay: 0s; }
.bkm-booking .service-btn:nth-child(2) .icon { animation-delay: 0.45s; }
.bkm-booking .service-btn:nth-child(3) .icon { animation-delay: 0.9s; }
.bkm-booking .service-btn:nth-child(4) .icon { animation-delay: 1.35s; }
.bkm-booking .service-btn:nth-child(5) .icon { animation-delay: 1.8s; }
/* Active button — force white icon via color (currentColor in SVG uses color, not stroke CSS) */
.bkm-booking .service-btn.active { color: #ffffff; }
.bkm-booking .service-btn.active .icon { color: #ffffff; }
/* Global SVG icon sizing */
.svc-icon svg, .icon svg, .ic svg, .header-icon svg, .svc-tab-icon svg {
  display: block;
}
/* Services accordion tab icons — white on dark background */
.svc-item .svc-tab-icon { color: #ffffff; }
.svc-item .svc-tab-icon svg { color: #ffffff; }

/* ── Main card ── */
.bkm-booking .card {
  background: #fff;
  border-radius: 30px;
  box-shadow:
    0 2px 4px rgba(39,61,180,.04),
    0 8px 24px rgba(39,61,180,.09),
    0 32px 64px rgba(39,61,180,.10);
  overflow: hidden;
  border: 1px solid rgba(220,236,250,.75);
}

/* ── Card header ── */
.bkm-booking .card-header {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2e2e2e 100%);
  padding: 28px 32px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.bkm-booking .card-header::before {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
  top: -90px; right: 70px;
}
.bkm-booking .card-header::after {
  content: '';
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  bottom: -65px; right: -45px;
}
.bkm-booking .header-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 4px 14px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.3);
  flex-shrink: 0;
  position: relative; z-index: 1;
  color: #fff;
  animation: iconFloatSlow 3s ease-in-out infinite;
}
.bkm-booking .header-icon svg { stroke: #fff; }
.bkm-booking .header-text { position: relative; z-index: 1; }
.bkm-booking .header-text h1 {
  font-family: Georgia, serif;
  font-size: 20px; font-weight: 700; color: #fff;
  line-height: 1.2; letter-spacing: -.02em;
}
.bkm-booking .header-text p { font-size: 12.5px; color: rgba(255,255,255,.72); margin-top: 4px; }
.bkm-booking .header-badge {
  margin-left: auto;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 20px; white-space: nowrap;
  position: relative; z-index: 1;
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}

/* ── Progress bar ── */
.bkm-booking .progress-track {
  height: 3px; background: rgba(39,61,180,.08); overflow: hidden;
}
.bkm-booking .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #111, #555, #111);
  background-size: 200% 100%;
  transition: width .6s cubic-bezier(.4,0,.2,1);
  animation: bkmShimmer 2.8s linear infinite;
}
@keyframes bkmShimmer {
  0%   { background-position: 200% center }
  100% { background-position: -200% center }
}

/* ── Stepper ── */
.bkm-booking .stepper-wrap {
  padding: 20px 36px 0;
  background: linear-gradient(180deg, #f0f0ff 0%, #fff 100%);
  border-bottom: 1px solid var(--border);
}
.bkm-booking .stepper { display: flex; align-items: flex-start; }
.bkm-booking .step-item {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; position: relative;
}
.bkm-booking .step-item:not(:last-child)::after {
  content: ''; position: absolute;
  top: 15px; left: 55%; width: 90%; height: 1.5px;
  background: var(--border); z-index: 0; transition: background .4s;
}
.bkm-booking .step-item.done:not(:last-child)::after {
  background: linear-gradient(90deg, var(--ocean), rgba(39,61,180,.35));
}
.bkm-booking .step-circle {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--border);
  background: radial-gradient(circle at 35% 30%, #fff, #eef0ff);
  box-shadow: 0 2px 6px rgba(0,0,0,.10), inset 0 1px 2px rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--mid);
  z-index: 1; position: relative;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
.bkm-booking .step-item.active .step-circle {
  border-color: #1a1a1a;
  background: radial-gradient(circle at 35% 30%, #444, #111);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.40), inset 0 1px 2px rgba(255,255,255,.2);
  transform: scale(1.1);
}
.bkm-booking .step-item.done .step-circle {
  border-color: #1a1a1a;
  background: radial-gradient(circle at 35% 30%, #444, #111);
  color: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.30);
}
.bkm-booking .step-label {
  font-size: 10px; font-weight: 600; color: var(--mid);
  margin-top: 6px; text-align: center; padding-bottom: 12px; letter-spacing: .01em;
}
.bkm-booking .step-item.active .step-label { color: #1a1a1a; }
.bkm-booking .step-item.done  .step-label { color: #1a1a1a; }

/* ── Form body & step visibility ── */
.bkm-booking .form-body { padding: 28px 36px 36px; }
.bkm-booking .service-form { display: none; }
.bkm-booking .service-form.active { display: block; }
/* padding:0 overrides the global .section { padding:100px 64px } bleed */
.bkm-booking .section { display: none; padding: 0; }
.bkm-booking .section.active {
  display: block;
  padding: 0;
  animation: bkmSlideIn .3s cubic-bezier(.4,0,.2,1);
}
@keyframes bkmSlideIn {
  from { opacity: 0; transform: translateX(20px) }
  to   { opacity: 1; transform: translateX(0) }
}

/* ── Section heading ── */
.bkm-booking .section-heading {
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--ocean);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.bkm-booking .section-heading::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0;
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--ocean), transparent);
  border-radius: 2px;
}
.bkm-booking .section-heading .ic {
  width: 26px; height: 26px;
  background: var(--sky); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(39,61,180,.15);
}

/* ── Grid rows & fields ── */
.bkm-booking .row { display: grid; gap: 16px; margin-bottom: 16px; }
.bkm-booking .row.col2 { grid-template-columns: 1fr 1fr; }
.bkm-booking .row.col3 { grid-template-columns: 1fr 1fr 1fr; }
.bkm-booking .row.col4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
.bkm-booking .row.col1 { grid-template-columns: 1fr; }
.bkm-booking .field { display: flex; flex-direction: column; gap: 6px; }

.bkm-booking label {
  font-size: 11px; font-weight: 600; color: var(--mid);
  letter-spacing: .05em; text-transform: uppercase;
}
.bkm-booking label .req { color: var(--coral); margin-left: 2px; }

.bkm-booking input[type=text],
.bkm-booking input[type=email],
.bkm-booking input[type=date],
.bkm-booking input[type=number],
.bkm-booking input[type=tel],
.bkm-booking select,
.bkm-booking textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 13.5px; color: var(--charcoal);
  background: var(--sky);
  border: 1.5px solid var(--border);
  border-radius: 13px;
  padding: 10px 13px; width: 100%;
  outline: none; transition: all .2s; -webkit-appearance: none;
  box-shadow: inset 0 1px 3px rgba(39,61,180,.06);
}
.bkm-booking input:focus,
.bkm-booking select:focus,
.bkm-booking textarea:focus {
  border-color: var(--ocean); background: #fff;
  box-shadow: 0 0 0 3px rgba(39,61,180,.12), inset 0 1px 2px rgba(39,61,180,.04);
}
.bkm-booking input::placeholder { color: var(--muted); }
.bkm-booking textarea { resize: none; height: 85px; }

.bkm-booking .phone-row { display: flex; gap: 8px; }
.bkm-booking .flag-select {
  flex-shrink: 0;
  font-family: 'Nunito', sans-serif; font-size: 13px;
  background: var(--sky); border: 1.5px solid var(--border);
  border-radius: 13px; padding: 10px 10px;
  cursor: pointer; outline: none; color: var(--charcoal);
  transition: all .2s; box-shadow: inset 0 1px 3px rgba(39,61,180,.06);
}
.bkm-booking .flag-select:focus { border-color: var(--ocean); }

/* Airport autocomplete dropdown */
.airport-dropdown {
  position: absolute;
  top: calc(100% + 3px);
  left: 0; right: 0;
  background: #fff;
  border: 1.5px solid var(--ocean);
  border-radius: 13px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 400;
  box-shadow: 0 8px 28px rgba(39,61,180,.18);
  display: none;
}
.airport-dropdown.open { display: block; }
.airport-opt {
  padding: 9px 14px;
  cursor: pointer;
  font-size: 13px;
  color: var(--charcoal);
  border-bottom: 1px solid #f0f2fb;
  line-height: 1.4;
}
.airport-opt:last-child { border-bottom: none; }
.airport-opt:hover, .airport-opt.ac-active { background: var(--sky); }
.airport-opt .ac-code {
  font-weight: 700;
  color: var(--ocean);
  margin-right: 6px;
  font-size: 12px;
  letter-spacing: .5px;
}

.bkm-booking .info-box {
  background: linear-gradient(135deg, var(--sand), var(--sand2));
  border: 1px solid var(--coral2); border-radius: 13px;
  padding: 12px 14px; font-size: 11.5px; color: var(--charcoal);
  display: flex; align-items: flex-start; gap: 8px; margin-top: 4px;
  box-shadow: 0 2px 8px rgba(237,120,69,.15);
}
.bkm-booking .info-box .ico { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.bkm-booking .disclaimer { font-size: 10.5px; color: var(--muted); line-height: 1.7; margin-top: 14px; }

/* ── Buttons ── */
.bkm-booking .btn-row {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: 24px; gap: 10px;
}
.bkm-booking .step-counter { font-size: 11px; color: var(--mid); font-weight: 500; }

.bkm-booking .btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px; border-radius: 13px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer; border: none;
  transition: all .2s cubic-bezier(.4,0,.2,1); letter-spacing: .01em;
}
.bkm-booking .btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border); color: var(--mid);
  box-shadow: 0 1px 3px rgba(39,61,180,.08);
}
.bkm-booking .btn-ghost:hover {
  border-color: var(--ocean); color: var(--ocean);
  background: var(--sky); box-shadow: 0 2px 8px rgba(39,61,180,.12);
}
.bkm-booking .btn-next {
  background: linear-gradient(135deg, #0a0a0a 0%, #2e2e2e 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.35), 0 1px 3px rgba(0,0,0,.2),
              inset 0 1px 0 rgba(255,255,255,.12);
}
.bkm-booking .btn-next:hover {
  background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
  box-shadow: 0 8px 26px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.2),
              inset 0 1px 0 rgba(255,255,255,.12);
  transform: translateY(-2px);
}
.bkm-booking .btn-next:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(0,0,0,.3); }

.bkm-booking .btn-submit {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #333 100%);
  color: #fff; padding: 13px 32px;
  font-size: 14px; font-weight: 700; border-radius: 13px;
  box-shadow: 0 6px 22px rgba(0,0,0,.40), 0 2px 8px rgba(0,0,0,.2),
              inset 0 1px 0 rgba(255,255,255,.15);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif; cursor: pointer; border: none;
  transition: all .2s cubic-bezier(.4,0,.2,1); letter-spacing: .01em;
}
.bkm-booking .btn-submit:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,.50), 0 4px 12px rgba(0,0,0,.25),
              inset 0 1px 0 rgba(255,255,255,.15);
  transform: translateY(-2px);
}
.bkm-booking .btn-submit:active { transform: translateY(0); box-shadow: 0 4px 12px rgba(0,0,0,.35); }

/* ── Success state ── */
.bkm-booking .success-wrap { text-align: center; padding: 44px 20px; }
.bkm-booking .success-ring {
  width: 72px; height: 72px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--ivory), var(--sky));
  border: 2px solid rgba(39,61,180,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(39,61,180,.18), 0 2px 6px rgba(0,0,0,.06),
              inset 0 1px 2px rgba(255,255,255,.9);
  animation: bkmPop .4s cubic-bezier(.4,0,.2,1);
}
@keyframes bkmPop {
  from { transform: scale(.5); opacity: 0 }
  to   { transform: scale(1);  opacity: 1 }
}
.bkm-booking .success-wrap h2 {
  font-family: Georgia, serif;
  font-size: 22px; font-weight: 700; color: var(--charcoal);
  margin-bottom: 10px; letter-spacing: -.02em;
}
.bkm-booking .success-wrap p {
  font-size: 13.5px; color: var(--mid); line-height: 1.7;
  max-width: 340px; margin: 0 auto 24px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .bkm-booking .row.col4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .bkm-form-section { padding: 0 16px 60px; }
  .bkm-booking { margin-top: 0; }
  .bkm-booking .row.col4,
  .bkm-booking .row.col3,
  .bkm-booking .row.col2 { grid-template-columns: 1fr; }
  .bkm-booking .card-header { padding: 20px 20px 18px; }
  .bkm-booking .form-body { padding: 20px 20px 24px; }
  .bkm-booking .stepper-wrap { padding: 16px 20px 0; }
  .bkm-booking .header-badge { display: none; }
  .bkm-booking .service-selector { gap: 4px; padding: 5px; }
  .bkm-booking .service-btn { padding: 8px 11px; font-size: 12px; }
}


/* ================================================================
   SERVICES ACCORDION  (horizontal expand / vertical tabs)
   ================================================================ */

.svc-section {
  /* background: var(--charcoal); */
  background: #fff;
  padding: 80px 0 88px;
  overflow: hidden;
}

/* ── Accordion container ── */
.svc-accordion {
  display: flex;
  height: 560px;
  padding: 0 48px;
  gap: 10px;
  max-width: 1600px;
  margin: 0 auto;
}

/* ── Each service item ── */
.svc-item {
  flex: 0 0 66px;
  border-radius: 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    flex 0.68s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
}
.svc-item:hover:not(.active) { box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.svc-item.active {
  flex: 1;
  box-shadow: 0 18px 60px rgba(39,61,180,.16), 0 4px 18px rgba(0,0,0,.06);
}

/* Per-service rich gradient backgrounds */
.svc-item[data-theme="flights"]  { background: linear-gradient(160deg, #0d1230 0%, #1a2870 50%, #273DB4 100%); }
.svc-item[data-theme="hotels"]   { background: linear-gradient(160deg, #1a0000 0%, #5a0000 50%, #9B0000 100%); }
.svc-item[data-theme="cars"]     { background: linear-gradient(160deg, #08080e 0%, #0f0f1c 50%, #1a1a30 100%); }
.svc-item[data-theme="vacation"] { background: linear-gradient(160deg, #2a0414 0%, #5c0a2e 50%, #911450 100%); }
.svc-item[data-theme="cruises"]  { background: linear-gradient(160deg, #1c0900 0%, #4d2200 50%, #7D3512 100%); }
.svc-item[data-theme="groups"]   { background: linear-gradient(160deg, #100620 0%, #2e1258 50%, #4F1A84 100%); }

/* All items have white text — backgrounds are all dark */
.svc-item .svc-tab-label { color: #fff; }
.svc-item .svc-tab-icon svg { color: #ffffff; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2)); }

/* ── Collapsed vertical tab ── */
.svc-tab {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 1;
  transition: opacity 0.22s ease;
}
.svc-item.active .svc-tab { opacity: 0; pointer-events: none; }

.svc-tab-icon { display:flex; align-items:center; justify-content:center; line-height: 1; }

.svc-tab-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: .04em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-orientation: mixed;
  white-space: nowrap;
}

/* ── Expanded content panel ── */
.svc-panel {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 64px 0 56px;
  gap: 56px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease 0.22s, visibility 0.45s ease 0.22s;
  pointer-events: none;
}
.svc-item.active .svc-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ── Left text panel ── */
.svc-text { flex: 1; min-width: 0; }

.svc-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
/* Badge colors — frosted white on all dark gradient items */
.svc-item .svc-badge {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.22);
}

.svc-title-lg {
  font-family: Georgia, serif;
  font-size: 48px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.svc-title-lg em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845, #C50900, #F95CA4, #273DB4);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: footer-title-flow 3s linear infinite;
}

.svc-body {
  font-size: 15.5px;
  color: #fff;
  line-height: 1.78;
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 370px;
}

/* CTA button — frosted glass pill on dark gradient items */
.svc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .02em;
  border: 1.5px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all .32s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.svc-btn:hover {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.55);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
/* Per-theme solid hover accent */
.svc-item[data-theme="flights"]  .svc-btn:hover { background: #273DB4; border-color: #273DB4; box-shadow: 0 10px 28px rgba(39,61,180,.5); }
.svc-item[data-theme="hotels"]   .svc-btn:hover { background: #C50900; border-color: #C50900; box-shadow: 0 10px 28px rgba(197,9,0,.5); }
.svc-item[data-theme="cars"]     .svc-btn:hover { background: rgba(255,255,255,0.3); }
.svc-item[data-theme="vacation"] .svc-btn:hover { background: #F95CA4; border-color: #F95CA4; box-shadow: 0 10px 28px rgba(249,92,164,.5); }
.svc-item[data-theme="cruises"]  .svc-btn:hover { background: #ED7845; border-color: #ED7845; box-shadow: 0 10px 28px rgba(237,120,69,.5); }
.svc-item[data-theme="groups"]   .svc-btn:hover { background: var(--coral); border-color: var(--coral); box-shadow: 0 10px 28px rgba(249,92,164,.45); }

/* ── Right image panel ── */
.svc-photo {
  flex: 0 0 48%;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.14), 0 6px 20px rgba(0,0,0,.08);
}
.svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
}
.svc-item.active .svc-photo:hover img { transform: scale(1.04); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .svc-accordion { height: 480px; }
  .svc-title-lg  { font-size: 38px; }
  .svc-panel     { padding: 0 36px 0 40px; gap: 32px; }
  .svc-photo     { flex-basis: 44%; height: 360px; }
}
@media (max-width: 800px) {
  .svc-section   { padding: 52px 0 60px; }
  .svc-accordion { flex-direction: column; height: auto; padding: 0 16px; gap: 8px; }
  .svc-item      { flex: none !important; border-radius: 18px; overflow: hidden; }

  /* collapsed: show as horizontal pill */
  .svc-tab { flex-direction: row; padding: 18px 20px; position: static; gap: 10px; }
  .svc-tab-label { writing-mode: horizontal-tb; transform: none; font-size: 14px; }
  .svc-item.active .svc-tab { display: none; }

  .svc-panel {
    opacity: 1; visibility: visible; pointer-events: auto;
    flex-direction: column-reverse; padding: 20px;
    gap: 20px; display: none;
  }
  .svc-item.active .svc-panel { display: flex; }
  .svc-item:not(.active) .svc-panel { display: none; }

  .svc-photo { flex: none; width: 100%; height: 220px; }
  .svc-title-lg { font-size: 30px; }
  .svc-body  { font-size: 14px; max-width: 100%; margin-bottom: 22px; }
}

/* ================================================================
   DARK SECTION OVERRIDES
   All .section-dark sections — white text, coral accents
   ================================================================ */

/* Headings & body text */
.section-dark .section-title      { color: #ffffff; }
.section-dark .section-sub        { color: rgba(255,255,255,0.55); }
.section-dark .eyebrow            { color: var(--coral); }
.section-dark .eyebrow::before    { background: linear-gradient(90deg, var(--coral), transparent); }

/* Hotel section — white cards float on dark; logo keeps palette */
.section-dark .hotel-logo         { background: linear-gradient(135deg, #1e2a7a, #273DB4); color: #fff; }
.section-dark .hotel-tier         { color: rgba(255,255,255,0.45); }

/* Hotel card hover — subtle glow on dark */
.section-dark .hotel-card:hover   { box-shadow: 0 14px 40px rgba(39,61,180,0.35); border-color: var(--ocean2); }

/* Vacation cards on dark — tags stay coral */
.section-dark .vac-card           { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.section-dark .vac-card:hover     { box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.section-dark .vac-price          { color: var(--coral2); }
.section-dark .vac-btn            { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.75); }
.section-dark .vac-card:hover .vac-btn { background: var(--coral); color: #fff; border-color: var(--coral); }

/* Car section — banner sits elevated on dark */
.section-dark .car-title          { color: #fff; }
.section-dark .car-banner         { box-shadow: 0 20px 60px rgba(0,0,0,0.5); }

/* Testimonials on dark */
.section-dark .test-stars         { color: var(--coral); }
.section-dark .test-card:hover    { box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.12); }
.section-dark .test-divider       { background: linear-gradient(90deg, var(--coral), transparent); }

/* Airline chips on dark bg */
.section-dark .airline-chip       { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.65); }
.section-dark .airline-chip:hover { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.28); }
.section-dark .airline-chip-icon  { background: rgba(255,255,255,0.1); }
.section-dark .marquee-fade::before { background: linear-gradient(90deg, var(--charcoal), transparent); }
.section-dark .marquee-fade::after  { background: linear-gradient(-90deg, var(--charcoal), transparent); }

/* Booking form is on light bg — no dark overrides needed */

/* ── Royal blue signature section ── */
.section-ocean {
  /* background: linear-gradient(140deg, #111a55 0%, #1a2a88 40%, #273DB4 100%); */
  background: linear-gradient(160deg, #2a0414 0%, #5c0a2e 50%, #911450 100%);
  color: #fff;
}
.section-ocean .section-title { color: #fff; }
.section-ocean .eyebrow { color: rgba(255,255,255,0.75); }
.section-ocean .eyebrow::before { background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent); }
/* Airline chips on ocean bg */
.section-ocean .airline-chip {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
}
.section-ocean .airline-chip:hover { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.4); }
.section-ocean .airline-chip-icon { background: rgba(255,255,255,0.12); }
/* .section-ocean .marquee-fade::before { background: linear-gradient(90deg, #1a2a88, transparent); }
.section-ocean .marquee-fade::after  { background: linear-gradient(-90deg, #1a2a88, transparent); } */
/* Stat cards float on ocean bg */
.section-ocean .stat-card {
  background: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.section-ocean .stat-card:hover { box-shadow: 0 22px 54px rgba(0,0,0,0.38); transform: translateY(-8px); }
.section-ocean .stat-big { color: var(--charcoal); }
.section-ocean .stat-big span { color: var(--ocean); }

/* ── Vivid red signature section ── */
.section-red {
  background: linear-gradient(140deg, #7a0000 0%, #a80000 40%, #C50900 100%);
  color: #fff;
}
.section-red .section-title      { color: #ffffff; }
.section-red .section-sub        { color: rgba(255,255,255,0.6); }
.section-red .eyebrow            { color: rgba(255,255,255,0.85); }
.section-red .eyebrow::before    { background: linear-gradient(90deg, rgba(255,255,255,0.55), transparent); }
.section-red .test-stars         { color: var(--coral2); }
.section-red .test-card          { box-shadow: 0 4px 24px rgba(0,0,0,0.28); border-color: rgba(255,255,255,0.12); }
.section-red .test-card:hover    { box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.22); }
.section-red .test-divider       { background: linear-gradient(90deg, rgba(255,255,255,0.45), transparent); }


.claming-bg-adj{
  background:radial-gradient(ellipse at 20% 50%, rgba(39, 61, 180, 0.2) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(249, 92, 164, 0.15) 0%, transparent 60%);
}
/* ================================================================
   HAMBURGER BUTTON & MOBILE MENU
   ================================================================ */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  transition: all .3s;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.nav.scrolled .nav-hamburger {
  background: var(--sky);
  border-color: var(--border);
}
.nav.scrolled .nav-hamburger span { background: var(--charcoal); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-in menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: right .38s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 48px rgba(0,0,0,0.18);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,10,20,0.55);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s;
  backdrop-filter: blur(2px);
}
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-header .nav-logo { font-size: 18px; }
.mobile-menu-close {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--sky);
  border: 1px solid var(--border);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  transition: all .2s;
  flex-shrink: 0;
}
.mobile-menu-close:hover { background: var(--coral); color: #fff; border-color: var(--coral); }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  transition: all .2s;
}
.mobile-menu-link:hover { background: var(--sky); color: var(--ocean); }

.mobile-menu-contact {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--sky);
  border: 1px solid var(--border);
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  transition: all .2s;
}
.mobile-menu-contact-item:hover { background: var(--ocean); color: #fff; border-color: var(--ocean); }

/* ================================================================
   TABLET RESPONSIVE (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  /* Nav */
  .nav { padding: 0 32px; }
  .nav-links { gap: 18px; }
  .nav-link { font-size: 12.5px; }
  .nav-contact { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero-inner { padding: 0 32px; gap: 36px; }
  .hero-title { font-size: 48px; }
  .hero-stats { flex-wrap: wrap; gap: 10px; }
  .hero-stat-card { width: 140px; }

  /* Booking form */
  .bkm-booking { max-width: 100%; }

  /* Sections */
  .section { padding: 80px 32px; }
  .bkm-form-section { padding: 0 32px 80px; }

  /* About */
  .arv-stats { grid-template-columns: repeat(2, 1fr); }
  .arv-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer { padding: 60px 32px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ================================================================
   MOBILE RESPONSIVE (≤ 768px)
   ================================================================ */
@media (max-width: 768px) {
  /* ── NAV ── */
  .nav { padding: 0 16px; height: 62px; }
  .nav-links { display: none; }
  .nav-contact { display: none; }
  .nav-hamburger { display: flex; }

  /* ── HERO ── */
  .hero-inner {
    padding: 0 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding-top: 76px;
    padding-bottom: 40px;
  }
  .hero-content { max-width: 100%; }
  .hero-eyebrow { font-size: 9.5px; margin-top: 0; padding: 6px 14px; }
  .hero-title { font-size: 34px; line-height: 1.1; }
  .hero-title span { font-size: 30px !important; }
  .hero-sub { font-size: 14px; max-width: 100%; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: 14px 24px; }
  .hero-trust { flex-direction: column; gap: 12px; margin-top: 28px; }
  .hero-trust-item[style] { border-left: none !important; padding-left: 0 !important; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }
  .hero-stat-card { width: 100%; padding: 16px 14px; }

  /* ── BOOKING FORM ── */
  .bkm-form-section { padding: 0 10px 60px; }
  .bkm-booking { max-width: 100%; margin-top: 0; }

  /* ── GLOBAL SECTIONS ── */
  .section { padding: 56px 16px; }
  .flex-between { flex-direction: column; gap: 14px; margin-bottom: 32px; }
  .section-title { font-size: 28px; }
  .section-title-white { font-size: 28px; }
  .section-sub { max-width: 100%; font-size: 14px; }

  /* ── SERVICES ACCORDION — force vertical already handled but patch padding ── */
  .svc-section { padding: 40px 0 48px; }
  .svc-accordion { padding: 0 10px; }

  /* ── DESTINATIONS GRID ── */
  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .dest-card:first-child { grid-row: span 1; }
  .dest-grid .dest-card { height: 190px; }
  .dest-name { font-size: 20px; }
  .dest-card:first-child .dest-name { font-size: 22px; }
  .dest-hover-grid { grid-template-columns: 1fr; }
  .dest-hover-grid .arv-card { height: 280px; }
  .dest-hover-grid .arv-card-reveal { height: 70%; }

  /* ── AIRLINES MARQUEE SECTION ── */
  .section-ocean .max-w,
  .section-dark .max-w { padding: 0 16px !important; }

  /* ── ABOUT ── */
  .about-revamp { padding-top: 56px; padding-bottom: 60px; }
  .arv-header { margin-bottom: 40px; }
  .arv-title { font-size: 28px; }
  .arv-desc { font-size: 14px; }
  .arv-stats { grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 36px; }
  .arv-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; }
  .arv-card { height: 220px; }
  .arv-logo-marquee-wrap::before,
  .arv-logo-marquee-wrap::after { width: 48px; }
  .arv-mission { padding: 28px 20px; border-radius: 18px; }
  .arv-disc-layout { flex-direction: column; gap: 32px; }
  .arv-disc-left { width: 100%; }
  .arv-disc-title { font-size: 24px; }
  .arv-disc-right { padding-left: 44px; }

  /* ── VACATIONS ── */
  .vac-grid { grid-template-columns: 1fr; }

  /* ── CAR RENTAL ── */
  .car-banner { flex-direction: column-reverse; min-height: auto; border-radius: 18px; }
  .car-banner-img { width: 100%; height: 180px; }
  .car-banner-img::after { background: linear-gradient(to top, #1a0000, transparent); }
  .car-banner-content { padding: 24px 20px 28px; }
  .car-title { font-size: 26px; }

  /* ── CRUISES ── */
  .cruise-grid { grid-template-columns: 1fr; }
  .cruise-card { flex-direction: column; }
  .cruise-img { width: 100%; height: 190px; flex-shrink: 0; }
  .cruise-route { font-size: 18px; }

  /* ── STATS ── */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-big { font-size: 44px; }
  .stat-card { padding: 28px 18px; }

  /* ── GROUP TRAVEL ── */
  .group-highlight { flex-direction: column; border-radius: 18px; }
  .group-img { width: 100%; height: 200px; flex-shrink: 0; }
  .group-img::after { background: linear-gradient(to top, var(--charcoal) 10%, transparent 80%); }
  .group-content { padding: 24px 20px 28px; }
  .group-stats { gap: 20px; flex-wrap: wrap; }
  .group-stat-item .group-n { font-size: 34px; }

  /* ── TESTIMONIALS ── */
  .test-grid { grid-template-columns: 1fr; }

  /* ── CONTACT STRIP ── */
  .contact-strip { flex-direction: column; }
  .cs-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    width: 100%;
    padding: 20px 24px;
    justify-content: center;
    text-align: center;
  }
  .cs-item:last-child { border-bottom: none; }

  /* ── NEWSLETTER ── */
  .newsletter-section { padding: 56px 16px; }
  .nl-title { font-size: 30px; }
  .nl-sub { font-size: 14px; }
  .nl-form { flex-direction: column; max-width: 100%; gap: 8px; }
  .nl-input {
    border-right: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 100px;
  }
  .nl-btn { border-radius: 100px; padding: 15px 28px; }

  /* ── FOOTER ── */
  .footer { padding: 48px 16px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { flex-wrap: wrap; gap: 14px; }
}

/* ================================================================
   SMALL MOBILE (≤ 480px)
   ================================================================ */
@media (max-width: 480px) {
  /* Hero */
  .hero-title { font-size: 28px; }
  .hero-title span { font-size: 25px !important; }
  .hero-stats { grid-template-columns: 1fr 1fr; }

  /* About */
  .arv-stats { grid-template-columns: 1fr; }
  .arv-title { font-size: 24px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; }
  .stat-big { font-size: 52px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }

  /* Destinations */
  .dest-grid .dest-card { height: 170px; }

  /* Section titles */
  .section-title { font-size: 24px; }
  .section-title-white { font-size: 24px; }
  .nl-title { font-size: 26px; }

  /* Contact strip */
  .cs-icon { width: 44px; height: 44px; font-size: 18px; }
  .cs-value { font-size: 14px; }

  /* Nav padding fix */
  .nav { padding: 0 14px; }
}

/* ================================================================
   MULTI-CITY FLIGHT LEGS
   ================================================================ */
.btn-add-flight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 2px dashed var(--ocean);
  color: var(--ocean);
  font-family: 'Nunito', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 13px;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.btn-add-flight:hover {
  background: var(--ocean);
  color: #fff;
}
.f-flight-leg {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 16px 16px 10px;
  margin-bottom: 12px;
  background: var(--sky);
  position: relative;
}
.f-flight-leg .leg-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 10px;
}
.btn-remove-leg {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #E24B4A;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  font-weight: 700;
}
.btn-remove-leg:hover { opacity: .7; }

/* ================================================================
   FORM VALIDATION ERRORS
   ================================================================ */
.bkm-booking .field .field-err {
  display: none;
  font-size: 11.5px;
  color: #E24B4A;
  margin-top: 5px;
  font-weight: 600;
}
.bkm-booking .field.has-error .field-err { display: block; }
.bkm-booking .field.has-error input,
.bkm-booking .field.has-error textarea {
  border-color: #E24B4A !important;
  box-shadow: 0 0 0 3px rgba(226,75,74,.13) !important;
}
.bkm-booking .field.has-error .csel-btn {
  border-color: #E24B4A !important;
  box-shadow: 0 0 0 3px rgba(226,75,74,.13) !important;
}

/* ================================================================
   CUSTOM SELECT DROPDOWN
   ================================================================ */
.bkm-booking .csel-wrap {
  position: relative;
  width: 100%;
}
.bkm-booking .csel-wrap > select {
  display: none !important;
}
.bkm-booking .csel-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 13.5px;
  color: var(--charcoal);
  background: var(--sky);
  border: 1.5px solid var(--border);
  border-radius: 13px;
  padding: 10px 13px;
  width: 100%;
  cursor: pointer;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  box-shadow: inset 0 1px 3px rgba(39,61,180,.06);
  text-align: left;
  user-select: none;
}
.bkm-booking .csel-btn:hover,
.bkm-booking .csel-btn.open {
  border-color: var(--ocean);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(39,61,180,.12), inset 0 1px 2px rgba(39,61,180,.04);
}
.bkm-booking .csel-label {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--charcoal);
}
.bkm-booking .csel-label.placeholder {
  color: var(--muted);
}
.bkm-booking .csel-caret {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  transition: transform .2s;
  color: var(--muted);
}
.bkm-booking .csel-btn.open .csel-caret {
  transform: rotate(180deg);
}
.bkm-booking .csel-list {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 13px;
  box-shadow: 0 8px 28px rgba(0,0,0,.13);
  max-height: 220px;
  overflow-y: auto;
  z-index: 99999;
  padding: 5px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.bkm-booking .csel-list::-webkit-scrollbar { width: 5px; }
.bkm-booking .csel-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.bkm-booking .csel-list.open {
  display: block;
}
.bkm-booking .csel-opt {
  padding: 9px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 13.5px;
  color: var(--charcoal);
  cursor: pointer;
  transition: background .12s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bkm-booking .csel-opt:hover {
  background: var(--sky);
}
.bkm-booking .csel-opt.selected {
  color: var(--ocean);
  font-weight: 700;
}
.bkm-booking .csel-group {
  padding: 8px 14px 4px;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: .4px;
  border-top: 1px solid var(--border);
  margin-top: 3px;
  cursor: default;
  pointer-events: none;
}
.bkm-booking .csel-list .csel-group:first-child {
  border-top: none;
  margin-top: 0;
}
