﻿    @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&display=swap');/* ═════════════════════════════════════════════
﻿    ══
       TOKENS
    ═══════════════════════════════════════════════ */
    :root {
      --navy:      #1a1f4e;
      --navy-d:    #10143a;
      --gold:      #c9a84c;
      --gold-l:    #dfc06e;
      --gold-dim:  rgba(201,168,76,.15);
      --bg:        #f8f6f0;
      --bg-d:      #eeebe2;
      --white:     #ffffff;
      --gray:      #6b6b7a;
      --border:    #e0dbd0;
      --dark:      #0e1130;

      --nav-h:     72px;
      --radius:    6px;
      --shadow-sm: 0 2px 12px rgba(26,31,78,.07);
      --shadow-md: 0 8px 32px rgba(26,31,78,.12);
      --transition: .25s cubic-bezier(.4,0,.2,1);
    }

    /* ═══════════════════════════════════════════════
       RESET
    ═══════════════════════════════════════════════ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html {
      scroll-behavior: auto;
      font-size: 16px;
      overflow-x: hidden;
      width: 100%;
    }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--navy);
      overflow-x: hidden;
      width: 100%;
    }

    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    ul { list-style: none; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
    }

    /* ═══════════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════════ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      width: 100%;
      z-index: 9999;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      padding: 24px 60px;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border: none;
      box-shadow: none;
    }

    /* ── Inner layout ── */
    .navbar__inner {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    /* ── Logo ── */
    .navbar__logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }
    .navbar__logo img {
      height: 72px;
      width: auto;
      object-fit: contain;
      background: transparent;
      mix-blend-mode: multiply;
    }

    /* ── Desktop nav links ── */
    .navbar__links {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .navbar__links li a {
        font-family: 'Josefin Sans', sans-serif;
      position: relative;
      display: inline-block;
      padding: 6px 14px;
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: white;
      border-radius: var(--radius);
      transition: color var(--transition), background var(--transition);
    }

    /* animated underline */
    .navbar__links li a::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 14px; right: 14px;
      height: 1.5px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .28s cubic-bezier(.4,0,.2,1);
      border-radius: 2px;
    }
    .navbar__links li a:hover,
    .navbar__links li a.active {
      color: var(--gold);
    }
    .navbar__links li a:hover::after,
    .navbar__links li a.active::after {
      transform: scaleX(1);
    }

    /* ── CTA button ── */
    .btn-nav-cta {
        font-family: 'Josefin Sans', sans-serif;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 22px;
      background: var(--gold);
      color: var(--navy) !important;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      border-radius: var(--radius);
      border: 2px solid var(--gold);
      transition:
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
      white-space: nowrap;
    }
    .btn-nav-cta:hover {
      background: transparent;
      color: var(--gold) !important;
      box-shadow: 0 4px 20px rgba(201,168,76,.35);
      transform: translateY(-1px);
    }
    /* hide the CTA underline pseudo element */
    .navbar__links li a.btn-nav-cta::after { display: none; }

    /* ── Hamburger ── */
    .navbar__hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      padding: 6px;
      border-radius: var(--radius);
      transition: background var(--transition);
      flex-shrink: 0;
    }
    .navbar__hamburger:hover { background: var(--gold-dim); }
    .navbar__hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: white;
      border-radius: 2px;
      transition: transform .3s ease, opacity .3s ease, width .3s ease;
      transform-origin: center;
    }

    /* Open state */
    .navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Mobile drawer ── */
    .navbar__drawer {
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      background: rgba(248, 246, 240, .98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 20px 5% 28px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      transform: translateY(-110%);
      opacity: 0;
      visibility: hidden;
      transition:
        transform .35s cubic-bezier(.4,0,.2,1),
        opacity .35s ease,
        visibility .35s ease;
      z-index: 999;
      box-shadow: 0 12px 40px rgba(26,31,78,.1);
    }
    .navbar__drawer.open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
    .navbar__drawer a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 13px 16px;
      font-size: .9rem;
      font-weight: 500;
      color: var(--navy);
      border-radius: var(--radius);
      border-left: 3px solid transparent;
      transition: background var(--transition), color var(--transition), border-color var(--transition);
    }
    .navbar__drawer a:hover,
    .navbar__drawer a.active {
      background: var(--gold-dim);
      color: var(--gold);
      border-left-color: var(--gold);
    }
    .navbar__drawer .drawer-cta {
      margin-top: 12px;
      padding: 14px 20px;
      background: var(--navy);
      color: var(--gold) !important;
      border-radius: var(--radius);
      font-weight: 700;
      font-size: .88rem;
      letter-spacing: .07em;
      text-transform: uppercase;
      text-align: center;
      justify-content: center;
      border-left: none !important;
    }
    .navbar__drawer .drawer-cta:hover {
      background: var(--gold) !important;
      color: var(--navy) !important;
      border-left-color: transparent !important;
    }

    /* ── Responsive breakpoint ── */
    @media (max-width: 900px) {
      .navbar__links   { display: none; }
      .navbar__hamburger { display: flex; }
    }

    /* ═══════════════════════════════════════════════
       HERO — NEW DESIGN
    ═══════════════════════════════════════════════ */
    @keyframes heroFadeRight {
      from { opacity: 0; transform: translateX(48px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes floatCard {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-10px); }
    }

    /* ═══════════════════════════════════════════════
       HERO — NEW
    ═══════════════════════════════════════════════ */
    .hero-new {
      position: relative;
      min-height: 100vh; /* fallback */
      min-height: 100svh; /* mobile-safe modern unit */
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(10, 15, 50, 0.85) 0%,
        rgba(10, 15, 50, 0.6) 50%,
        rgba(10, 15, 50, 0.4) 100%
      );
    }
    .hero-content-wrapper {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 120px 40px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
    }
    .hero-left {
      flex: 1;
      max-width: 600px;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(201, 168, 76, 0.2);
      border: 1px solid rgba(201, 168, 76, 0.4);
      color: #c9a84c;
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
      letter-spacing: 1px;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(42px, 5vw, 68px);
      font-weight: 700;
      color: white;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .hero-gold {
      color: #c9a84c;
      font-style: italic;
    }
    .hero-subtitle {
      color: rgba(255,255,255,0.75);
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 36px;
      max-width: 480px;
    }
    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 48px;
    }
    .btn-primary-hero {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: white;
      color: #1a1f4e;
      padding: 16px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      transition: all 0.3s ease;
      font-family: 'Inter', sans-serif;
    }
    .btn-primary-hero:hover {
      background: #c9a84c;
      color: white;
      transform: translateY(-2px);
    }
    .btn-play {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: 2px solid rgba(255,255,255,0.4);
      color: white;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      backdrop-filter: blur(10px);
    }
    .btn-play:hover {
      background: #c9a84c;
      border-color: #c9a84c;
      transform: scale(1.1);
    }
    .hero-bottom-bar {
      display: flex;
      align-items: center;
      gap: 40px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .hero-trust { flex: 1; }
    .hero-trust p {
      color: rgba(255,255,255,0.6);
      font-size: 13px;
      line-height: 1.6;
      max-width: 300px;
    }
    .hero-rating {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }
    .rating-star { color: #c9a84c; font-size: 28px; }
    .rating-num {
      font-size: 36px;
      font-weight: 800;
      color: white;
      font-family: 'Playfair Display', serif;
    }
    .rating-label { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.4; }
    .hero-right { flex-shrink: 0; width: 420px; }
    .hero-booking-card {
      background: rgba(26,31,78,0.62);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 20px 50px rgba(0,0,0,.35);
    }
    .hero-form-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, rgba(201,168,76,.2), rgba(184,150,62,.2));
      border: 1px solid rgba(201,168,76,.5);
      color: var(--gold-l);
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .03em;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 16px;
    }
    .booking-form { display: flex; flex-direction: column; gap: 12px; }
    .booking-field {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(0,0,0,0.35);
      border: 1.5px solid rgba(255,255,255,0.18);
      border-radius: 12px;
      padding: 14px 16px;
      flex: 1;
      transition: border-color 0.3s, background 0.3s;
    }
    .booking-field:focus-within { border-color: var(--gold); background: rgba(0,0,0,0.45); }
    .booking-field i { color: var(--gold); font-size: 15px; flex-shrink: 0; }
    .booking-field input,
    .booking-field select {
      background: transparent;
      border: none;
      outline: none;
      color: white;
      font-size: 13px;
      font-family: 'Inter', sans-serif;
      width: 100%;
    }
    .booking-field input::placeholder { color: rgba(255,255,255,0.55); }
    .booking-field select { color: rgba(255,255,255,0.8); cursor: pointer; }
    .booking-field select option { background: #1a1f4e; color: white; }
    .booking-row { display: flex; gap: 10px; }
    .booking-submit {
      width: 100%;
      padding: 16px;
      background: linear-gradient(135deg, #c9a84c, #b8963e);
      color: #1a1f4e;
      border: none;
      border-radius: 12px;
      font-size: 14px;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s ease;
      margin-top: 4px;
      box-shadow: 0 4px 18px rgba(201,168,76,.35);
    }
    .booking-submit:hover {
      transform: translateY(-2px) scale(1.015);
      box-shadow: 0 10px 28px rgba(201,168,76,.5);
      filter: brightness(1.06);
    }
    .hero-form-note {
      font-family: 'Inter', sans-serif;
      font-size: 11.5px;
      line-height: 1.5;
      color: rgba(255,255,255,0.6);
      text-align: center;
      margin-top: 14px;
    }
    
    /* ═══════════════════════════════════════════════
       HERO — MOBILE RESPONSIVE (max-width: 767px)
    ═══════════════════════════════════════════════ */
    @media (max-width: 767px) {
      .hero-new { min-height: auto; padding-top: 80px; }
      .hero-content-wrapper {
        padding: 48px 16px 32px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 20px !important;
      }
      .hero-left { max-width: 100%; flex: none; }
      .hero-badge { padding: 6px 16px; font-size: 11px; margin-bottom: 12px; }
      .hero-title { font-size: clamp(26px, 7vw, 44px); margin-bottom: 12px; }
      .hero-subtitle { font-size: clamp(13px, 3.5vw, 15px); margin-bottom: 20px; max-width: 100%; }
      .hero-ctas { margin-bottom: 20px; gap: 12px; flex-direction: column; width: 100%; }
      .btn-primary-hero { padding: 13px 22px; font-size: 13px; width: 100%; }
      .btn-play { width: 48px; height: 48px; font-size: 14px; }
      .hero-right { width: 100%; max-width: 100%; }
      .hero-booking-card { padding: 20px; }
      .booking-field { padding: 12px 14px; font-size: 13px; }
      .hero-bottom-bar { flex-direction: column; gap: 12px; padding-top: 16px; align-items: center; }
      .hero-trust { flex: none; }
      .hero-trust p { font-size: 12px; max-width: 100%; }
      .hero-rating { flex-shrink: 1; }
      .rating-star { font-size: 18px; }
      .rating-num { font-size: 24px; }
      .rating-label { font-size: 11px; }
    }

    /* ═══════════════════════════════════════════════
       HERO — TABLET RESPONSIVE (768px – 1023px)
    ═══════════════════════════════════════════════ */
    @media (min-width: 768px) and (max-width: 1023px) {
      .hero-new { min-height: 100svh; }
      .hero-content-wrapper { padding: 80px 28px 45px !important; gap: 36px !important; }
      .hero-title { font-size: clamp(36px, 5.5vw, 52px); }
      .hero-subtitle { font-size: clamp(14px, 3.5vw, 16px); margin-bottom: 24px; }
      .hero-right { width: 360px; }
      .hero-bottom-bar { gap: 28px; }
    }


    /* ═══════════════════════════════════════════════
       ABOUT SECTION
    ═══════════════════════════════════════════════ */
    #about {
      background: var(--bg);
      padding: 110px 5%;
    }

    .about__inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    /* ── LEFT: image stack ── */
    .about__img-wrap {
      position: relative;
    }

    .about__img-main {
      width: 100%;
      aspect-ratio: 4 / 5;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
    .about__img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .7s cubic-bezier(.16,1,.3,1);
    }
    .about__img-main:hover img { transform: scale(1.04); }

    /* gold border offset — bottom-right */
    .about__img-main::after {
      content: '';
      position: absolute;
      bottom: -18px;
      right: -18px;
      width: 62%;
      height: 62%;
      border: 4px solid var(--gold);
      border-radius: 10px;
      z-index: -1;
      pointer-events: none;
    }

    /* floating badge — bottom-left */
    .about__badge {
      position: absolute;
      bottom: -22px;
      left: -22px;
      z-index: 2;
      background: var(--gold);
      color: var(--navy);
      border-radius: 10px;
      padding: 16px 20px;
      text-align: center;
      box-shadow: 0 8px 28px rgba(201,168,76,.38);
    }
    .about__badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      line-height: 1;
      display: block;
    }
    .about__badge-text {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      display: block;
      margin-top: 5px;
      line-height: 1.35;
    }

    /* ── RIGHT: text content ── */

    .about__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
    }
    .about__eyebrow::before {
      content: '';
      display: block;
      width: 26px;
      height: 1.5px;
      background: var(--gold);
      border-radius: 2px;
      flex-shrink: 0;
    }

    .about__h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 2.8vw, 2.6rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .about__desc {
      font-size: .97rem;
      color: var(--gray);
      line-height: 1.75;
      margin-bottom: 34px;
      max-width: 520px;
    }

    /* ── Trust points 2×2 grid ── */
    .about__trust {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 36px;
    }

    .about__trust-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px;
      background: var(--bg-d);
      border: 1px solid var(--border);
      border-radius: 10px;
      transition: border-color .25s, box-shadow .25s, transform .25s;
      cursor: default;
    }
    .about__trust-item:hover {
      border-color: rgba(201,168,76,.45);
      box-shadow: 0 4px 18px rgba(201,168,76,.1);
      transform: translateY(-2px);
    }

    .about__trust-icon {
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      background: var(--navy);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: .88rem;
    }

    .about__trust-label {
      font-size: .85rem;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.3;
      padding-top: 2px;
    }
    .about__trust-sub {
      font-size: .76rem;
      color: var(--gray);
      margin-top: 3px;
      line-height: 1.4;
    }

    /* ── Stats row ── */
    .about__stats {
      display: flex;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 36px;
    }

    .about__stat {
      flex: 1;
      min-width: 0;
      padding: 18px 16px;
      text-align: center;
      border-right: 1px solid var(--border);
      background: var(--white);
    }
    .about__stat:last-child { border-right: none; }

    .about__stat-num {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.1rem, 5vw, 1.8rem);
      font-weight: 700;
      color: var(--navy);
      display: block;
      line-height: 1;
      white-space: nowrap;
    }
    .about__stat-label {
      font-size: clamp(.56rem, 2.4vw, .72rem);
      font-weight: 600;
      color: var(--gray);
      letter-spacing: .03em;
      text-transform: uppercase;
      margin-top: 5px;
      display: block;
    }

    /* ── CTA button ── */
    .btn-about-cta {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 13px 28px;
      background: var(--gold);
      color: var(--navy);
      font-size: .84rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      border-radius: var(--radius);
      border: 2px solid var(--gold);
      transition: background var(--transition), color var(--transition),
                  transform var(--transition), box-shadow var(--transition);
    }
    .btn-about-cta:hover {
      background: transparent;
      color: var(--gold);
      transform: translateY(-2px);
      box-shadow: 0 6px 22px rgba(201,168,76,.3);
    }

    /* ═══════════════════════════════════════════════
       ABOUT RESPONSIVE
    ═══════════════════════════════════════════════ */
    @media (max-width: 900px) {
      .about__inner {
        grid-template-columns: 1fr;
        gap: 64px;
      }
      .about__img-wrap {
        max-width: 520px;
        margin: 0 auto;
      }
      #about { padding: 80px 5%; }
    }
    @media (max-width: 560px) {
      .about__trust { grid-template-columns: 1fr; }
      .about__badge { left: -10px; bottom: -10px; }
      .about__img-main::after { right: -10px; bottom: -10px; }
      .about__stat { padding: 12px 4px; }
    }

    /* ═══════════════════════════════════════════════
       PACKAGES SECTION
    ═══════════════════════════════════════════════ */
    #packages {
      background: var(--white);
      padding: 110px 5%;
      overflow: hidden;
    }

    .packages__header {
      max-width: 1280px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .packages__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .packages__eyebrow::before,
    .packages__eyebrow::after {
      content: '';
      display: block;
      width: 26px;
      height: 1.5px;
      background: var(--gold);
      border-radius: 2px;
      flex-shrink: 0;
    }

    .packages__h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 2.8vw, 2.7rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .packages__sub {
      font-size: .97rem;
      color: var(--gray);
      line-height: 1.7;
      max-width: 520px;
      margin: 0 auto;
    }

    /* ── Layout wrapper ── */
    .packages__slider-wrap {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      padding: 8px 4px;
    }

    /* ── Desktop: CSS grid (3 columns) ── */
    @media (min-width: 768px) {
      #pkgSwiper { overflow: visible; }
      #pkgSwiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        transform: none !important;
        width: 100% !important;
      }
      #pkgSwiper .swiper-slide { width: auto !important; height: auto; }
      .pkg-swiper-pagination { display: none; }
    }

    /* ── Mobile Swiper ── */
    @media (max-width: 767px) {
      .packages__slider-wrap { padding-bottom: 44px; }
    }

    /* ── Swiper pagination dots (mobile only) ── */
    .pkg-swiper-pagination {
      bottom: 10px !important;
    }
    .pkg-swiper-pagination .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      background: var(--border);
      opacity: 1;
      transition: background .25s, width .25s;
      border-radius: 4px;
    }
    .pkg-swiper-pagination .swiper-pagination-bullet-active {
      background: var(--gold);
      width: 22px;
    }

    /* ── Package card ── */
    .pkg-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      min-height: 580px;
      transition: box-shadow var(--transition), transform var(--transition),
                  border-color var(--transition);
    }
    .pkg-card:hover {
      box-shadow: 0 20px 56px rgba(26,31,78,.12);
      transform: translateY(-6px);
    }
    .pkg-card--featured {
      border-color: var(--gold);
      box-shadow: 0 8px 36px rgba(201,168,76,.22);
    }
    .pkg-card--featured:hover {
      box-shadow: 0 24px 64px rgba(201,168,76,.3);
    }

    /* card image */
    .pkg-card__img {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      flex-shrink: 0;
      background-size: cover;
      background-position: center;
      background-color: #e8e4d9;
      transition: transform .65s cubic-bezier(.16,1,.3,1);
    }
    .pkg-card:hover .pkg-card__img { transform: scale(1.04); }

    /* badge */
    .pkg-card__badge {
      position: absolute;
      top: 14px;
      left: 14px;
      padding: 5px 13px;
      border-radius: 100px;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
    }
    .pkg-card__badge--economy {
      background: rgba(255,255,255,.88);
      color: var(--gray);
      border: 1px solid var(--border);
    }
    .pkg-card__badge--popular {
      background: var(--gold);
      color: var(--navy);
    }
    .pkg-card__badge--premium {
      background: var(--navy);
      color: var(--gold);
    }

    /* card body */
    .pkg-card__body {
      padding: 26px 24px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .pkg-card__name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .pkg-card__price-row {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 18px;
    }
    .pkg-card__currency {
      font-size: .82rem;
      font-weight: 600;
      color: var(--gold);
    }
    .pkg-card__amount {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }
    .pkg-card__per {
      font-size: .75rem;
      color: var(--gray);
    }

    /* inclusions list */
    .pkg-card__list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 24px;
      flex: 1;
    }
    .pkg-card__list li {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: .86rem;
      color: var(--gray);
      line-height: 1.4;
    }
    .pkg-card__list li .fa-circle-check {
      color: var(--gold);
      font-size: .8rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* buttons */
    .pkg-card__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 20px;
      border-radius: var(--radius);
      font-size: .83rem;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      cursor: pointer;
      border: 2px solid var(--navy);
      transition: background var(--transition), color var(--transition),
                  box-shadow var(--transition), transform var(--transition);
      text-decoration: none;
    }
    .pkg-card__btn--outline {
      background: transparent;
      color: var(--navy);
    }
    .pkg-card__btn--outline:hover {
      background: var(--navy);
      color: var(--white);
      box-shadow: 0 4px 16px rgba(26,31,78,.2);
      transform: translateY(-1px);
    }
    .pkg-card__btn--gold {
      background: var(--gold);
      color: var(--navy);
      border-color: var(--gold);
    }
    .pkg-card__btn--gold:hover {
      background: var(--gold-l);
      border-color: var(--gold-l);
      box-shadow: 0 4px 20px rgba(201,168,76,.4);
      transform: translateY(-1px);
    }

    /* featured top banner */
    .pkg-card--featured .pkg-card__body {
      background: linear-gradient(180deg, rgba(201,168,76,.04) 0%, transparent 40%);
    }

    @media (max-width: 900px) {
      #packages { padding: 80px 5%; }
    }

    /* ── See Details button ── */
    .pkg-card__btn-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: auto;
    }
    .pkg-card__btn--details {
      background: transparent;
      border: none;
      color: var(--gold);
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: .06em;
      cursor: pointer;
      padding: 0;
      text-align: left;
      transition: color var(--transition);
    }
    .pkg-card__btn--details:hover { color: var(--navy); }

    /* ── Package Detail Modals ── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(10,15,50,.72);
      backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      transition: opacity .3s ease;
    }
    .modal-overlay.modal--open { opacity: 1; }
    .modal-card {
      background: white;
      border-radius: 24px;
      max-width: 640px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 32px 80px rgba(10,15,50,.3);
      transform: translateY(20px) scale(.97);
      transition: transform .35s cubic-bezier(.175,.885,.32,1.275);
    }
    .modal--open .modal-card { transform: translateY(0) scale(1); }
    .modal-hero-img {
      width: 100%;
      height: 220px;
      background-size: cover;
      background-position: center;
      border-radius: 20px 20px 0 0;
      position: relative;
      overflow: hidden;
    }
    .modal-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,31,78,0.85) 0%, rgba(26,31,78,0.2) 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px 28px;
    }
    .modal-hero-overlay h3 {
      font-family: 'Playfair Display', serif;
      color: white;
      font-size: 24px;
      margin-bottom: 8px;
      font-weight: 700;
      line-height: 1.2;
    }
    .modal-pkg-badge {
      display: inline-block;
      background: #c9a84c;
      color: white;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      padding: 5px 14px;
      border-radius: 50px;
    }
    .modal-close-float {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.25);
      backdrop-filter: blur(10px);
      color: white;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      z-index: 2;
    }
    .modal-close-float:hover { background: white; color: #1a1f4e; }
    .modal-body { padding: 26px 28px 0; }
    .modal-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 20px;
      padding: 14px 18px;
      background: linear-gradient(135deg, #f8f6f0, #fff);
      border: 1px solid rgba(201,168,76,.2);
      border-radius: 12px;
    }
    .modal-price-label { font-size: .78rem; color: #888; margin-right: auto; align-self: center; }
    .modal-price-currency { font-size: .88rem; font-weight: 700; color: var(--gold); }
    .modal-price-amount { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--navy); line-height: 1; }
    .modal-price-per { font-size: .74rem; color: #888; }
    .modal-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
    .modal-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 12px;
      border-radius: 100px;
      font-size: .74rem;
      font-weight: 600;
      background: rgba(26,31,78,.06);
      color: var(--navy);
    }
    .modal-badge i { color: var(--gold); font-size: .75rem; }
    .modal-section-title {
      font-family: 'Playfair Display', serif;
      font-size: .95rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .modal-section-title::after { content: ''; flex: 1; height: 1px; background: #e8e4d9; }
    .modal-includes {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 22px;
    }
    .modal-includes li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: .84rem;
      color: var(--gray);
      line-height: 1.4;
    }
    .modal-includes li .fa-circle-check { color: var(--gold); font-size: .78rem; margin-top: 2px; flex-shrink: 0; }
    .modal-note {
      background: rgba(201,168,76,.08);
      border-left: 3px solid var(--gold);
      border-radius: 0 8px 8px 0;
      padding: 12px 16px;
      font-size: .82rem;
      color: var(--gray);
      margin-bottom: 22px;
      line-height: 1.6;
    }
    .modal-footer {
      padding: 20px 28px 28px;
      display: flex;
      gap: 12px;
      border-top: 1px solid #f0ece0;
    }
    .modal-btn-primary {
      flex: 1;
      padding: 14px 18px;
      background: var(--navy);
      color: white;
      border-radius: 12px;
      font-weight: 700;
      font-size: .88rem;
      text-align: center;
      cursor: pointer;
      transition: background .2s, transform .2s;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: none;
    }
    .modal-btn-primary:hover { background: #2a3080; transform: translateY(-2px); color: white; }
    .modal-btn-whatsapp {
      flex: 1;
      padding: 14px 18px;
      background: #25D366;
      color: white;
      border-radius: 12px;
      font-weight: 700;
      font-size: .88rem;
      text-align: center;
      cursor: pointer;
      transition: background .2s, transform .2s;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .modal-btn-whatsapp:hover { background: #1fba5a; transform: translateY(-2px); }
    @media (max-width: 560px) {
      .modal-includes { grid-template-columns: 1fr; }
      .modal-footer { flex-direction: column; }
      .modal-hero-img { height: 180px; }
      .modal-hero-overlay h3 { font-size: 1.3rem; }
    }

    /* ═══════════════════════════════════════════════
       AI CHAT WIDGET (Phase 3) — variant of .modal-card
       Palette: Navy #10143a → #1a1f4e, Gold #c9a84c → #b8963e
       (site's real brand colors — matches the Binham logo, --navy/--gold vars)
    ═══════════════════════════════════════════════ */
    #modal-ai-chat { z-index: 10000; } /* above the fixed navbar (z-index:9999) so a
       full-height mobile chat card isn't clipped under it */
    .ai-chat-card {
      display: flex;
      flex-direction: column;
      width: 480px;
      max-width: 100%;
      height: min(760px, 84vh);
      max-height: 84vh;
      overflow: hidden;
      padding: 0;
      border-radius: 20px;
      box-shadow: 0 24px 64px rgba(26,31,78,.35), 0 4px 16px rgba(26,31,78,.15);
    }

    /* ── header ── */
    .ai-chat-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 18px;
      background: linear-gradient(135deg, #10143a, #1a1f4e);
      color: #fff;
      border-radius: 20px 20px 0 0;
      flex-shrink: 0;
    }
    .ai-chat-avatar {
      width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, #c9a84c, #b8963e);
      display: flex; align-items: center; justify-content: center;
      font-size: .95rem; color: #fff;
      box-shadow: 0 2px 8px rgba(201,168,76,.4);
    }
    .ai-chat-headtext { flex: 1; min-width: 0; }
    .ai-chat-title {
      font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.02rem;
      display: flex; align-items: center; gap: 7px;
    }
    .ai-status-dot {
      width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0;
      animation: ai-pulse 1.8s infinite;
    }
    @keyframes ai-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
      70%  { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
      100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
    }
    .ai-chat-subtitle { font-size: .71rem; color: #dfc06e; margin-top: 2px; font-weight: 500; }
    .ai-chat-close {
      position: static; flex-shrink: 0;
      background: rgba(255,255,255,.08); color: #fff;
      transition: background .18s;
    }
    .ai-chat-close:hover { background: rgba(255,255,255,.18); color: #fff; }

    /* ── message list ── */
    .ai-chat-messages {
      flex: 1;
      overflow-y: auto;
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: #F1F5F9;
    }
    .ai-msg-row {
      display: flex; flex-direction: column; max-width: 82%;
      animation: ai-msg-in .28s ease both;
    }
    .ai-msg-row--assistant { align-self: flex-start; align-items: flex-start; }
    .ai-msg-row--user { align-self: flex-end; align-items: flex-end; }
    @keyframes ai-msg-in {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .ai-msg {
      padding: 10px 14px;
      border-radius: 16px;
      font-size: .87rem;
      line-height: 1.5;
      white-space: pre-wrap;
      word-break: break-word;
    }
    .ai-msg--assistant {
      background: #fff; color: #1a1f4e;
      border-bottom-left-radius: 4px;
      box-shadow: 0 1px 3px rgba(26,31,78,.08), 0 1px 2px rgba(26,31,78,.06);
    }
    .ai-msg--user {
      background: linear-gradient(135deg, #c9a84c, #b8963e); color: #fff;
      border-bottom-right-radius: 4px;
      box-shadow: 0 2px 8px rgba(201,168,76,.28);
    }
    .ai-msg--error {
      align-self: center; background: #fdecea; border: 1px solid #f5c2c0; color: #a33;
      font-size: .8rem; border-radius: 12px;
    }
    .ai-msg-time { font-size: 10px; color: #94a3b8; margin-top: 3px; padding: 0 4px; }

    /* ── typing indicator (3 bouncing dots) ── */
    .ai-typing-dots { display: flex; gap: 4px; padding: 4px 2px; }
    .ai-typing-dots span {
      width: 7px; height: 7px; border-radius: 50%;
      background: #b8963e;
      animation: ai-bounce 1.2s infinite ease-in-out both;
    }
    .ai-typing-dots span:nth-child(1) { animation-delay: -.28s; }
    .ai-typing-dots span:nth-child(2) { animation-delay: -.14s; }
    @keyframes ai-bounce {
      0%, 80%, 100% { transform: scale(.6); opacity: .5; }
      40%           { transform: scale(1);  opacity: 1; }
    }

    /* ── package recommendation cards ── */
    .ai-pkg-card {
      align-self: stretch;
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      padding: 14px;
      box-shadow: 0 1px 3px rgba(26,31,78,.06);
      transition: box-shadow .2s, transform .2s;
      animation: ai-msg-in .28s ease both;
    }
    .ai-pkg-card:hover { box-shadow: 0 8px 24px rgba(26,31,78,.14); transform: translateY(-2px); }
    .ai-pkg-card__name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: .98rem; color: #1a1f4e; margin-bottom: 4px; }
    .ai-pkg-card__meta { font-size: .74rem; color: #94a3b8; margin-bottom: 8px; }
    .ai-pkg-card__hotel { font-size: .78rem; color: #475569; line-height: 1.5; }
    .ai-pkg-card__hotel strong { color: #1a1f4e; font-weight: 600; }
    .ai-pkg-card__validity {
      display: inline-block; margin-top: 8px; padding: 3px 9px; border-radius: 100px;
      font-size: .68rem; font-weight: 600; background: #F1F5F9; color: #475569;
    }
    .ai-pkg-card__validity--expired { background: #fdecea; color: #b3261e; }
    .ai-pkg-prices { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; background: #F8FAFC; border-radius: 10px; padding: 10px; margin: 10px 0; }
    .ai-pkg-price-item { text-align: center; }
    .ai-pkg-price-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #94a3b8; }
    .ai-pkg-price-val { font-size: .76rem; font-weight: 700; color: #1a1f4e; margin-top: 2px; }
    .ai-pkg-card__book {
      width: 100%; margin-top: 6px; padding: 9px; border: none; border-radius: 10px;
      background: linear-gradient(135deg, #c9a84c, #b8963e); color: #fff;
      font-size: .82rem; font-weight: 700; cursor: pointer;
      transition: filter .15s, transform .15s;
    }
    .ai-pkg-card__book:hover { filter: brightness(1.08); transform: translateY(-1px); }

    /* ── booking confirm card ── */
    .ai-confirm-card {
      align-self: stretch;
      background: #fff;
      border: 1.5px solid #c9a84c;
      border-radius: 14px;
      padding: 14px;
      font-size: .83rem;
      color: #1a1f4e;
      animation: ai-msg-in .28s ease both;
    }
    .ai-confirm-card .dl { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #94a3b8; margin-top: 8px; }
    .ai-confirm-card .dl:first-child { margin-top: 0; }
    .ai-confirm-card .dv { font-size: .85rem; font-weight: 600; }
    .ai-confirm-card input, .ai-confirm-card select {
      width: 100%; border: 1.5px solid #e2e8f0; border-radius: 8px; padding: 7px 10px; font-size: .83rem; margin-top: 3px; font-family: inherit;
    }
    .ai-confirm-actions { margin-top: 12px; display: flex; gap: 8px; }
    .ai-confirm-actions button { flex: 1; padding: 9px; border-radius: 8px; font-size: .82rem; font-weight: 700; cursor: pointer; border: none; transition: filter .15s; }
    .ai-confirm-btn { background: linear-gradient(135deg, #c9a84c, #b8963e); color: #fff; }
    .ai-confirm-btn:hover { filter: brightness(1.08); }
    .ai-edit-btn { background: #F1F5F9; color: #1a1f4e; }
    .ai-edit-btn:hover { background: #e2e8f0; }

    /* ── quick-reply pill buttons ── */
    .ai-book-pin {
      flex-shrink: 0;
      padding: 10px 18px;
      background: #fff;
      border-top: 1px solid #e2e8f0;
      display: flex; flex-wrap: wrap; gap: 8px;
      justify-content: center;
    }
    .ai-book-pin button {
      background: transparent;
      border: 1.5px solid #c9a84c;
      color: #b8963e;
      font-weight: 700;
      font-size: .78rem;
      cursor: pointer;
      padding: 7px 16px;
      border-radius: 100px;
      transition: background .18s, color .18s;
    }
    .ai-book-pin button:hover { background: linear-gradient(135deg, #c9a84c, #b8963e); color: #fff; }

    /* ── input bar ── */
    .ai-chat-inputbar {
      display: flex;
      gap: 8px;
      padding: 14px 16px;
      border-top: 1px solid #e2e8f0;
      background: #fff;
      border-radius: 0 0 20px 20px;
      flex-shrink: 0;
    }
    .ai-chat-inputbar input {
      flex: 1;
      border: 1.5px solid #e2e8f0;
      border-radius: 50px;
      padding: 11px 18px;
      font-size: .87rem;
      font-family: inherit;
      background: #F8FAFC;
      transition: border-color .15s, background .15s;
    }
    .ai-chat-inputbar input:focus { outline: none; border-color: #c9a84c; background: #fff; }
    .ai-chat-send {
      width: 42px; height: 42px; border-radius: 50%; border: none;
      background: linear-gradient(135deg, #c9a84c, #b8963e); color: #fff; cursor: pointer; font-size: 1rem;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      transition: transform .15s, filter .15s;
      box-shadow: 0 2px 8px rgba(201,168,76,.35);
    }
    .ai-chat-send:hover:not(:disabled) { transform: scale(1.08); filter: brightness(1.05); }
    .ai-chat-send:disabled { opacity: .5; cursor: not-allowed; }

    @media (max-width: 640px) {
      .ai-chat-card { width: 100%; max-width: 100%; height: 100%; max-height: 100%; border-radius: 0; }
      .ai-chat-header { border-radius: 0; }
      .ai-chat-inputbar { border-radius: 0; }
      .ai-msg-row { max-width: 88%; }
    }

    /* ═══════════════════════════════════════════════
       SERVICES SECTION
    ═══════════════════════════════════════════════ */
    #services {
      background: var(--bg);
      padding: 110px 5%;
    }

    .services__header {
      max-width: 1280px;
      margin: 0 auto 56px;
      text-align: center;
    }

    .services__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .services__eyebrow::before,
    .services__eyebrow::after {
      content: '';
      display: block;
      width: 26px;
      height: 1.5px;
      background: var(--gold);
      border-radius: 2px;
      flex-shrink: 0;
    }

    .services__h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 2.8vw, 2.6rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .services__sub {
      font-size: .97rem;
      color: var(--gray);
      line-height: 1.7;
      max-width: 520px;
      margin: 0 auto;
    }

    /* ── Bento grid: left col | center img | right col ── */
    .services__grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 360px 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 24px;
      align-items: stretch;
    }

    /* left column: spans both rows via child placement */
    .services__col-left,
    .services__col-right {
      display: contents; /* children participate directly in grid */
    }

    /* ── Service card ── */
    .srv-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      border-left: 4px solid transparent;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      cursor: default;
      transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-left-color var(--transition);
    }
    .srv-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 44px rgba(26,31,78,.1);
      border-left-color: var(--gold);
    }

    /* heading + icon side by side, icon on the right */
    .srv-card__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* icon circle */
    .srv-card__icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--gold);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.1rem;
      flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(201,168,76,.35);
      transition: background var(--transition), transform var(--transition),
                  box-shadow var(--transition);
    }
    .srv-card:hover .srv-card__icon {
      background: var(--navy);
      color: var(--gold);
      transform: scale(1.1);
      box-shadow: 0 6px 18px rgba(26,31,78,.25);
    }

    .srv-card__title {
      flex: 1;
      min-width: 0;
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.25;
    }

    .srv-card__desc {
      font-size: .86rem;
      color: var(--gray);
      line-height: 1.65;
      flex: 1;
    }

    .srv-card__link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .8rem;
      font-weight: 600;
      color: var(--gold);
      text-decoration: none;
      letter-spacing: .04em;
      transition: gap var(--transition), opacity var(--transition);
    }
    .srv-card__link:hover { gap: 10px; opacity: .8; }

    /* ── Center image ── */
    .services__center-img {
      grid-column: 2;
      grid-row: 1 / 3;
      border-radius: 14px;
      overflow: hidden;
      position: relative;
    }
    .services__center-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .7s cubic-bezier(.16,1,.3,1);
    }
    .services__center-img:hover img { transform: scale(1.04); }

    /* gold border accent — offset bottom-right */
    .services__center-img::after {
      content: '';
      position: absolute;
      bottom: -14px;
      right: -14px;
      width: 55%;
      height: 55%;
      border: 3px solid var(--gold);
      border-radius: 10px;
      z-index: -1;
      pointer-events: none;
    }

    /* ── Explicit grid placement ── */
    /* left top */
    .srv-card:nth-child(1) { grid-column: 1; grid-row: 1; }
    /* left bottom */
    .srv-card:nth-child(2) { grid-column: 1; grid-row: 2; }
    /* right top */
    .srv-card:nth-child(3) { grid-column: 3; grid-row: 1; }
    /* right bottom */
    .srv-card:nth-child(4) { grid-column: 3; grid-row: 2; }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .services__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .services__center-img {
        display: none; /* hidden on tablet and below */
      }
      .srv-card:nth-child(1) { grid-column: 1; grid-row: auto; }
      .srv-card:nth-child(2) { grid-column: 2; grid-row: auto; }
      .srv-card:nth-child(3) { grid-column: 1; grid-row: auto; }
      .srv-card:nth-child(4) { grid-column: 2; grid-row: auto; }
      #services { padding: 80px 5%; }
    }
    @media (max-width: 560px) {
      .services__grid {
        grid-template-columns: 1fr;
      }
      .srv-card:nth-child(1),
      .srv-card:nth-child(2),
      .srv-card:nth-child(3),
      .srv-card:nth-child(4) {
        grid-column: 1;
        grid-row: auto;
      }
      /* Long headings wrap to their own line above the icon instead of
         squeezing it — icon also shrinks a touch so it never dominates. */
      .srv-card__head { flex-wrap: wrap; }
      .srv-card__title { font-size: 1.1rem; }
      .srv-card__icon i { font-size: 28px !important; }
    }

    /* ═══════════════════════════════════════════════
       HOW IT WORKS — STEPS
    ═══════════════════════════════════════════════ */
    #how-it-works {
      background: var(--white);
      padding: 110px 5%;
    }

    .steps__header {
      max-width: 1280px;
      margin: 0 auto 64px;
      text-align: center;
    }

    .steps__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .steps__eyebrow::before,
    .steps__eyebrow::after {
      content: '';
      display: block;
      width: 26px;
      height: 1.5px;
      background: var(--gold);
      border-radius: 2px;
    }

    .steps__h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 2.8vw, 2.6rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .steps__sub {
      font-size: .97rem;
      color: var(--gray);
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto;
    }

    /* ── Steps track ── */
    .steps__track {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      position: relative;
    }

    /* Gold dashed connector — sits behind the step items */
    .steps__track::before {
      content: '';
      position: absolute;
      top: 36px;                /* vertically centered on icon circles */
      left: calc(12.5% + 28px);/* start after first icon */
      right: calc(12.5% + 28px);/* end before last icon */
      height: 2px;
      background: repeating-linear-gradient(
        90deg,
        var(--gold) 0px,
        var(--gold) 8px,
        transparent 8px,
        transparent 18px
      );
      z-index: 0;
    }

    /* ── Single step ── */
    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    /* Number */
    .step__num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      color: rgba(26,31,78,.07);
      line-height: 1;
      margin-bottom: -14px; /* overlap behind icon */
      transition: color .4s ease, transform .4s ease;
      display: block;
    }
    .step.aos-animate .step__num {
      animation: stepNumPop .55s cubic-bezier(.34,1.56,.64,1) forwards;
    }
    @keyframes stepNumPop {
      from { transform: scale(.7); opacity: 0; }
      to   { transform: scale(1);  opacity: 1; }
    }

    /* Icon circle */
    .step__icon-wrap {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: var(--gold);
      border: 4px solid var(--white);
      box-shadow: 0 0 0 2px var(--gold), 0 6px 20px rgba(201,168,76,.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.25rem;
      position: relative;
      z-index: 1;
      margin-bottom: 20px;
      transition: background var(--transition), transform var(--transition),
                  box-shadow var(--transition), color var(--transition);
    }
    .step:hover .step__icon-wrap {
      background: var(--navy);
      color: var(--gold);
      transform: translateY(-4px) scale(1.08);
      box-shadow: 0 0 0 2px var(--gold), 0 10px 28px rgba(26,31,78,.25);
    }

    .step__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .step__desc {
      font-size: .85rem;
      color: var(--gray);
      line-height: 1.65;
      max-width: 220px;
    }

    /* ── Steps Responsive ── */
    @media (max-width: 900px) {
      .steps__track {
        grid-template-columns: 1fr 1fr;
        gap: 48px 24px;
      }
      .steps__track::before { display: none; }
      #how-it-works { padding: 80px 5%; }
    }
    @media (max-width: 560px) {
      .steps__track {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      /* vertical connector line */
      .steps__track::after {
        content: '';
        position: absolute;
        top: 68px;
        bottom: 68px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        background: repeating-linear-gradient(
          180deg,
          var(--gold) 0px, var(--gold) 8px,
          transparent 8px, transparent 18px
        );
        z-index: 0;
      }
    }

    /* ═══════════════════════════════════════════════
       PRICING PLANS (homepage) — navy section, 3 plan
       cards sourced from the admin's Pricing Plans
       Manager (Firestore siteData/pricing).
    ═══════════════════════════════════════════════ */
    #pricing-plans {
      position: relative;
      padding: 100px 5%;
      overflow: hidden;
      isolation: isolate;
      background: var(--navy);
    }
    .plans__pattern {
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: .07;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='%23c9a84c' stroke-width='1'%3E%3Cpath d='M42 4 L58 20 L74 4 M42 4 L26 20 L10 4 M42 80 L58 64 L74 80 M42 80 L26 64 L10 80 M4 42 L20 26 L4 10 M4 42 L20 58 L4 74 M80 42 L64 26 L80 10 M80 42 L64 58 L80 74'/%3E%3Ccircle cx='42' cy='42' r='14'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 84px 84px;
      background-repeat: repeat;
    }

    .plans__header {
      position: relative;
      z-index: 1;
      max-width: 1280px;
      margin: 0 auto 56px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
      flex-wrap: wrap;
    }
    .plans__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .plans__eyebrow::before {
      content: '';
      display: inline-block;
      width: 26px;
      height: 1.5px;
      background: var(--gold);
      border-radius: 2px;
    }
    .plans__h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.2vw, 2.85rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.22;
      max-width: 560px;
    }
    .plans__h2 em { font-style: italic; color: var(--gold); }
    .plans__header-side {
      max-width: 340px;
      text-align: left;
    }
    .plans__sub {
      font-size: .9rem;
      color: rgba(255,255,255,.66);
      line-height: 1.7;
      margin-bottom: 18px;
    }
    .plans__view-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 13px 26px;
      background: #fff;
      color: var(--navy);
      font-size: .82rem;
      font-weight: 700;
      border-radius: 100px;
      transition: background var(--transition), color var(--transition), transform var(--transition);
    }
    .plans__view-btn:hover {
      background: var(--gold);
      transform: translateY(-2px);
    }

    .plans__grid {
      position: relative;
      z-index: 1;
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      align-items: start;
    }

    .plan-card {
      background: var(--white);
      border-radius: 20px;
      padding: 36px 30px;
      position: relative;
      box-shadow: 0 20px 50px rgba(0,0,0,.18);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .plan-card:hover { transform: translateY(-6px); }
    .plan-card--featured {
      border: 2px solid var(--gold);
      transform: translateY(-14px);
      box-shadow: 0 26px 60px rgba(0,0,0,.28);
    }
    .plan-card--featured:hover { transform: translateY(-18px); }

    .plan-card__badge {
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--navy);
      font-size: .72rem;
      font-weight: 700;
      padding: 7px 20px;
      border-radius: 100px;
      white-space: nowrap;
      box-shadow: 0 6px 18px rgba(201,168,76,.4);
    }

    .plan-card__name {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .plan-card__tagline {
      font-size: .85rem;
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 22px;
      min-height: 44px;
    }
    .plan-card__price {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
    }
    .plan-card__period {
      font-size: .78rem;
      font-weight: 600;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: .04em;
      margin: 6px 0 20px;
    }
    .plan-card__divider {
      width: 44px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      margin-bottom: 20px;
    }
    .plan-card__feats {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .plan-card--featured .plan-card__feats {
      background: var(--bg);
      border-radius: 12px;
      padding: 18px 16px;
    }
    .plan-card__feats li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: .85rem;
      color: var(--navy);
      padding: 7px 0;
      line-height: 1.5;
    }
    .plan-card__feats li i {
      color: var(--gold);
      font-size: .8rem;
      margin-top: 3px;
      flex-shrink: 0;
    }

    @media (max-width: 1024px) {
      .plans__grid { grid-template-columns: 1fr; max-width: 480px; }
      .plan-card--featured { transform: none; }
      .plan-card--featured:hover { transform: translateY(-6px); }
    }
    @media (max-width: 640px) {
      #pricing-plans { padding: 70px 5%; }
      .plans__header { flex-direction: column; align-items: flex-start; }
      .plans__header-side { max-width: 100%; text-align: left; }
    }

    /* ═══════════════════════════════════════════════
       CTA BANNER
    ═══════════════════════════════════════════════ */
    #cta {
      position: relative;
      padding: 120px 5%;
      overflow: hidden;
      isolation: isolate;
      text-align: center;
    }

    /* Parallax background */
    .cta__bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(26,31,78,.75), rgba(26,31,78,.82)),
        url('https://images.unsplash.com/photo-1564769662533-4f00a87b4056?w=1600&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      z-index: -2;
    }
    /* background-attachment:fixed (parallax) is unreliable on mobile
       browsers (notably iOS Safari) and can fail to paint at all,
       leaving this section blank — so it's disabled below desktop. */
    @media (max-width: 1023px) {
      .cta__bg { background-attachment: scroll; }
    }

    /* Mosque silhouette SVG pattern overlay */
    .cta__pattern {
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: .06;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='80' viewBox='0 0 120 80'%3E%3Cellipse cx='60' cy='28' rx='18' ry='22' fill='none' stroke='%23c9a84c' stroke-width='1.5'/%3E%3Crect x='42' y='50' width='36' height='30' fill='none' stroke='%23c9a84c' stroke-width='1.2'/%3E%3Crect x='20' y='60' width='8' height='20' fill='none' stroke='%23c9a84c' stroke-width='1'/%3E%3Crect x='92' y='60' width='8' height='20' fill='none' stroke='%23c9a84c' stroke-width='1'/%3E%3Cline x1='0' y1='80' x2='120' y2='80' stroke='%23c9a84c' stroke-width='1'/%3E%3C/svg%3E");
      background-size: 120px 80px;
      background-repeat: repeat;
    }

    /* Content */
    .cta__inner {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .cta__eyebrow::before,
    .cta__eyebrow::after {
      content: '';
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--gold);
      border-radius: 2px;
    }

    .cta__h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 18px;
    }
    .cta__h2 span {
      /* shimmer gold on key word */
      background: linear-gradient(90deg, var(--gold) 0%, #f5d98b 45%, var(--gold) 80%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmerGold 4s linear infinite;
    }

    .cta__sub {
      font-size: 1rem;
      color: rgba(255,255,255,.68);
      line-height: 1.72;
      margin-bottom: 40px;
    }

    .cta__btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Gold filled */
    .btn-cta-gold {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 14px 32px;
      background: var(--gold);
      color: var(--navy);
      font-size: .84rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      border-radius: 100px;
      border: 2px solid var(--gold);
      transition: background var(--transition), color var(--transition),
                  transform var(--transition), box-shadow var(--transition);
    }
    .btn-cta-gold:hover {
      background: var(--gold-l);
      border-color: var(--gold-l);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(201,168,76,.45);
    }

    /* White outline — WhatsApp */
    .btn-cta-outline {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 14px 32px;
      background: transparent;
      color: #fff;
      font-size: .84rem;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      border-radius: 100px;
      border: 2px solid rgba(255,255,255,.4);
      transition: border-color var(--transition), background var(--transition),
                  color var(--transition), transform var(--transition);
    }
    .btn-cta-outline:hover {
      border-color: #25D366;
      background: #25D366;
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(37,211,102,.35);
    }

    /* ── CTA responsive ── */
    @media (max-width: 560px) {
      #cta { padding: 80px 5%; }
      .cta__btns { flex-direction: column; align-items: center; }
      .btn-cta-gold, .btn-cta-outline { width: 100%; justify-content: center; }
    }

    /* ═══════════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════════ */
    #testimonials {
      background: var(--bg);
      padding: 110px 5%;
      overflow: hidden;
    }

    .testi__header {
      max-width: 1280px;
      margin: 0 auto 52px;
      text-align: center;
    }

    .section__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section__eyebrow::before,
    .section__eyebrow::after {
      content: '';
      display: block;
      width: 26px;
      height: 1.5px;
      background: var(--gold);
      border-radius: 2px;
    }

    .section__h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 2.8vw, 2.6rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .section__sub {
      font-size: .97rem;
      color: var(--gray);
      line-height: 1.7;
      max-width: 560px;
      margin: 0 auto;
    }

    .testi__slider-wrap {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
      padding: 8px 0 56px;
      overflow: hidden;
      min-width: 0;
    }

    /* Infinite scroll track */
    .testimonials-track-wrapper {
      overflow: hidden;
      width: 100%;
      position: relative;
      padding: 20px 0;
    }
    .testimonials-track-wrapper::before,
    .testimonials-track-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      width: 150px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }
    .testimonials-track-wrapper::before {
      left: 0;
      background: linear-gradient(to right, #f8f6f0, transparent);
    }
    .testimonials-track-wrapper::after {
      right: 0;
      background: linear-gradient(to left, #f8f6f0, transparent);
    }
    .testimonials-track {
      display: flex;
      gap: 30px;
      width: max-content;
      animation: scrollTrack 20s linear infinite;
    }
    .testimonials-track:hover {
      animation-play-state: paused;
    }
    @keyframes scrollTrack {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .t-card {
      width: 380px;
      background: white;
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      border-top: 3px solid #c9a84c;
      flex-shrink: 0;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
    }
    .t-card.active {
      transform: scale(1.05);
      box-shadow: 0 20px 60px rgba(201, 168, 76, 0.3);
      border-top: 3px solid #c9a84c;
      border-left: 3px solid #c9a84c;
      border-right: 3px solid #c9a84c;
      background: linear-gradient(135deg, #ffffff 0%, #fffdf5 100%);
      z-index: 10;
      animation-play-state: paused;
    }
    .t-card.active .t-quote {
      color: #1a1f4e;
      font-size: 16px;
    }
    .t-card.active .t-stars {
      font-size: 24px;
      letter-spacing: 5px;
    }
    .t-card.active::before {
      content: '✦ Featured Review';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: #c9a84c;
      color: white;
      font-size: 11px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      letter-spacing: 1px;
      white-space: nowrap;
    }
    .t-stars {
      color: #c9a84c;
      font-size: 20px;
      margin-bottom: 16px;
      letter-spacing: 3px;
    }
    .t-quote {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: #1a1f4e;
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 24px;
    }
    .t-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .t-avatar {
      font-size: 42px;
      color: #c9a84c;
    }
    .t-author strong {
      display: block;
      color: #1a1f4e;
      font-weight: 600;
    }
    .t-author span {
      font-size: 13px;
      color: #888;
    }

    /* Testimonial card */
    .testi-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-top: 3px solid var(--gold);
      border-radius: 16px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      height: 100%;
      box-shadow: 0 4px 20px rgba(26,31,78,.07);
      transition: box-shadow var(--transition), transform var(--transition);
    }
    .testi-card:hover {
      box-shadow: 0 18px 48px rgba(26,31,78,.13);
      transform: translateY(-5px);
    }

    .testi-card__stars {
      display: flex;
      gap: 3px;
      color: var(--gold);
      font-size: .9rem;
    }

    .testi-card__quote {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.02rem;
      color: #222;
      line-height: 1.78;
      flex: 1;
      position: relative;
      padding-left: 20px;
    }
    .testi-card__quote::before {
      content: '\201C';
      position: absolute;
      left: 0;
      top: -6px;
      font-size: 2.5rem;
      color: var(--gold);
      font-style: normal;
      line-height: 1;
      opacity: .5;
    }

    .testi-card__author {
      display: flex;
      align-items: center;
      gap: 14px;
      border-top: 1px solid var(--border);
      padding-top: 18px;
    }

    .testi-card__avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: transparent;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 3rem;   /* 48px */
      flex-shrink: 0;
      line-height: 1;
    }

    .testi-card__name {
      font-size: .9rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
    }

    .testi-card__role {
      font-size: .76rem;
      color: var(--gray);
      margin-top: 2px;
    }

    /* ─── Review Form (new) ─── */
    .review-form-section {
      padding: 100px 40px;
      background: linear-gradient(135deg, #f8f6f0 0%, #fff 50%, #f8f6f0 100%);
      position: relative;
      overflow: hidden;
    }
    .review-form-section::before {
      content: '✦';
      position: absolute;
      font-size: 300px;
      color: rgba(201,168,76,0.04);
      top: -50px;
      right: -50px;
      font-family: serif;
      pointer-events: none;
    }

    .review-form-container { max-width: 760px; margin: 0 auto; }
    .review-form-header { text-align: center; margin-bottom: 48px; }
    .review-form-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      color: #c9a84c;
      margin-bottom: 16px;
    }
    .review-form-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 4vw, 42px);
      color: #1a1f4e;
      margin-bottom: 12px;
    }
    .review-form-header p { color: #888; font-size: 15px; line-height: 1.7; }
    .review-form-card {
      background: white;
      border-radius: 24px;
      padding: 48px;
      box-shadow: 0 20px 80px rgba(26,31,78,0.08);
      border: 1px solid rgba(201,168,76,0.15);
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .star-rating-group {
      text-align: center;
      padding: 24px;
      background: linear-gradient(135deg, #fffdf5, #fff8e7);
      border-radius: 16px;
      border: 1px solid rgba(201,168,76,0.2);
    }
    .star-rating-row {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin: 16px 0 10px;
    }
    .star-item {
      font-size: 48px;
      color: #ddd;
      cursor: pointer;
      transition: all 0.2s ease;
      line-height: 1;
      user-select: none;
    }
    .star-item:hover,
    .star-item.hovered,
    .star-item.selected { color: #c9a84c; transform: scale(1.2); }
    .star-item.selected { text-shadow: 0 4px 15px rgba(201,168,76,0.4); }
    .star-label-text {
      display: block;
      font-size: 13px;
      color: #999;
      font-style: italic;
      margin-top: 8px;
    }
    .field-label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      color: #1a1f4e;
      margin-bottom: 10px;
    }
    .req { color: #e74c3c; }
    .optional { color: #aaa; font-weight: 400; letter-spacing: 0; font-size: 11px; }
    .review-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .review-field-group { display: flex; flex-direction: column; }
    .review-input {
      padding: 14px 18px;
      border: 1.5px solid #e8e4d9;
      border-radius: 12px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      color: #1a1f4e;
      background: #fafaf8;
      transition: all 0.3s;
      outline: none;
    }
    .review-input:focus {
      border-color: #c9a84c;
      background: white;
      box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
    }
    .review-textarea {
      padding: 14px 18px;
      border: 1.5px solid #e8e4d9;
      border-radius: 12px;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      color: #1a1f4e;
      background: #fafaf8;
      transition: all 0.3s;
      outline: none;
      resize: vertical;
      min-height: 120px;
      line-height: 1.7;
    }
    .review-textarea:focus {
      border-color: #c9a84c;
      background: white;
      box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
    }
    .photo-upload-area {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 28px;
      border: 2px dashed #e8e4d9;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s;
      background: #fafaf8;
      color: #aaa;
      font-size: 14px;
      text-align: center;
    }
    .photo-upload-area:hover { border-color: #c9a84c; background: #fffdf5; color: #c9a84c; }
    .photo-upload-area i { font-size: 28px; }
    .photo-preview-box { position: relative; display: inline-block; margin-top: 12px; }
    .photo-preview-box img {
      width: 100px; height: 100px;
      object-fit: cover; border-radius: 12px;
      border: 2px solid #c9a84c;
    }
    .remove-photo {
      position: absolute; top: -8px; right: -8px;
      background: #e74c3c; color: white;
      border: none; border-radius: 50%;
      width: 22px; height: 22px;
      font-size: 11px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
    }
    .review-error {
      color: #e74c3c;
      font-size: 13px;
      padding: 12px 16px;
      background: #fef0f0;
      border-radius: 8px;
      border-left: 3px solid #e74c3c;
    }
    .review-submit-btn {
      width: 100%;
      padding: 18px;
      background: linear-gradient(135deg, #c9a84c, #b8963e);
      color: white;
      border: none;
      border-radius: 14px;
      font-size: 15px;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      transition: all 0.3s ease;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .review-submit-btn:hover {
      background: linear-gradient(135deg, #1a1f4e, #2a3080);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(26,31,78,0.3);
    }
    .review-success { text-align: center; padding: 32px; animation: successPop 0.5s cubic-bezier(0.175,0.885,0.32,1.275); }
    @keyframes successPop {
      0%   { transform: scale(0.5); opacity: 0; }
      100% { transform: scale(1);   opacity: 1; }
    }
    .success-icon {
      width: 70px; height: 70px;
      background: linear-gradient(135deg, #c9a84c, #b8963e);
      color: white; border-radius: 50%;
      font-size: 32px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 10px 30px rgba(201,168,76,0.4);
    }
    .review-success h3 {
      font-family: 'Playfair Display', serif;
      color: #1a1f4e; font-size: 24px; margin-bottom: 8px;
    }
    .review-success p { color: #888; font-size: 14px; }
    @media (max-width: 768px) {
      .review-form-card { padding: 28px 20px; }
      .review-row { grid-template-columns: 1fr; }
      .star-item { font-size: 38px; }
    }

    /* 2-col slider layout */
    .testi__content-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 270px 1fr;
      gap: 48px;
      align-items: start;
    }

    /* Rating breakdown panel */
    .testi__rating-panel {
      position: sticky;
      top: calc(var(--nav-h) + 24px);
      background: var(--white);
      border: 1.5px solid var(--border);
      border-top: 3px solid var(--gold);
      border-radius: 16px;
      padding: 28px 22px;
      box-shadow: 0 4px 20px rgba(26,31,78,.07);
    }

    .rating__overall {
      text-align: center;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 18px;
    }

    .rating__score-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.6rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
      margin-bottom: 8px;
    }

    .rating__score-stars {
      display: flex;
      justify-content: center;
      gap: 3px;
      color: var(--gold);
      font-size: .95rem;
      margin-bottom: 6px;
    }

    .rating__score-count {
      font-size: .72rem;
      color: var(--gray);
    }

    .rbar__row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 9px;
      cursor: pointer;
      border-radius: 6px;
      padding: 4px 6px;
      transition: background .18s;
    }
    .rbar__row:hover { background: rgba(201,168,76,.08); }
    .rbar__row.active { background: rgba(201,168,76,.14); }

    .rbar__label {
      font-size: .72rem;
      font-weight: 600;
      color: var(--navy);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 3px;
      min-width: 32px;
    }
    .rbar__label i { color: var(--gold); font-size: .6rem; }

    .rbar__track {
      flex: 1;
      height: 7px;
      background: #e8e4d9;
      border-radius: 4px;
      overflow: hidden;
    }

    .rbar__fill {
      height: 100%;
      background: var(--gold);
      border-radius: 4px;
      transition: width .7s cubic-bezier(.4,0,.2,1);
    }

    .rbar__count {
      font-size: .67rem;
      color: var(--gray);
      min-width: 24px;
      text-align: right;
    }

    /* .testi__slider-wrap inside the grid needs no extra max-width */
    .testi__content-grid .testi__slider-wrap {
      max-width: none;
      margin: 0;
    }

    @media (max-width: 960px) {
      .testi__content-grid { grid-template-columns: 1fr; }
      .testi__rating-panel { position: static; }
      .testi__content-grid .testi__slider-wrap { max-width: 100%; }
    }

    /* ═══════════════════════════════════════════════
       BLOG
    ═══════════════════════════════════════════════ */
    #blog {
      background: var(--white);
      padding: 110px 5%;
    }

    .blog__header-row {
      max-width: 1280px;
      margin: 0 auto 52px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }



    .blog__view-all {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 22px;
      background: var(--gold);
      color: var(--navy);
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      border-radius: 100px;
      border: 2px solid var(--gold);
      white-space: nowrap;
      flex-shrink: 0;
      transition: background var(--transition), color var(--transition),
                  transform var(--transition);
    }
    .blog__view-all:hover {
      background: transparent;
      color: var(--gold);
      transform: translateY(-1px);
    }

    .blog__grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    /* Blog card */
    .blog-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      border-top: 3px solid transparent;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: box-shadow var(--transition), transform var(--transition),
                  border-top-color var(--transition);
    }
    .blog-card:hover {
      box-shadow: 0 16px 44px rgba(26,31,78,.1);
      transform: translateY(-5px);
      border-top-color: var(--gold);
    }

    .blog-card__img {
      overflow: hidden;
      height: 210px;
      flex-shrink: 0;
    }
    .blog-card__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .65s cubic-bezier(.16,1,.3,1);
    }
    .blog-card:hover .blog-card__img img { transform: scale(1.06); }

    .blog-card__body {
      padding: 22px 20px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .blog-card__meta {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .blog-card__badge {
      display: inline-block;
      padding: 3px 10px;
      background: rgba(201,168,76,.12);
      color: var(--gold);
      border: 1px solid rgba(201,168,76,.3);
      border-radius: 100px;
      font-size: .66rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .blog-card__date {
      font-size: .75rem;
      color: var(--gray);
    }

    .blog-card__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.08rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .blog-card__excerpt {
      font-size: .85rem;
      color: var(--gray);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 18px;
    }

    .blog-card__read {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .8rem;
      font-weight: 600;
      color: var(--gold);
      text-decoration: none;
      transition: gap var(--transition);
    }
    .blog-card__read:hover { gap: 10px; }

    @media (max-width: 900px) {
      .blog__grid { grid-template-columns: 1fr 1fr; }
      #blog { padding: 80px 5%; }
    }
    @media (max-width: 560px) {
      .blog__grid { grid-template-columns: 1fr; }
      .blog__header-row { flex-direction: column; align-items: flex-start; }
    }

    /* ═══════════════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════════════ */
    #contact {
      background: var(--bg);
      padding: 110px 5%;
    }

    .contact__inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 72px;
      align-items: start;
    }

    /* Left info */
    .contact__info-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .contact__info-eyebrow::before {
      content: '';
      display: block;
      width: 26px;
      height: 1.5px;
      background: var(--gold);
      border-radius: 2px;
    }

    .contact__h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 2.5vw, 2.4rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .contact__info-sub {
      font-size: .93rem;
      color: var(--gray);
      line-height: 1.7;
      margin-bottom: 36px;
    }

    .contact__items {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact__item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .contact__item-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: .95rem;
      flex-shrink: 0;
    }

    .contact__item-label {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 3px;
    }

    .contact__item-val {
      font-size: .87rem;
      color: var(--gray);
      line-height: 1.5;
    }
    .contact__item-val a {
      color: var(--gray);
      text-decoration: none;
      transition: color var(--transition);
    }
    .contact__item-val a:hover { color: var(--gold); }

    .contact__hours {
      margin-top: 28px;
      padding: 16px 18px;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-left: 4px solid var(--gold);
      border-radius: 8px;
      font-size: .86rem;
      color: var(--navy);
    }
    .contact__hours strong { display: block; margin-bottom: 4px; color: var(--navy); }

    /* Right form */
    .contact__form-box {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 40px 36px;
      box-shadow: var(--shadow-sm);
    }

    .contact__form-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .contact__form-sub {
      font-size: .84rem;
      color: var(--gray);
      margin-bottom: 28px;
    }

    .cform__row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 14px;
    }

    .cform__group { margin-bottom: 14px; }

    .cform__label {
      display: block;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 6px;
    }

    .cform__input,
    .cform__select,
    .cform__textarea {
      width: 100%;
      padding: 11px 14px;
      font-family: 'Inter', sans-serif;
      font-size: .87rem;
      color: var(--navy);
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      outline: none;
      transition: border-color .22s, box-shadow .22s;
      appearance: none;
    }
    .cform__input:focus,
    .cform__select:focus,
    .cform__textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,168,76,.14);
    }
    .cform__input.error,
    .cform__select.error,
    .cform__textarea.error {
      border-color: #e04040;
      box-shadow: 0 0 0 3px rgba(224,64,64,.1);
    }
    .cform__textarea { resize: vertical; min-height: 110px; }

    .cform__select-wrap { position: relative; }
    .cform__select-wrap::after {
      content: '\f107';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: 13px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold);
      pointer-events: none;
      font-size: .8rem;
    }

    .cform__error {
      display: block;
      font-size: .74rem;
      color: #e04040;
      margin-top: 4px;
      min-height: 18px;
    }

    .cform__btn {
      width: 100%;
      padding: 14px;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Inter', sans-serif;
      font-size: .87rem;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      border-radius: var(--radius);
      border: 2px solid var(--gold);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      margin-top: 6px;
      transition: background var(--transition), color var(--transition),
                  transform var(--transition), box-shadow var(--transition);
    }
    .cform__btn:hover {
      background: var(--navy);
      color: var(--gold);
      border-color: var(--navy);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(26,31,78,.2);
    }
    .cform__btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }

    .cform__success {
      display: none;
      margin-top: 16px;
      padding: 14px 18px;
      background: rgba(34,134,58,.08);
      border: 1.5px solid rgba(34,134,58,.3);
      border-radius: 8px;
      color: #22863a;
      font-size: .88rem;
      font-weight: 600;
      text-align: center;
      gap: 8px;
    }
    .cform__success.show { display: flex; align-items: center; justify-content: center; }

    @media (max-width: 900px) {
      .contact__inner { grid-template-columns: 1fr; gap: 48px; }
      #contact { padding: 80px 5%; }
    }
    @media (max-width: 560px) {
      .cform__row { grid-template-columns: 1fr; }
      .contact__form-box { padding: 28px 20px; }
    }

    /* ═══════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════ */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,.55);
      padding: 72px 5% 0;
    }

    .footer__grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 52px;
      padding-bottom: 52px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    /* Brand col */
    .footer__brand-logo {
      display: block;
      margin-bottom: 18px;
      line-height: 0;
    }
    .footer__brand-logo img {
      height: 64px;
      width: auto;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }
    .footer__brand-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .02em;
    }
    .footer__brand-tagline {
      font-size: .83rem;
      color: rgba(255,255,255,.45);
      line-height: 1.65;
      margin-top: 10px;
      margin-bottom: 24px;
    }

    .footer__socials {
      display: flex;
      gap: 10px;
    }
    .footer__soc-btn {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: .88rem;
      text-decoration: none;
      transition: background var(--transition), color var(--transition),
                  border-color var(--transition), transform var(--transition);
    }
    .footer__soc-btn:hover {
      background: var(--gold);
      color: #fff;
      border-color: var(--gold);
      transform: translateY(-3px);
    }

    /* Link cols */
    .footer__col-title {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 20px;
    }

    .footer__col ul {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer__col ul li a {
      font-size: .83rem;
      color: rgba(255,255,255,.45);
      text-decoration: none;
      transition: color var(--transition), padding-left var(--transition);
      display: inline-block;
    }
    .footer__col ul li a:hover {
      color: var(--gold);
      padding-left: 4px;
    }

    .footer__contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
    }
    .footer__contact-item i {
      color: var(--gold);
      font-size: .85rem;
      margin-top: 2px;
      flex-shrink: 0;
      width: 14px;
    }
    .footer__contact-item span,
    .footer__contact-item a {
      font-size: .83rem;
      color: rgba(255,255,255,.45);
      text-decoration: none;
      line-height: 1.5;
      transition: color var(--transition);
    }
    .footer__contact-item a:hover { color: var(--gold); }

    /* Bottom bar */
    .footer__bottom {
      max-width: 1280px;
      margin: 0 auto;
      padding: 22px 0;
      border-top: 1px solid rgba(201,168,76,.3);
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: .76rem;
      flex-wrap: wrap;
      gap: 8px;
    }
    .footer__bottom-left {
      display: flex;
      flex-direction: column;
      gap: 4px;
      text-align: left;
    }
    .footer__bottom .gold { color: var(--gold); }
    .footer__legal-links { display: flex; gap: 20px; align-items: center; }
    .footer__legal-links a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: .76rem;
      transition: color 0.25s;
    }
    .footer__legal-links a:hover { color: var(--gold); }
    .footer__legal-links span { color: rgba(255,255,255,0.25); }

    /* WhatsApp float */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 990;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.55rem;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,.5);
      transition: transform .25s, box-shadow .25s;
      animation: waPulse 2.5s ease-in-out infinite;
    }
    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 28px rgba(37,211,102,.6);
    }
    @keyframes waPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
      50%       { box-shadow: 0 4px 32px rgba(37,211,102,.75); }
    }

    /* ── AI Agent floating button (stacks above the WhatsApp float) ── */
    .ai-agent-float {
      position: fixed;
      bottom: 96px;
      right: 28px;
      z-index: 990;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, #10143a, #1a1f4e);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(201,168,76,.45);
      transition: transform .25s, box-shadow .25s;
      animation: aiAgentPulse 2.5s ease-in-out infinite;
    }
    .ai-agent-float i { color: #dfc06e; }
    .ai-agent-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 28px rgba(201,168,76,.6);
    }
    @keyframes aiAgentPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,.45); }
      50%       { box-shadow: 0 4px 32px rgba(201,168,76,.7); }
    }
    .ai-agent-tooltip {
      position: absolute;
      right: calc(100% + 12px);
      top: 50%;
      transform: translateY(-50%) translateX(6px);
      background: #1a1f4e;
      color: #fff;
      font-size: .78rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      padding: 7px 12px;
      border-radius: 8px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s, transform .2s;
    }
    .ai-agent-tooltip::after {
      content: '';
      position: absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      border: 5px solid transparent;
      border-left-color: #1a1f4e;
    }
    .ai-agent-float:hover .ai-agent-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

    @media (max-width: 900px) {
      .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media (max-width: 560px) {
      footer { padding: 36px 5% 0; }
      .footer__grid { grid-template-columns: 0.8fr 0.95fr 1.25fr; gap: 20px 10px; align-items: start; padding-bottom: 28px; }
      .footer__col { min-width: 0; }
      .footer__brand { grid-column: 1 / -1; text-align: left; margin-bottom: 8px; }
      .footer__brand-logo { margin-left: -27px; }
      .footer__brand-logo img { height: 80px; }
      .footer__brand-name { font-size: 1.4rem; }
      .footer__brand-tagline { font-size: 0.92rem; }
      .footer__col-title {
        font-size: 0.58rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
        margin-bottom: 14px;
      }
      .footer__col ul { gap: 9px; }
      .footer__col ul li a { font-size: 0.72rem; line-height: 1.4; }
      .footer__contact-item { gap: 7px; margin-bottom: 11px; align-items: flex-start; }
      .footer__contact-item i { font-size: 0.72rem; width: 12px; margin-top: 2px; }
      .footer__contact-item span,
      .footer__contact-item a { font-size: 0.72rem; line-height: 1.45; word-break: break-word; }
      .footer__bottom {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        text-align: left;
        gap: 10px;
        padding: 16px 0 70px;
      }
      .footer__bottom-left { flex: 1; min-width: 0; }
      .footer__bottom span { font-size: .62rem; line-height: 1.55; }
      .footer__legal-links {
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        gap: 4px;
        flex-shrink: 0;
      }
      .footer__legal-links span { display: none; }
      .wa-float { width: 48px; height: 48px; bottom: 18px; right: 18px; font-size: 1.3rem; }
      .ai-agent-float { width: 48px; height: 48px; bottom: 74px; right: 18px; font-size: 1.2rem; }
    }

    /* ── NAVBAR FLOATING OVERLAY ── */
    #navbar, .navbar {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      z-index: 9999 !important;
      background: transparent !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      border: none !important;
      box-shadow: none !important;
      padding: 24px 60px !important;
      transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease !important;
    }
    /* ── Mobile navbar: compact logo, tighter padding, stays pinned ── */
    @media (max-width: 600px) {
      #navbar, .navbar {
        padding: 10px 16px !important;
        /* Always-on light backdrop so the navy/gold logo stays readable
           over any hero image, instead of only after scrolling past 80px */
        background: rgba(255, 255, 255, 0.92) !important;
        backdrop-filter: blur(12px) saturate(150%) !important;
        -webkit-backdrop-filter: blur(12px) saturate(150%) !important;
        box-shadow: 0 2px 16px rgba(0,0,0,0.08) !important;
      }
      .navbar__logo img {
        height: 52px !important;
        mix-blend-mode: normal !important;
      }
      .navbar__inner {
        gap: 10px;
      }
      .navbar__hamburger span {
        background: #1a1f4e !important;
      }
    }
    #navbar.navbar--scrolled {
      background: rgba(255, 255, 255, 0.15) !important;
      backdrop-filter: blur(16px) saturate(180%) !important;
      -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
      box-shadow: 0 4px 24px rgba(0,0,0,0.12) !important;
      border-bottom: 1px solid rgba(255,255,255,0.25) !important;
    }
    #navbar.navbar--scrolled .navbar__links li a {
      color: #1a1f4e !important;
    }
    #navbar.navbar--scrolled .navbar__links li a:hover {
      color: #c9a84c !important;
    }
    #navbar.navbar--scrolled .navbar__hamburger span {
      background: #1a1f4e !important;
    }
    .navbar__links li a {
      color: rgba(255,255,255,0.9) !important;
      font-weight: 500 !important;
    }
    .navbar__links li a:hover {
      color: #c9a84c !important;
    }
    .btn-nav-cta {
      background: #c9a84c !important;
      color: #1a1f4e !important;
      border-radius: 6px !important;
      padding: 10px 24px !important;
      border-color: #c9a84c !important;
    }
    .btn-nav-cta:hover {
      background: #b8963e !important;
      color: #1a1f4e !important;
    }
    .hero-new {
      padding-top: 0 !important;
      margin-top: 0 !important;
      position: relative !important;
      z-index: 1 !important;
    }

    /* ── ARABIC PATTERN BACKGROUND — body-level (uniform everywhere) ── */
    body {
      background-color: #f8f6f0 !important;
      background-image:
        linear-gradient(rgba(248,246,240,0.60), rgba(248,246,240,0.60)),
        url('BackGround Design.svg') !important;
      background-size: auto, 650px 650px !important;
      background-repeat: repeat !important;
    }
    /* Light sections — transparent so body pattern shows through uniformly */
    #about, #packages, #services, #how-it-works, #testimonials, #blog,
    #contact, #group-brands, .review-form-section {
      background-color: transparent !important;
      background-image: none !important;
    }

    /* ── PACKAGE CARD — features hidden by default ── */
    .pkg-card__img {
      width: 100% !important;
      aspect-ratio: 1 / 1 !important;
    }
    .pkg-card__list {
      display: none !important;
      margin-bottom: 0 !important;
    }
    .pkg-card__list.open {
      display: flex !important;
      margin-bottom: 20px !important;
      animation: pkgListOpen 0.28s ease forwards;
    }
    @keyframes pkgListOpen {
      from { opacity: 0; transform: translateY(-6px); }
      to   { opacity: 1; transform: translateY(0);    }
    }
    .pkg-card__btn--details {
      cursor: pointer;
      transition: color 0.2s;
    }

    /* ── SECTION PADDING FIX ── */
    #about        { padding: 60px 5% !important; }
    #packages     { padding: 60px 5% !important; }
    #services     { padding: 60px 5% !important; }
    #how-it-works { padding: 60px 5% !important; }
    #cta          { padding: 64px 5% !important; }
    #testimonials { padding: 60px 5% !important; }
    #blog         { padding: 60px 5% !important; }
    #contact      { padding: 60px 5% !important; }
    .hero-content-wrapper { padding: 100px 40px 60px !important; }
    .review-form-section  { padding: 40px 5% !important; }

    /* ── ICON FIXES (global) ── */

    /* Hero play button */
    .btn-play {
      width: 72px !important;
      height: 72px !important;
      background: #c9a84c !important;
      border: none !important;
      color: #fff !important;
      box-shadow: 0 6px 24px rgba(201,168,76,0.5) !important;
      border-radius: 50% !important;
    }
    .btn-play:hover {
      background: #b8963e !important;
      border: none !important;
      transform: scale(1.1) !important;
    }

    /* About trust icons: remove navy square, show plain gold icon */
    .about__trust-icon {
      background: none !important;
      border-radius: 0 !important;
      width: auto !important;
      height: auto !important;
      color: #c9a84c !important;
    }
    .about__trust-icon i { color: #c9a84c !important; font-size: 30px !important; }
    .about__trust-item:hover .about__trust-icon i { color: #c9a84c !important; }

    /* Steps: remove gold filled circle, bare icon only */
    .step__icon-wrap {
      background: none !important;
      border: none !important;
      box-shadow: none !important;
      width: auto !important;
      height: auto !important;
      border-radius: 0 !important;
      margin-bottom: 10px !important;
    }
    .step__icon-wrap i { color: #c9a84c !important; font-size: 40px !important; }
    .step:hover .step__icon-wrap { background: none !important; transform: none !important; box-shadow: none !important; }
    .step:hover .step__icon-wrap i { color: #c9a84c !important; }

    /* Services: remove gold filled circle, bare icon only */
    .srv-card__icon {
      background: none !important;
      border: none !important;
      box-shadow: none !important;
      width: auto !important;
      height: auto !important;
      border-radius: 0 !important;
    }
    .srv-card__icon i { color: #c9a84c !important; font-size: 36px !important; }
    .srv-card:hover .srv-card__icon { background: none !important; transform: none !important; }
    .srv-card:hover .srv-card__icon i { color: #c9a84c !important; }

    /* Contact info icons: remove colored circles, plain gold */
    .ctc-info-icon {
      background: none !important;
      border-radius: 0 !important;
      width: 26px !important;
      height: auto !important;
      flex-shrink: 0 !important;
    }
    .ctc-info-icon i { color: #c9a84c !important; font-size: 20px !important; }

    /* Testimonial avatars: already transparent, ensure gold icon visible */
    .testi-card__avatar {
      background: none !important;
      border: none !important;
      box-shadow: none !important;
    }

    /* Footer social: circle border style */
    .footer__soc-btn {
      width: 38px !important;
      height: 38px !important;
      border-radius: 50% !important;
      background: transparent !important;
      border: 1px solid rgba(255,255,255,0.2) !important;
      color: rgba(255,255,255,0.7) !important;
    }
    .footer__soc-btn:hover {
      background: #c9a84c !important;
      border-color: #c9a84c !important;
      color: #fff !important;
      transform: translateY(-3px) !important;
    }

    /* Contact item icons (original CSS still in file) */
    .contact__item-icon {
      background: none !important;
      border-radius: 0 !important;
      width: auto !important;
      height: auto !important;
      color: #c9a84c !important;
    }

    /* ── PACKAGES REDESIGN ── */
    .pkg-filter-tabs {
      display: flex;
      gap: 10px;
      justify-content: center;
      flex-wrap: wrap;
      margin: 0 auto 44px;
      max-width: 860px;
    }
    .pkg-filter-btn {
      padding: 9px 22px;
      border: 1.5px solid #ddd8cf;
      border-radius: 50px;
      background: transparent;
      color: #1a1f4e;
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.22s ease;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.01em;
    }
    .pkg-filter-btn:hover { border-color: #c9a84c; color: #c9a84c; }
    .pkg-filter-btn.active { background: #c9a84c; border-color: #c9a84c; color: #fff; }
    .pkg-grid {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px; align-items: start;
    }
    .pkg-grid-item.hidden { display: none !important; }
    @media (max-width: 1024px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) {
      .pkg-grid { grid-template-columns: 1fr; }
      .pkg-filter-btn { padding: 7px 16px; font-size: 0.8rem; }
    }
    .pkg-grid .pkg-card__img { aspect-ratio: 1 / 1 !important; }
    .pkg-grid .pkg-card { min-height: auto !important; }
    .pkg-card__desc {
      font-size: 0.83rem;
      color: #7a7a8a;
      line-height: 1.6;
      margin-bottom: 10px;
    }
    .pkg-card__meta {
      display: flex;
      gap: 14px;
      font-size: 0.78rem;
      color: #7a7a8a;
      margin-bottom: 14px;
      font-weight: 500;
      flex-wrap: wrap;
    }
    .pkg-card__meta span { display: flex; align-items: center; gap: 4px; }
    .pkg-card__btn.pkg-card__btn--outline,
    .pkg-card__btn.pkg-card__btn--gold {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    /* ── CONTACT REDESIGN ── */
    #contact { padding: 60px 5% !important; }
    .ctc-section-header {
      max-width: 1200px;
      margin: 0 auto 48px;
    }
    .contact__inner {
      max-width: 1200px !important;
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 48px !important;
      align-items: start !important;
    }
    .ctc-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: #c9a84c; margin-bottom: 10px;
    }
    .ctc-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700;
      color: #1a1f4e; line-height: 1.2; margin-bottom: 12px;
    }
    .ctc-sub { font-size: 0.9rem; color: #7a7a8a; line-height: 1.75; margin-bottom: 0; }
    .ctc-form-card {
      background: #fff; border-radius: 16px; overflow: hidden;
      box-shadow: 0 8px 40px rgba(26,31,78,0.11);
      height: 100%; display: flex; flex-direction: column;
    }
    .ctc-form-header {
      background: #1a1f4e; padding: 20px 26px;
      display: flex; align-items: center; gap: 14px; flex-shrink: 0;
    }
    .ctc-form-logo { height: 38px; width: auto; filter: brightness(10); }
    .ctc-form-agency { color: #fff; font-weight: 700; font-size: 0.98rem; }
    .ctc-form-tagline { color: rgba(255,255,255,0.6); font-size: 0.76rem; margin-top: 3px; }
    .ctc-form-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
    .ctc-form-body form { flex: 1; display: flex; flex-direction: column; }
    .ctc-form-body .cform__group:last-of-type { flex: 1; display: flex; flex-direction: column; }
    .ctc-form-body .cform__textarea { flex: 1; min-height: 140px; resize: none; }
    .ctc-right { display: flex; flex-direction: column; gap: 22px; }
    .ctc-person-name {
      font-family: 'Playfair Display', serif; font-size: 1.5rem;
      font-weight: 700; color: #1a1f4e; margin-bottom: 8px;
    }
    .ctc-person-bio { font-size: 0.87rem; color: #7a7a8a; line-height: 1.75; }
    .ctc-info-list { display: flex; flex-direction: column; gap: 13px; }
    .ctc-info-item { display: flex; align-items: center; gap: 14px; }
    .ctc-info-icon {
      width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 0.88rem;
    }
    .ctc-icon--wa  { background: #25D366; }
    .ctc-icon--ph  { background: #1a1f4e; }
    .ctc-icon--em  { background: #c9a84c; }
    .ctc-icon--fb  { background: #1877F2; }
    .ctc-icon--ig  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
    .ctc-icon--loc { background: #e8445a; }
    .ctc-info-label {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: #9999aa; margin-bottom: 2px;
    }
    .ctc-info-val { font-size: 0.875rem; color: #1a1f4e; font-weight: 500; text-decoration: none; }
    .ctc-info-val:hover { color: #c9a84c; }
    .ctc-map { border-radius: 12px; overflow: hidden; border: 1px solid rgba(26,31,78,0.1); flex: 1; min-height: 220px; }
    .ctc-map iframe { display: block; width: 100%; height: 100%; min-height: 220px; border: none; }
    .ctc-right { display: flex; flex-direction: column; gap: 22px; align-self: stretch; }
    .contact__inner { align-items: stretch !important; }
    .ctc-wa-cta {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      background: #1a1f4e; color: #fff; padding: 15px 28px; border-radius: 12px;
      font-size: 0.95rem; font-weight: 700; text-decoration: none;
      transition: background 0.25s ease;
    }
    .ctc-wa-cta:hover { background: #25D366; color: #fff; }
    .ctc-wa-cta i { font-size: 1.1rem; }
    @media (max-width: 900px) {
      .contact__inner { grid-template-columns: 1fr !important; }
    }

    /* ===== SCROLL ANIMATIONS ===== */
    [data-animate] {
      opacity: 0;
      transform: translateY(50px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    [data-animate].animated {
      opacity: 1;
      transform: translateY(0);
    }
    [data-animate="fade-up"] { transform: translateY(60px); }
    [data-animate="fade-left"] { transform: translateX(-60px); }
    [data-animate="fade-right"] { transform: translateX(60px); }
    [data-animate="zoom-in"] { transform: scale(0.85); }
    [data-animate="fade-left"].animated,
    [data-animate="fade-right"].animated,
    [data-animate="zoom-in"].animated {
      transform: translateY(0) translateX(0) scale(1);
      opacity: 1;
    }
    [data-delay="100"] { transition-delay: 0.1s; }
    [data-delay="200"] { transition-delay: 0.2s; }
    [data-delay="300"] { transition-delay: 0.3s; }
    [data-delay="400"] { transition-delay: 0.4s; }
    [data-delay="500"] { transition-delay: 0.5s; }
    [data-delay="600"] { transition-delay: 0.6s; }

    .nav-animate {
      opacity: 0;
      transform: translateY(-20px);
      animation: navSlideIn 0.6s ease forwards;
    }
    @keyframes navSlideIn { to { opacity: 1; transform: translateY(0); } }

    .section-line {
      display: inline-block;
      width: 0;
      height: 2px;
      background: #c9a84c;
      transition: width 0.8s ease;
      vertical-align: middle;
      margin: 0 10px;
    }
    .animated .section-line { width: 40px; }

    .t-card, .blog-card, .srv-card, .pkg-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }
    .t-card:hover, .blog-card:hover, .srv-card:hover {
      transform: translateY(-8px) !important;
      box-shadow: 0 20px 40px rgba(26,31,78,0.15) !important;
    }

    .stat-number { display: inline-block; }
    /* ===== END ANIMATIONS ===== */

    /* ===== NAV DROPDOWN ===== */
    .nav-has-dropdown { position: relative; }

    .nav-dropdown-toggle {
      background: none;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 6px 14px;
      font-family: 'Josefin Sans', sans-serif;
      font-size: inherit;
      font-weight: 600;
      color: rgba(255,255,255,0.9);
      transition: color .28s;
    }
    .nav-dropdown-toggle:hover,
    .nav-has-dropdown:hover .nav-dropdown-toggle { color: var(--gold) !important; }
    #navbar.navbar--scrolled .nav-dropdown-toggle { color: #1a1f4e !important; }
    #navbar.navbar--scrolled .nav-dropdown-toggle:hover,
    #navbar.navbar--scrolled .nav-has-dropdown:hover .nav-dropdown-toggle { color: var(--gold) !important; }

    .nav-dropdown-toggle .nav-chevron {
      font-size: 10px;
      transition: transform 0.25s ease;
    }
    .nav-has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

    .nav-dropdown {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      min-width: 170px;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 8px 32px rgba(26,31,78,0.14);
      padding: 8px 0;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateX(-50%) translateY(-8px);
        transition: opacity 0.22s ease, transform 0.22s ease;
      z-index: 9999;
    }
    .nav-has-dropdown:hover .nav-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown li a {
        font-family: 'Josefin Sans', sans-serif;
      display: block;
      padding: 11px 22px;
      color: #1a1f4e !important;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s, background 0.2s;
    }
    .nav-dropdown li a::after { display: none !important; }
    .nav-dropdown li a:hover { color: var(--gold) !important; background: #f8f6f0; }
    /* ===== END NAV DROPDOWN ===== */
  
  
  /* MOBILE STICKY NAVBAR */
  @media (max-width: 560px) {
        nav { position: sticky; top: 0; z-index: 1000; width: 100%; }
          .nav-brand { flex: 1; justify-content: flex-start; }
            .nav-brand img { max-width: 140px; height: auto; nav-brand}
  }