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

    :root {
      --gold:       #c4974a;
      --gold-dark:  #9a7435;
      --gold-shine: #e8c27a;
      --gold-light: #f3e8d4;
      --gold-pale:  #faf5ec;
      --navy:       #0b1c35;
      --navy-mid:   #162d4f;
      --navy-light: #1e3d68;
      --cream:      #f9f5ef;
      --white:      #ffffff;
      --text:       #1a1a2a;
      --muted:      #6b7180;
      --border:     #e4ddd2;
      --shadow-sm:  0 2px 12px rgba(11,28,53,0.07);
      --shadow:     0 10px 40px rgba(11,28,53,0.11);
      --shadow-lg:  0 24px 72px rgba(11,28,53,0.16);
      --radius:     18px;
      --max:        1260px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.65;
      overflow-x: hidden;
    }

    a { text-decoration: none; color: inherit; }
    ul { list-style: none; padding: 0; }

    .container {
      width: min(100% - 48px, var(--max));
      margin: 0 auto;
    }

    /* ════════════════════════════════
       WHATSAPP SVG ICON
    ════════════════════════════════ */
    .wa-icon {
      display: inline-block;
      width: 20px; height: 20px;
      flex-shrink: 0;
    }

    /* ════════════════════════════════
       TOPBAR
    ════════════════════════════════ */
    .topbar {
      background: var(--navy);
      padding: 10px 0;
      border-bottom: 1px solid rgba(196,151,74,0.15);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .topbar-left {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .topbar-contact {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12.5px;
      color: #8fa3c0;
      transition: color 0.2s;
    }

    .topbar-contact:hover { color: var(--gold-shine); }

    .topbar-contact .tc-label {
      color: #4d6180;
      text-transform: uppercase;
      font-size: 10px;
      letter-spacing: 0.8px;
      font-weight: 600;
    }

    .topbar-div {
      width: 1px; height: 14px;
      background: rgba(255,255,255,0.08);
    }

    .lang-switcher {
      display: flex;
      gap: 4px;
    }

    .lang-switcher a {
      font-size: 11.5px;
      font-weight: 600;
      color: #4d6180;
      padding: 3px 8px;
      border-radius: 4px;
      transition: all 0.2s;
      letter-spacing: 0.3px;
    }

    .lang-switcher a.active,
    .lang-switcher a:hover { color: var(--gold); }

    /* ════════════════════════════════
       NAVBAR
    ════════════════════════════════ */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 74px;
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 13px;
      flex-shrink: 0;
    }

    .brand-logo {
      width: 48px; height: 48px;
      border-radius: 4px;
      background: linear-gradient(145deg, var(--gold) 0%, var(--gold-dark) 100%);
      display: grid;
      place-items: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      box-shadow: 0 4px 16px rgba(196,151,74,0.35);
    }

    .brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--navy);
      letter-spacing: 0.2px;
      line-height: 1;
    }

    .brand-sub {
      font-size: 11px;
      color: var(--muted);
      font-weight: 400;
      letter-spacing: 0.5px;
      margin-top: 3px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .nav-item { position: relative; }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 9px 13px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      border-radius: 4px;
      transition: all 0.2s;
      white-space: nowrap;
      letter-spacing: 0.1px;
    }

    .nav-link:hover, .nav-link.active { color: var(--gold); background: var(--gold-pale); }

    .nav-link svg.chev { transition: transform 0.2s; }
    .nav-item:hover .nav-link svg.chev { transform: rotate(180deg); }

    .dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      box-shadow: var(--shadow-lg);
      padding: 8px;
      min-width: 210px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: all 0.22s ease;
      z-index: 200;
    }

    .nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

    .dropdown a {
      display: block;
      padding: 9px 14px;
      font-size: 13.5px;
      color: var(--text);
      border-radius: 4px;
      transition: all 0.15s;
    }

    .dropdown a:hover { background: var(--gold-pale); color: var(--gold); }

    .nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

    /* BUTTONS */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 22px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      transition: all 0.22s ease;
      cursor: pointer;
      border: none;
      letter-spacing: 0.1px;
    }

    .btn-wa {
      background: #25D366;
      color: #fff;
      padding: 11px 18px;
    }

    .btn-wa:hover {
      background: #1ebe5d;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(37,211,102,0.38);
    }

    .btn-gold {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: #fff;
    }

    .btn-gold:hover {
      background: linear-gradient(135deg, var(--gold-shine) 0%, var(--gold) 100%);
      transform: translateY(-1px);
      box-shadow: 0 6px 22px rgba(196,151,74,0.42);
    }

    .btn-outline-gold {
      border: 1.5px solid var(--gold);
      color: var(--gold);
      background: transparent;
    }

    .btn-outline-gold:hover { background: var(--gold-pale); }

    .btn-ghost-dark {
      border: 1.5px solid rgba(255,255,255,0.2);
      color: #fff;
      background: rgba(255,255,255,0.06);
    }

    .btn-ghost-dark:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); }

    .btn-white {
      background: #fff;
      color: var(--navy);
      font-weight: 700;
    }

    .btn-white:hover { background: var(--cream); }

    .btn-outline-white {
      border: 1.5px solid rgba(255,255,255,0.4);
      color: #fff;
      background: transparent;
    }

    .btn-outline-white:hover { background: rgba(255,255,255,0.1); }

    .btn-agoda {
      background: #e31837;
      color: #fff;
      font-size: 13px;
      padding: 10px 18px;
    }

    .btn-agoda:hover { background: #c0102a; transform: translateY(-1px); box-shadow: 0 5px 16px rgba(227,24,55,0.35); }

    .btn-booking {
      background: #003580;
      color: #fff;
      font-size: 13px;
      padding: 10px 18px;
    }

    .btn-booking:hover { background: #002660; transform: translateY(-1px); box-shadow: 0 5px 16px rgba(0,53,128,0.35); }

    .menu-toggle {
      display: none;
      background: none;
      border: 1.5px solid var(--border);
      border-radius: 4px;
      padding: 8px 11px;
      cursor: pointer;
      font-size: 18px;
      color: var(--navy);
    }

    /* ════════════════════════════════
       HERO
    ════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy);
    }

    .hero-bg {
      position: absolute; inset: 0;
      background: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
      opacity: 0.14;
    }

    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(110deg,
        rgba(11,28,53,0.98) 0%,
        rgba(11,28,53,0.85) 52%,
        rgba(11,28,53,0.42) 100%);
    }

    /* Gold line accent */
    .hero::after {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, transparent, var(--gold), var(--gold-shine), transparent);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 90px 0 70px;
      width: 100%;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: center;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: rgba(196,151,74,0.12);
      border: 1px solid rgba(196,151,74,0.3);
      color: var(--gold-shine);
      padding: 7px 16px;
      border-radius: 999px;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .hero-tag::before {
      content: '';
      width: 5px; height: 5px;
      background: var(--gold);
      border-radius: 50%;
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(40px, 5.2vw, 68px);
      font-weight: 600;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 24px;
      letter-spacing: -0.3px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-shine);
    }

    .hero-rule {
      width: 56px; height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin-bottom: 22px;
    }

    .hero-sub {
      font-size: 16.5px;
      color: #7a96b8;
      max-width: 540px;
      margin-bottom: 38px;
      font-weight: 300;
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      gap: 13px;
      flex-wrap: wrap;
      margin-bottom: 54px;
    }

    .hero-stats {
      display: flex;
      gap: 38px;
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .hero-stat strong {
      display: block;
      font-family: 'DM Sans', -apple-system, sans-serif;
      font-size: 32px;
      color: var(--gold);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.3px;
    }

    .hero-stat span {
      font-size: 12px;
      color: #4d6180;
      font-weight: 400;
      margin-top: 4px;
      display: block;
    }

    /* Enquiry card */
    .hero-card {
      background: var(--white);
      border-radius: 4px;
      padding: 34px 30px;
      box-shadow: var(--shadow-lg);
      border-top: 3px solid var(--gold);
    }

    .hero-card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .hero-card-sub {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 24px;
    }

    .form-group { margin-bottom: 14px; }

    .form-group label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 0.7px;
    }

    .form-group select,
    .form-group input {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 4px;
      font-size: 13.5px;
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--cream);
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
    }

    .form-group select:focus,
    .form-group input:focus { border-color: var(--gold); }

    .hero-card .btn { width: 100%; justify-content: center; padding: 14px; font-size: 15px; margin-top: 4px; }

    .card-note {
      text-align: center;
      font-size: 12px;
      color: var(--muted);
      margin-top: 11px;
    }

    /* ════════════════════════════════
       QUICK BAR
    ════════════════════════════════ */
    .quick-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }

    .quick-bar-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .quick-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 22px 24px;
      border-right: 1px solid var(--border);
      cursor: pointer;
      transition: all 0.2s;
    }

    .quick-item:last-child { border-right: none; }
    .quick-item:hover { background: var(--gold-pale); }
    .quick-item:hover .qi-icon { background: var(--gold); color: #fff; }

    .qi-icon {
      width: 44px; height: 44px;
      border-radius: 4px;
      background: var(--gold-light);
      display: grid;
      place-items: center;
      font-size: 19px;
      flex-shrink: 0;
      transition: all 0.2s;
    }

    .qi-label { font-size: 13px; font-weight: 600; color: var(--navy); }
    .qi-sub { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
    .qi-arrow { margin-left: auto; font-size: 16px; color: var(--border); transition: color 0.2s; }
    .quick-item:hover .qi-arrow { color: var(--gold); }

    /* ════════════════════════════════
       SECTION SHARED
    ════════════════════════════════ */
    .section { padding: 88px 0; }
    .section-alt { background: var(--cream); }
    .section-navy { background: var(--navy); }
    .section-dark { background: var(--navy-mid); }

    .section-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gold);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-label::before {
      content: '';
      width: 24px; height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 3.8vw, 46px);
      font-weight: 600;
      color: var(--navy);
      line-height: 1.12;
      margin-bottom: 14px;
    }

    .section-title em { font-style: italic; color: var(--gold); }
    .section-title.light { color: #fff; }

    .section-desc {
      font-size: 16px;
      color: var(--muted);
      max-width: 640px;
      line-height: 1.75;
    }

    .section-desc.light { color: #b8c8de; }

    .section-head { margin-bottom: 54px; }
    .section-head.center { text-align: center; }
    .section-head.center .section-label { justify-content: center; }
    .section-head.center .section-label::before { display: none; }
    .section-head.center .section-desc { margin: 0 auto; }

    /* ════════════════════════════════
       ABOUT
    ════════════════════════════════ */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .about-image-wrap { position: relative; }

    .about-image {
      width: 100%;
      height: 520px;
      border-radius: 4px;
      background: url("https://images.unsplash.com/photo-1538108149393-fbbd81895907?auto=format&fit=crop&w=900&q=80") center/cover;
      box-shadow: var(--shadow-lg);
    }

    .about-badge {
      position: absolute;
      bottom: -22px;
      right: -22px;
      background: var(--white);
      border-radius: 4px;
      padding: 20px 26px;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 16px;
      border-left: 4px solid var(--gold);
    }

    .badge-num {
      font-family: 'DM Sans', -apple-system, sans-serif;
      font-size: 38px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -0.5px;
    }

    .badge-text strong {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
    }

    .badge-text span { font-size: 11.5px; color: var(--muted); }

    .about-content { display: flex; flex-direction: column; gap: 22px; }

    .about-content p { font-size: 16px; color: var(--muted); line-height: 1.8; }

    /* Ranking strip — no hashtag, luxury styled */
    .ranking-strip {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .rank-item {
      background: var(--gold-pale);
      border: 1px solid var(--gold-light);
      border-radius: 4px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .rank-num {
      font-family: 'DM Sans', -apple-system, sans-serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      flex-shrink: 0;
      letter-spacing: -0.5px;
    }

    .rank-num sup {
      font-family: 'DM Sans', -apple-system, sans-serif;
      font-size: 16px;
      font-weight: 600;
      vertical-align: super;
      color: var(--gold);
      margin-left: 1px;
    }

    .rank-desc strong {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 2px;
    }

    .rank-desc span { font-size: 12px; color: var(--muted); }

    /* ════════════════════════════════
       HOSPITALS — MAIN ATTRACTION
    ════════════════════════════════ */
    .hospitals-section { background: var(--navy); }

    .hospital-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .hospital-card {
      border-radius: 4px;
      overflow: hidden;
      background: var(--navy-mid);
      border: 1px solid rgba(196,151,74,0.15);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    }

    .hospital-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 32px 80px rgba(0,0,0,0.4);
      border-color: rgba(196,151,74,0.45);
    }

    .hospital-img {
      height: 240px;
      position: relative;
      overflow: hidden;
    }

    .hospital-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.55s ease;
    }

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

    .hospital-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11,28,53,0.1) 0%, rgba(11,28,53,0.75) 100%);
    }

    .hosp-flag {
      position: absolute;
      top: 16px; left: 16px;
      background: var(--gold);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 999px;
      z-index: 2;
      box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    }

    .hospital-body {
      padding: 24px 22px 0;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .hospital-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .hospital-body > p {
      font-size: 16px;
      color: #7a96b8;
      line-height: 1.65;
      margin-bottom: 16px;
    }

    /* Specialty tags */
    .hosp-specialties {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 18px;
    }

    .hosp-spec {
      display: flex;
      align-items: center;
      gap: 5px;
      background: rgba(196,151,74,0.08);
      border: 1px solid rgba(196,151,74,0.22);
      color: var(--gold-shine);
      font-size: 11px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 999px;
      transition: all 0.18s;
      cursor: default;
    }

    .hosp-spec:hover {
      background: rgba(196,151,74,0.18);
      border-color: rgba(196,151,74,0.45);
    }

    .hosp-spec::before {
      content: '+';
      font-size: 10px;
      color: var(--gold);
      font-weight: 800;
    }

    .hosp-divider {
      height: 1px;
      background: rgba(255,255,255,0.06);
      margin: 0 -22px;
    }

    /* Google Maps section */
    .hosp-map-section {
      padding: 16px 0 0;
    }

    .hosp-map-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .hosp-map-label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: #4d6180;
    }

    .hosp-map-label svg { flex-shrink: 0; }

    .hosp-address {
      font-size: 11.5px;
      color: #5a7090;
      line-height: 1.5;
      margin-bottom: 10px;
    }

    .hosp-map-toggle {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 600;
      color: var(--gold);
      cursor: pointer;
      padding: 4px 10px;
      border-radius: 4px;
      border: 1px solid rgba(196,151,74,0.25);
      background: rgba(196,151,74,0.06);
      transition: all 0.2s;
      white-space: nowrap;
    }

    .hosp-map-toggle:hover { background: rgba(196,151,74,0.15); }

    .hosp-map-embed {
      width: 100%;
      height: 160px;
      border-radius: 4px;
      overflow: hidden;
      display: none;
      margin-bottom: 10px;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .hosp-map-embed.open { display: block; }

    .hosp-map-embed iframe {
      width: 100%; height: 100%;
      border: none;
      filter: invert(90%) hue-rotate(180deg) saturate(0.8) brightness(0.85);
    }

    .hosp-open-map {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 11.5px;
      font-weight: 600;
      color: var(--gold-shine);
      text-decoration: none;
      transition: color 0.2s;
    }

    .hosp-open-map:hover { color: #fff; }

    /* Nearby stays — premium redesign */
    .hosp-nearby {
      background: rgba(255,255,255,0.03);
      border-top: 1px solid rgba(255,255,255,0.06);
      margin: 16px -22px 0;
      padding: 18px 22px 22px;
      border-radius: 0 0 4px 4px;
    }

    .hosp-nearby-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
    }

    .hosp-nearby-icon {
      width: 28px; height: 28px;
      background: rgba(196,151,74,0.12);
      border-radius: 4px;
      display: grid;
      place-items: center;
      font-size: 14px;
      flex-shrink: 0;
    }

    .hosp-nearby-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.7px;
      text-transform: uppercase;
      color: var(--gold-shine);
    }

    .hosp-nearby-sub {
      font-size: 11px;
      color: #4d6180;
      margin-top: 1px;
    }

    .hosp-nearby-btns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .hosp-stay-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 12px 14px;
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      transition: all 0.22s;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hosp-stay-btn.agoda {
      background: #e31837;
      color: #fff;
      border: none;
    }

    .hosp-stay-btn.agoda:hover {
      background: #c8102e;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(227,24,55,0.38);
    }

    .hosp-stay-btn.booking {
      background: #003580;
      color: #fff;
      border: none;
    }

    .hosp-stay-btn.booking:hover {
      background: #002660;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0,53,128,0.38);
    }

    /* Agoda SVG logo */
    .agoda-logo {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }

    .agoda-logo svg { display: block; }

    /* Booking.com SVG logo */
    .booking-logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .booking-logo svg { display: block; }

    .hosp-stay-btn-text { line-height: 1.2; text-align: left; }
    .hosp-stay-btn-action { font-size: 10px; font-weight: 400; opacity: 0.82; display: block; margin-top: 1px; }

    /* Tourism/activities strip below hospitals */
    .tourism-strip {
      margin-top: 52px;
      background: rgba(196,151,74,0.06);
      border: 1px solid rgba(196,151,74,0.18);
      border-radius: 4px;
      padding: 32px 40px;
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .tourism-strip-icon {
      font-size: 38px;
      flex-shrink: 0;
    }

    .tourism-strip-text { flex: 1; min-width: 200px; }

    .tourism-strip-text h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: #fff;
      margin-bottom: 5px;
    }

    .tourism-strip-text p { font-size: 16px; color: #7a96b8; line-height: 1.6; }

    .tourism-strip-btns {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .tourism-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 22px;
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      transition: all 0.22s;
    }

    .tourism-btn.agoda {
      background: #e31837;
      color: #fff;
    }

    .tourism-btn.agoda:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(227,24,55,0.35); }

    .tourism-btn.booking {
      background: #003580;
      color: #fff;
    }

    .tourism-btn.booking:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,53,128,0.35); }

    .tourism-btn-text { line-height: 1.2; }
    .tourism-btn-name { display: block; font-size: 14px; font-weight: 800; }
    .tourism-btn-sub { display: block; font-size: 10.5px; font-weight: 400; opacity: 0.8; }

    /* ════════════════════════════════
       SINGAPORE ATTRACTIONS — WHY VISIT
    ════════════════════════════════ */
    .attractions-section { background: var(--navy); position: relative; }

    /* ── Cinematic picture-swap showcase ───────────────── */
    .attractions-showcase {
      display: block;
      margin-bottom: 56px;
    }

    /* Large featured stage — full width, cinematic */
    .showcase-stage {
      position: relative;
      height: 640px;
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid rgba(196,151,74,0.2);
      background: var(--navy-mid);
      box-shadow: 0 28px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(232,194,122,0.08);
    }

    .stage-slide {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 56px 64px 72px;
      opacity: 0;
      transform: scale(1.06);
      transition: opacity 1s ease;
      pointer-events: none;
      will-change: transform, opacity;
    }

    .stage-slide.is-active {
      opacity: 1;
      pointer-events: auto;
      animation: kenBurns 7s ease-out forwards;
    }

    /* Cinematic slow zoom on the active slide */
    @keyframes kenBurns {
      0%   { transform: scale(1.02) translate3d(0, 0, 0); }
      100% { transform: scale(1.12) translate3d(-1.2%, -1%, 0); }
    }

    /* Alternate the drift direction on even slides for variety */
    .stage-slide:nth-child(even).is-active {
      animation: kenBurnsAlt 7s ease-out forwards;
    }
    @keyframes kenBurnsAlt {
      0%   { transform: scale(1.02) translate3d(0, 0, 0); }
      100% { transform: scale(1.12) translate3d(1.2%, -1%, 0); }
    }

    /* Stronger vignette for cinematic contrast + caption legibility */
    .stage-slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(11,28,53,0) 30%, rgba(11,28,53,0.55) 70%, rgba(11,28,53,0.92) 100%),
        linear-gradient(90deg, rgba(11,28,53,0.45) 0%, rgba(11,28,53,0) 55%);
      pointer-events: none;
    }

    /* Hide the placeholder emoji now that we have real photography */
    .stage-icon { display: none; }

    .stage-caption {
      position: relative;
      z-index: 2;
      max-width: 640px;
    }

    /* Animated entrance — each piece staggered for a premium feel */
    .stage-slide .stage-tag,
    .stage-slide .stage-caption h3 {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease-out, transform 0.9s cubic-bezier(.2,.7,.3,1);
    }
    .stage-slide.is-active .stage-tag {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.35s;
    }
    .stage-slide.is-active .stage-caption h3 {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.55s;
    }

    .stage-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.2px;
      text-transform: uppercase;
      color: var(--gold-shine);
      padding: 7px 16px;
      border: 1px solid rgba(232,194,122,0.5);
      border-radius: 4px;
      background: rgba(11,28,53,0.55);
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
      margin-bottom: 18px;
    }

    .stage-caption h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      font-weight: 600;
      color: #fff;
      line-height: 1.08;
      letter-spacing: 0.2px;
      text-shadow: 0 4px 30px rgba(0,0,0,0.6);
    }

    /* Counter badge */
    .stage-counter {
      position: absolute;
      top: 24px;
      right: 28px;
      z-index: 3;
      font-family: 'Cormorant Garamond', serif;
      font-size: 15px;
      letter-spacing: 2.5px;
      color: var(--gold-shine);
      background: rgba(11,28,53,0.55);
      padding: 8px 16px;
      border-radius: 4px;
      border: 1px solid rgba(196,151,74,0.35);
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
    }

    .stage-counter .sc-sep { opacity: 0.55; margin: 0 4px; }

    /* Prev / Next buttons */
    .stage-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(196,151,74,0.4);
      background: rgba(11,28,53,0.55);
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
      color: var(--gold-shine);
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      transition: all 0.25s ease;
      display: grid;
      place-items: center;
      font-family: 'Cormorant Garamond', serif;
    }

    .stage-nav:hover {
      background: var(--gold);
      color: #fff;
      border-color: var(--gold);
    }

    .stage-prev { left: 20px; }
    .stage-next { right: 20px; }

    /* ─── Progress bar at bottom of stage (fills over auto-swap interval) ─── */
    .stage-progress {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      background: rgba(255,255,255,0.08);
      z-index: 4;
      overflow: hidden;
    }
    .stage-progress-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #c4974a 0%, #e8c27a 50%, #f3e8d4 100%);
      box-shadow: 0 0 14px rgba(232,194,122,0.55);
      transform-origin: left center;
    }

    /* ─── Dot navigation (bottom-right of stage) ─── */
    .stage-dots {
      position: absolute;
      right: 28px;
      bottom: 28px;
      z-index: 5;
      display: flex;
      gap: 9px;
      padding: 10px 14px;
      background: rgba(11,28,53,0.4);
      border: 1px solid rgba(196,151,74,0.18);
      border-radius: 4px;
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
    }

    .stage-dot {
      all: unset;
      cursor: pointer;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.35);
      transition: all 0.45s cubic-bezier(.2,.7,.3,1);
      box-sizing: content-box;
    }

    .stage-dot:hover {
      background: rgba(255,255,255,0.7);
      transform: scale(1.2);
    }

    .stage-dot.is-active {
      width: 30px;
      border-radius: 4px;
      background: linear-gradient(90deg, #c4974a, #e8c27a);
      box-shadow: 0 0 10px rgba(232,194,122,0.5);
    }

    /* Respect reduced motion preferences */
    @media (prefers-reduced-motion: reduce) {
      .stage-slide.is-active,
      .stage-slide:nth-child(even).is-active { animation: none; transform: none; }
      .stage-slide .stage-tag,
      .stage-slide .stage-caption h3 { transition: opacity 0.3s ease; transform: none; }
      .stage-progress-bar { transition: none !important; }
    }

    /* ─── Attraction backgrounds (9 slides) ───
       Each class loads a real photo. A subtle navy wash is layered on top to
       keep the site palette consistent and improve caption readability
       (the bottom vignette on .stage-slide::after handles the rest).
       Image files must sit in the same folder as index.html. */

    .attr-img-1,
    .attr-img-2,
    .attr-img-3,
    .attr-img-4,
    .attr-img-5,
    .attr-img-6,
    .attr-img-7,
    .attr-img-8,
    .attr-img-9 {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .attr-img-1 { background-image: linear-gradient(180deg, rgba(11,28,53,0.15) 0%, rgba(11,28,53,0.25) 100%), url('./Marina Bay Sands.jpeg'); }           /* Marina Bay Sands */
    .attr-img-2 { background-image: linear-gradient(180deg, rgba(11,28,53,0.15) 0%, rgba(11,28,53,0.25) 100%), url('./Gardens by the Bay.jpeg'); }         /* Gardens by the Bay */
    .attr-img-3 { background-image: linear-gradient(180deg, rgba(11,28,53,0.15) 0%, rgba(11,28,53,0.25) 100%), url('./Sentosa Island.jpeg'); }             /* Sentosa Island */
    .attr-img-4 { background-image: linear-gradient(180deg, rgba(11,28,53,0.15) 0%, rgba(11,28,53,0.25) 100%), url('./Merlion Park.jpeg'); }               /* Merlion Park */
    .attr-img-5 { background-image: linear-gradient(180deg, rgba(11,28,53,0.15) 0%, rgba(11,28,53,0.25) 100%), url('./Singapore Botanic Garden.jpeg'); }   /* Botanic Garden */
    .attr-img-6 { background-image: linear-gradient(180deg, rgba(11,28,53,0.15) 0%, rgba(11,28,53,0.25) 100%), url('./Singapore Zoo.jpeg'); }              /* Singapore Zoo */
    .attr-img-7 { background-image: linear-gradient(180deg, rgba(11,28,53,0.15) 0%, rgba(11,28,53,0.25) 100%), url('./Night Safari.jpeg'); }               /* Night Safari */
    .attr-img-8 { background-image: linear-gradient(180deg, rgba(11,28,53,0.15) 0%, rgba(11,28,53,0.25) 100%), url('./Universal Studios Singapore.jpeg'); }/* Universal Studios */
    .attr-img-9 { background-image: linear-gradient(180deg, rgba(11,28,53,0.15) 0%, rgba(11,28,53,0.25) 100%), url('./Clarke Quay.jpeg'); }                /* Clarke Quay */

    .attractions-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 28px 36px;
      background: linear-gradient(135deg, rgba(196,151,74,0.08) 0%, rgba(196,151,74,0.02) 100%);
      border: 1px solid rgba(196,151,74,0.2);
      border-radius: 4px;
      flex-wrap: wrap;
    }

    .attractions-cta p {
      font-size: 16px;
      color: #c4d2e8;
      line-height: 1.6;
      flex: 1 1 380px;
      margin: 0;
    }

    /* Tablet: stack stage above list */
    @media (max-width: 960px) {
      .attractions-showcase {
        gap: 18px;
      }
      .showcase-stage { height: 480px; }
      .stage-slide { padding: 40px 36px 60px; }
      .stage-caption h3 { font-size: 36px; }
      .stage-dots { right: 20px; bottom: 20px; padding: 8px 12px; gap: 7px; }
      .stage-dot.is-active { width: 24px; }
    }

    @media (max-width: 560px) {
      .showcase-stage { height: 420px; }
      .stage-slide { padding: 28px 24px 56px; }
      .stage-caption h3 { font-size: 26px; line-height: 1.12; }
      .stage-tag { font-size: 10px; padding: 6px 12px; margin-bottom: 14px; }
      .stage-counter { top: 16px; right: 16px; font-size: 13px; padding: 6px 12px; }
      .stage-nav { width: 40px; height: 40px; font-size: 22px; }
      .stage-prev { left: 12px; }
      .stage-next { right: 12px; }
      .stage-dots {
        right: 50%;
        transform: translateX(50%);
        bottom: 16px;
        padding: 7px 11px;
        gap: 6px;
      }
      .stage-dot { width: 6px; height: 6px; }
      .stage-dot.is-active { width: 20px; }
      .attractions-cta { padding: 22px 20px; text-align: center; justify-content: center; }
    }

    /* ════════════════════════════════
       BENEFITS — Cinematic luxury
    ════════════════════════════════ */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 26px;
      counter-reset: benefit;
    }

    .benefit-card {
      counter-increment: benefit;
      position: relative;
      background:
        radial-gradient(ellipse 320px 220px at top right, rgba(232,194,122,0.14) 0%, transparent 68%),
        linear-gradient(180deg, #ffffff 0%, #faf7f0 100%);
      border-radius: 4px;
      padding: 44px 30px 36px;
      border: 1px solid rgba(196,151,74,0.16);
      box-shadow: 0 8px 28px rgba(11,28,53,0.06);
      overflow: hidden;
      transition: transform 0.6s cubic-bezier(.2,.7,.3,1),
                  box-shadow 0.6s ease,
                  border-color 0.6s ease;
    }

    /* Serial number — italic serif watermark top-right */
    .benefit-card::before {
      content: counter(benefit, decimal-leading-zero);
      position: absolute;
      top: 22px;
      right: 28px;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 500;
      font-size: 28px;
      color: var(--gold);
      opacity: 0.3;
      letter-spacing: 1px;
      transition: opacity 0.5s ease, color 0.5s ease, transform 0.5s ease;
      pointer-events: none;
    }

    /* Top gold hairline — stretches across on hover */
    .benefit-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold) 22%, var(--gold-shine) 50%, var(--gold) 78%, transparent);
      transform: scaleX(0.18);
      transform-origin: center;
      transition: transform 0.7s cubic-bezier(.2,.7,.3,1);
      box-shadow: 0 0 8px rgba(232,194,122,0);
    }

    .benefit-card:hover {
      transform: translateY(-10px) !important;
      box-shadow:
        0 36px 70px -24px rgba(196,151,74,0.4),
        0 14px 32px rgba(11,28,53,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
      border-color: rgba(196,151,74,0.35);
    }
    .benefit-card:hover::before {
      opacity: 0.95;
      color: var(--gold-dark);
      transform: scale(1.08);
    }
    .benefit-card:hover::after {
      transform: scaleX(1);
      box-shadow: 0 0 14px rgba(232,194,122,0.6);
    }

    /* Gold-rimmed icon badge — with layered inner light */
    .benefit-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(232,194,122,0.15) 60%, rgba(196,151,74,0.1)),
        linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%);
      border: 1px solid rgba(196,151,74,0.35);
      font-size: 30px;
      margin-bottom: 24px;
      box-shadow: inset 0 1px 2px rgba(255,255,255,0.95),
                  0 8px 20px rgba(196,151,74,0.15);
      transition: transform 0.6s cubic-bezier(.2,.7,.3,1),
                  box-shadow 0.6s ease;
    }
    .benefit-card:hover .benefit-icon {
      transform: translateY(-4px) rotate(-5deg) scale(1.04);
      box-shadow: inset 0 1px 2px rgba(255,255,255,0.95),
                  0 18px 36px rgba(196,151,74,0.35);
    }

    .benefit-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 25px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 0;
      letter-spacing: 0.3px;
      line-height: 1.15;
    }

    /* Gold hairline divider beneath title */
    .benefit-card h4::after {
      content: '';
      display: block;
      width: 34px;
      height: 1px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin: 14px 0 16px;
      transition: width 0.5s cubic-bezier(.2,.7,.3,1);
    }
    .benefit-card:hover h4::after { width: 60px; }

    .benefit-card p {
      font-size: 15.5px;
      color: var(--muted);
      line-height: 1.7;
    }

    /* Value pill — engraved-brass feel with sparkle */
    .benefit-value {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 24px;
      background: linear-gradient(135deg, #faf5ec 0%, #f3e8d4 50%, #e8c27a 100%);
      color: #3d2817;
      font-size: 11px;
      font-weight: 700;
      padding: 9px 18px;
      border-radius: 999px;
      border: 1px solid rgba(196,151,74,0.45);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      box-shadow: 0 4px 12px rgba(196,151,74,0.18),
                  inset 0 1px 0 rgba(255,255,255,0.6);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .benefit-value::before {
      content: '✦';
      color: var(--gold-dark);
      font-size: 11px;
      line-height: 1;
    }
    .benefit-card:hover .benefit-value {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(196,151,74,0.3),
                  inset 0 1px 0 rgba(255,255,255,0.6);
    }

    /* ════════════════════════════════
       PACKAGES
    ════════════════════════════════ */
    .packages-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      align-items: start;
    }

    .pkg-card {
      border-radius: 4px;
      overflow: hidden;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      transition: transform 0.28s, box-shadow 0.28s;
    }

    .pkg-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

    .pkg-card.featured {
      box-shadow: 0 16px 56px rgba(196,151,74,0.28);
      outline: 2px solid var(--gold);
    }

    .pkg-card.featured:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }

    .pkg-header {
      padding: 26px 26px 22px;
      position: relative;
    }

    .pkg-card.classic-tier .pkg-header { background: linear-gradient(145deg, #1c1c22, #2c2c35); }
    .pkg-card.premier-tier .pkg-header { background: linear-gradient(145deg, var(--gold-dark), var(--gold)); }
    .pkg-card.luminary-tier .pkg-header { background: linear-gradient(145deg, var(--navy), var(--navy-mid)); }
    .pkg-card.private-tier .pkg-header { background: linear-gradient(145deg, #1a0e00, #3a2200); border-bottom: 2px solid var(--gold); }

    .pkg-badge {
      display: inline-block;
      background: rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.8);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      padding: 4px 11px;
      border-radius: 999px;
      margin-bottom: 14px;
    }

    .popular-tag {
      position: absolute;
      top: 16px; right: 16px;
      background: #fff;
      color: var(--gold-dark);
      font-size: 10px;
      font-weight: 800;
      padding: 4px 11px;
      border-radius: 999px;
      letter-spacing: 0.3px;
    }

    .pkg-tier {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
      letter-spacing: 0.3px;
    }

    .pkg-price {
      font-size: 34px;
      font-weight: 700;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      line-height: 1;
    }

    .pkg-price sup { font-size: 15px; vertical-align: super; font-weight: 500; }
    .pkg-price small { font-size: 12.5px; font-weight: 400; opacity: 0.65; margin-left: 4px; }

    .pkg-body {
      background: var(--white);
      padding: 24px 26px 26px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .pkg-desc {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
      line-height: 1.65;
    }

    .pkg-features { flex: 1; display: grid; gap: 11px; margin-bottom: 22px; }

    .pkg-feat {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 16px;
      color: var(--text);
    }

    .feat-check {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--gold-light);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .feat-check::before {
      content: '✓';
      font-size: 10px;
      font-weight: 700;
      color: var(--gold-dark);
    }

    .pkg-btn { width: 100%; justify-content: center; padding: 14px; font-size: 16px; }

    /* VVIP strip */
    .vvip-strip {
      margin-top: 32px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: 4px;
      padding: 30px 36px;
      display: flex;
      align-items: center;
      gap: 26px;
      flex-wrap: wrap;
      border: 1px solid rgba(196,151,74,0.18);
    }

    .vvip-icon { font-size: 34px; flex-shrink: 0; }

    .vvip-text { flex: 1; min-width: 200px; }

    .vvip-text h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: #fff;
      margin-bottom: 5px;
    }

    .vvip-text p { font-size: 16px; color: #7a96b8; line-height: 1.6; }

    /* ════════════════════════════════
       SERVICES & VISITOR FACILITIES — Cinematic luxury
    ════════════════════════════════ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      counter-reset: service;
    }

    .svc-card {
      counter-increment: service;
      position: relative;
      background:
        radial-gradient(ellipse 300px 200px at top right, rgba(232,194,122,0.11) 0%, transparent 70%),
        linear-gradient(180deg, #ffffff 0%, #fbf9f5 100%);
      border-radius: 4px;
      padding: 40px 30px 34px;
      border: 1px solid rgba(196,151,74,0.14);
      box-shadow: 0 6px 24px rgba(11,28,53,0.05);
      overflow: hidden;
      transition: transform 0.6s cubic-bezier(.2,.7,.3,1),
                  box-shadow 0.6s ease,
                  border-color 0.6s ease;
    }

    /* Serial number — italic serif watermark top-right */
    .svc-card::before {
      content: counter(service, decimal-leading-zero);
      position: absolute;
      top: 22px;
      right: 28px;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 500;
      font-size: 26px;
      color: var(--gold);
      opacity: 0.3;
      letter-spacing: 1px;
      transition: opacity 0.5s ease, color 0.5s ease, transform 0.5s ease;
      pointer-events: none;
    }

    /* Top gold hairline — stretches across on hover */
    .svc-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold) 22%, var(--gold-shine) 50%, var(--gold) 78%, transparent);
      transform: scaleX(0.18);
      transform-origin: center;
      transition: transform 0.7s cubic-bezier(.2,.7,.3,1);
    }

    .svc-card:hover {
      transform: translateY(-8px) !important;
      border-color: rgba(196,151,74,0.35);
      box-shadow:
        0 30px 60px -22px rgba(196,151,74,0.35),
        0 12px 28px rgba(11,28,53,0.09),
        inset 0 1px 0 rgba(255,255,255,0.8);
    }
    .svc-card:hover::before { opacity: 0.95; color: var(--gold-dark); transform: scale(1.08); }
    .svc-card:hover::after {
      transform: scaleX(1);
      box-shadow: 0 0 14px rgba(232,194,122,0.6);
    }

    /* Gold-rimmed circular icon badge */
    .svc-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(232,194,122,0.15) 60%, rgba(196,151,74,0.08)),
        linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%);
      border: 1px solid rgba(196,151,74,0.32);
      font-size: 26px;
      margin-bottom: 20px;
      box-shadow: inset 0 1px 2px rgba(255,255,255,0.95),
                  0 6px 16px rgba(196,151,74,0.15);
      transition: transform 0.6s cubic-bezier(.2,.7,.3,1),
                  box-shadow 0.6s ease;
    }
    .svc-card:hover .svc-icon {
      transform: translateY(-3px) rotate(-5deg) scale(1.06);
      box-shadow: inset 0 1px 2px rgba(255,255,255,0.95),
                  0 14px 28px rgba(196,151,74,0.3);
    }

    .svc-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 23px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 18px;
      letter-spacing: 0.3px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(196,151,74,0.22);
      position: relative;
      line-height: 1.2;
    }
    /* Gold underline segment that grows on hover */
    .svc-card h4::after {
      content: '';
      position: absolute;
      left: 0; bottom: -1px;
      width: 32px;
      height: 1px;
      background: linear-gradient(90deg, var(--gold), var(--gold-shine));
      transition: width 0.55s cubic-bezier(.2,.7,.3,1);
    }
    .svc-card:hover h4::after { width: 72px; }

    .svc-list { display: grid; gap: 12px; }

    .svc-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--muted);
      line-height: 1.55;
      transition: color 0.3s ease, transform 0.3s ease;
    }
    .svc-card:hover .svc-list li { color: #3c4a5c; }

    /* Gold diamond bullets */
    .svc-list li::before {
      content: '';
      width: 5px;
      height: 5px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-shine) 100%);
      transform: rotate(45deg);
      margin-top: 8px;
      flex-shrink: 0;
      box-shadow: 0 0 6px rgba(196,151,74,0.4);
      transition: transform 0.4s cubic-bezier(.2,.7,.3,1),
                  box-shadow 0.4s ease;
    }
    .svc-card:hover .svc-list li::before {
      box-shadow: 0 0 10px rgba(232,194,122,0.7);
      transform: rotate(45deg) scale(1.15);
    }

    /* ════════════════════════════════
       MEDICAL VISITOR SUPPORT — Cinematic luxury (dark)
    ════════════════════════════════ */
    .support-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      counter-reset: support;
    }

    .support-card {
      counter-increment: support;
      position: relative;
      background:
        radial-gradient(ellipse 260px 180px at bottom center, rgba(232,194,122,0.09) 0%, transparent 75%),
        linear-gradient(180deg, rgba(22,45,79,0.6) 0%, rgba(11,28,53,0.4) 100%);
      border: 1px solid rgba(196,151,74,0.22);
      border-radius: 4px;
      padding: 48px 26px 30px;
      text-align: center;
      overflow: hidden;
      cursor: pointer;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.22);
      transition: transform 0.6s cubic-bezier(.2,.7,.3,1),
                  border-color 0.6s ease,
                  box-shadow 0.6s ease,
                  background 0.6s ease;
    }

    /* Serial number — gold on dark, top-left */
    .support-card::before {
      content: counter(support, decimal-leading-zero);
      position: absolute;
      top: 20px;
      left: 28px;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 500;
      font-size: 22px;
      color: var(--gold-shine);
      opacity: 0.5;
      letter-spacing: 1px;
      transition: opacity 0.5s ease, transform 0.5s ease;
      pointer-events: none;
    }

    /* Gold corner bracket — top-right, grows on hover */
    .support-card::after {
      content: '';
      position: absolute;
      top: 20px;
      right: 20px;
      width: 20px;
      height: 20px;
      border-top: 1px solid rgba(232,194,122,0.7);
      border-right: 1px solid rgba(232,194,122,0.7);
      opacity: 0.45;
      transition: all 0.7s cubic-bezier(.2,.7,.3,1);
    }

    .support-card:hover {
      transform: translateY(-10px) !important;
      background:
        radial-gradient(ellipse 320px 220px at bottom center, rgba(232,194,122,0.18) 0%, transparent 75%),
        linear-gradient(180deg, rgba(196,151,74,0.12) 0%, rgba(22,45,79,0.55) 100%);
      border-color: rgba(196,151,74,0.5);
      box-shadow:
        0 38px 70px -20px rgba(0,0,0,0.7),
        0 0 0 1px rgba(232,194,122,0.18),
        inset 0 0 40px rgba(232,194,122,0.05);
    }
    .support-card:hover::before {
      opacity: 0.95;
      transform: scale(1.08);
    }
    .support-card:hover::after {
      opacity: 1;
      width: 32px;
      height: 32px;
      border-color: rgba(232,194,122,1);
    }

    /* Icon — dark-filled circle with gold rim + inner glow on hover */
    .support-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 30% 30%, rgba(232,194,122,0.28), rgba(196,151,74,0.08) 55%, rgba(11,28,53,0.7)),
        linear-gradient(135deg, rgba(22,45,79,0.8), rgba(11,28,53,0.6));
      border: 1px solid rgba(232,194,122,0.45);
      font-size: 28px;
      margin-bottom: 22px;
      box-shadow: inset 0 1px 0 rgba(232,194,122,0.25),
                  0 10px 26px rgba(0,0,0,0.35);
      transition: transform 0.6s cubic-bezier(.2,.7,.3,1),
                  box-shadow 0.6s ease,
                  border-color 0.6s ease;
    }
    .support-card:hover .support-icon {
      transform: translateY(-4px) scale(1.08);
      border-color: rgba(232,194,122,0.75);
      box-shadow: inset 0 1px 0 rgba(232,194,122,0.4),
                  0 16px 36px rgba(232,194,122,0.3),
                  0 0 24px rgba(232,194,122,0.15);
    }

    .support-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 23px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 0;
      letter-spacing: 0.3px;
      line-height: 1.2;
    }
    /* Gold hairline centered under title */
    .support-card h4::after {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-shine), transparent);
      margin: 14px auto 14px;
      transition: width 0.55s cubic-bezier(.2,.7,.3,1);
    }
    .support-card:hover h4::after { width: 50px; }

    .support-card p {
      font-size: 15px;
      color: #b8c8de;
      line-height: 1.7;
      margin-bottom: 22px;
    }

    /* Learn more — gold call-to-action with hairline divider above */
    .support-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 700;
      color: var(--gold-shine);
      letter-spacing: 2px;
      text-transform: uppercase;
      padding-top: 16px;
      width: 100%;
      border-top: 1px solid rgba(196,151,74,0.22);
      transition: color 0.35s ease, letter-spacing 0.35s ease;
    }
    .support-link::after {
      content: '→';
      font-family: sans-serif;
      font-size: 14px;
      font-weight: 400;
      transition: transform 0.45s cubic-bezier(.2,.7,.3,1);
    }
    .support-card:hover .support-link {
      color: #fff;
      letter-spacing: 2.4px;
    }
    .support-card:hover .support-link::after { transform: translateX(8px); }

    /* ════════════════════════════════
       EXPLORE — Tabbed feature interface
    ════════════════════════════════ */
    .explore-section { background: #fafbfd; }

    /* ─── Tab navigation ─── */
    .explore-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 40px;
      flex-wrap: wrap;
      background: #fff;
      padding: 10px;
      border-radius: 4px;
      border: 1px solid rgba(196,151,74,0.15);
      box-shadow: 0 8px 28px rgba(11,28,53,0.06);
      max-width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }

    .explore-tab {
      all: unset;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 13px 26px;
      border-radius: 4px;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.3px;
      transition: all 0.4s cubic-bezier(.2,.7,.3,1);
      position: relative;
    }

    .explore-tab svg { stroke: currentColor; flex-shrink: 0; }

    .explore-tab em {
      font-family: 'DM Sans', sans-serif;
      font-style: normal;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 3px 8px;
      border-radius: 4px;
      background: rgba(196,151,74,0.12);
      color: var(--gold-dark);
    }

    .explore-tab:hover {
      color: var(--navy);
      background: rgba(196,151,74,0.06);
    }

    .explore-tab.is-active {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      color: #fff;
      box-shadow: 0 8px 20px rgba(11,28,53,0.25);
    }
    .explore-tab.is-active em {
      background: rgba(232,194,122,0.25);
      color: var(--gold-shine);
    }

    /* ─── Panels ─── */
    .explore-panel { display: none; }
    .explore-panel.is-active {
      display: block;
      animation: panelFadeIn 0.5s cubic-bezier(.2,.7,.3,1);
    }
    @keyframes panelFadeIn {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .panel-intro {
      text-align: center;
      font-size: 15.5px;
      color: var(--muted);
      margin-bottom: 26px;
      line-height: 1.7;
    }
    .panel-intro em {
      font-size: 13.5px;
      color: #9ca7b8;
      font-style: italic;
    }

    /* ═══════ DIRECTORY TOOLBAR ═══════ */
    .directory-toolbar {
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .directory-search {
      position: relative;
      flex: 1 1 320px;
      max-width: 420px;
    }
    .directory-search svg {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold);
      stroke: currentColor;
    }
    .directory-search input {
      width: 100%;
      padding: 14px 18px 14px 42px;
      border-radius: 4px;
      border: 1px solid rgba(196,151,74,0.22);
      background: #fff;
      font-family: inherit;
      font-size: 14.5px;
      color: var(--navy);
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      outline: none;
    }
    .directory-search input::placeholder { color: #9ca7b8; }
    .directory-search input:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(196,151,74,0.1);
    }

    .directory-filters {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .filter-chip,
    .picker-chip {
      all: unset;
      cursor: pointer;
      padding: 10px 18px;
      border-radius: 4px;
      border: 1px solid rgba(196,151,74,0.22);
      background: #fff;
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.2px;
      transition: all 0.3s ease;
      white-space: nowrap;
    }
    .filter-chip:hover,
    .picker-chip:hover {
      border-color: var(--gold);
      color: var(--navy);
    }
    .filter-chip.is-active,
    .picker-chip.is-active {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      border-color: var(--gold-dark);
      color: #fff;
      box-shadow: 0 4px 14px rgba(196,151,74,0.3);
    }

    /* ═══════ DIRECTORY GRID ═══════ */
    .directory-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .directory-card {
      position: relative;
      background: #fff;
      border: 1px solid rgba(196,151,74,0.15);
      border-radius: 4px;
      padding: 28px 28px 24px;
      box-shadow: 0 6px 20px rgba(11,28,53,0.04);
      transition: transform 0.5s cubic-bezier(.2,.7,.3,1),
                  box-shadow 0.5s ease,
                  border-color 0.5s ease;
    }
    .directory-card:hover {
      transform: translateY(-5px) !important;
      border-color: rgba(196,151,74,0.4);
      box-shadow: 0 22px 50px -18px rgba(196,151,74,0.3),
                  0 8px 22px rgba(11,28,53,0.08);
    }

    .dir-flag {
      display: inline-block;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 4px;
      margin-bottom: 14px;
    }
    .dir-flag-intl { background: var(--gold-pale); color: var(--gold-dark); border: 1px solid rgba(196,151,74,0.3); }
    .dir-flag-pvt  { background: #eef3fb; color: #3a5378; border: 1px solid #cfdaeb; }
    .dir-flag-pub  { background: #eaf6ee; color: #2b6d3f; border: 1px solid #c4e0cd; }

    .directory-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 600;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 8px;
      letter-spacing: 0.2px;
    }

    .dir-location {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 16px;
    }
    .dir-location svg { color: var(--gold); stroke: currentColor; }

    .dir-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 20px;
    }
    .dir-specs span {
      font-size: 12px;
      padding: 4px 11px;
      background: #f5f1e8;
      color: #6b5a3a;
      border-radius: 4px;
      font-weight: 500;
    }

    .dir-actions {
      display: flex;
      gap: 8px;
      padding-top: 16px;
      border-top: 1px solid rgba(196,151,74,0.15);
    }
    .dir-btn {
      flex: 1;
      text-align: center;
      padding: 9px 14px;
      border-radius: 4px;
      font-size: 12.5px;
      font-weight: 600;
      letter-spacing: 0.3px;
      transition: all 0.3s ease;
      text-decoration: none;
    }
    .dir-btn-ghost {
      border: 1px solid rgba(196,151,74,0.35);
      color: var(--gold-dark);
      background: #fff;
    }
    .dir-btn-ghost:hover { background: var(--gold-pale); border-color: var(--gold); }
    .dir-btn-gold {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
      color: #fff;
      box-shadow: 0 3px 10px rgba(196,151,74,0.3);
    }
    .dir-btn-gold:hover { box-shadow: 0 6px 18px rgba(196,151,74,0.45); transform: translateY(-1px); }

    .directory-empty {
      text-align: center;
      padding: 40px;
      color: var(--muted);
      font-size: 15px;
      background: #fff;
      border-radius: 4px;
      border: 1px dashed rgba(196,151,74,0.3);
    }

    /* ═══════ HOTELS PANEL ═══════ */
    .hotel-picker {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 30px;
    }

    .hotel-results { position: relative; }
    .hotel-result {
      display: none;
      background: #fff;
      border: 1px solid rgba(196,151,74,0.18);
      border-radius: 4px;
      padding: 36px 40px;
      box-shadow: 0 10px 30px rgba(11,28,53,0.06);
    }
    .hotel-result.is-active {
      display: block;
      animation: panelFadeIn 0.45s cubic-bezier(.2,.7,.3,1);
    }

    .hotel-result-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .hotel-result h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
      line-height: 1.2;
    }
    .hotel-meta {
      font-size: 13.5px;
      color: var(--muted);
    }
    .hotel-distance {
      display: inline-block;
      padding: 6px 14px;
      border-radius: 4px;
      background: var(--gold-pale);
      color: var(--gold-dark);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }
    .hotel-desc {
      font-size: 15.5px;
      color: #4a5875;
      line-height: 1.7;
      margin-bottom: 26px;
    }

    .hotel-cta-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .hotel-cta {
      display: block;
      padding: 20px 22px;
      border-radius: 4px;
      text-decoration: none;
      transition: transform 0.4s cubic-bezier(.2,.7,.3,1),
                  box-shadow 0.4s ease;
      color: #fff;
    }
    .hotel-cta strong {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .hotel-cta span {
      display: block;
      font-size: 12.5px;
      opacity: 0.85;
      letter-spacing: 0.3px;
    }
    .hotel-cta:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px -14px rgba(0,0,0,0.35);
    }
    .hotel-cta-booking {
      background: linear-gradient(135deg, #003580 0%, #0071c2 100%);
    }
    .hotel-cta-agoda {
      background: linear-gradient(135deg, #5392f9 0%, #e31837 100%);
    }

    /* ═══════ TESTIMONIALS ═══════ */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-bottom: 40px;
    }

    .testimonial-card {
      position: relative;
      background: #fff;
      border: 1px solid rgba(196,151,74,0.15);
      border-radius: 4px;
      padding: 34px 28px 26px;
      box-shadow: 0 6px 20px rgba(11,28,53,0.05);
      overflow: hidden;
      transition: transform 0.55s cubic-bezier(.2,.7,.3,1),
                  box-shadow 0.55s ease,
                  border-color 0.55s ease;
    }
    /* Large decorative opening quote */
    .testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: -18px;
      right: 18px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 140px;
      line-height: 1;
      color: var(--gold);
      opacity: 0.12;
      pointer-events: none;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-6px) !important;
      border-color: rgba(196,151,74,0.35);
      box-shadow: 0 24px 50px -18px rgba(196,151,74,0.3),
                  0 8px 22px rgba(11,28,53,0.08);
    }
    .testimonial-card:hover::before {
      opacity: 0.22;
      transform: scale(1.08);
    }

    .testimonial-rating {
      color: var(--gold);
      font-size: 16px;
      letter-spacing: 3px;
      margin-bottom: 14px;
    }

    .testimonial-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-style: italic;
      font-weight: 500;
      color: #2a3a55;
      line-height: 1.55;
      margin-bottom: 22px;
      position: relative;
      z-index: 1;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 18px;
      border-top: 1px solid rgba(196,151,74,0.18);
    }
    .testimonial-avatar {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--gold-dark);
      background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
      border: 1px solid rgba(196,151,74,0.3);
      box-shadow: inset 0 1px 2px rgba(255,255,255,0.7);
    }
    .testimonial-meta strong {
      display: block;
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 2px;
    }
    .testimonial-meta span {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.2px;
    }

    .testimonials-cta {
      text-align: center;
      padding: 34px 28px;
      background: linear-gradient(135deg, rgba(196,151,74,0.08) 0%, rgba(196,151,74,0.02) 100%);
      border: 1px solid rgba(196,151,74,0.22);
      border-radius: 4px;
    }
    .testimonials-cta p {
      font-size: 15.5px;
      color: #3a4a66;
      margin-bottom: 16px;
      line-height: 1.6;
    }
    .testimonials-cta strong { color: var(--navy); font-weight: 700; }

    /* ════════════════════════════════
       CTA BANNER
    ════════════════════════════════ */
    .cta-banner {
      background: linear-gradient(130deg, var(--gold-dark) 0%, var(--gold) 55%, var(--gold-shine) 100%);
      border-radius: 4px;
      padding: 56px 52px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      right: -40px; top: -40px;
      width: 260px; height: 260px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.08);
    }

    .cta-banner::after {
      content: '';
      position: absolute;
      right: 20px; bottom: -60px;
      width: 180px; height: 180px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.06);
    }

    .cta-banner h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 32px;
      color: #fff;
      margin-bottom: 8px;
      line-height: 1.15;
    }

    .cta-banner p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 520px; }

    .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; position: relative; z-index: 1; }

    /* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
    footer {
      background: var(--navy);
      padding: 64px 0 0;
      border-top: 1px solid rgba(196,151,74,0.12);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.7fr 1fr 1fr 1fr;
      gap: 44px;
      padding-bottom: 52px;
    }

    .footer-brand-row {
      display: flex;
      align-items: center;
      gap: 11px;
      margin-bottom: 18px;
    }

    .footer-logo-box {
      width: 40px; height: 40px;
      background: linear-gradient(145deg, var(--gold), var(--gold-dark));
      border-radius: 4px;
      display: grid;
      place-items: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 700;
      color: #fff;
    }

    .footer-logo-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 700;
      color: #fff;
    }

    .footer-desc {
      font-size: 16px;
      color: #c4d2e8;
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .footer-contacts { display: grid; gap: 12px; }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 16px;
      color: #c4d2e8;
      line-height: 1.6;
    }

    .footer-contact-item svg {
      flex-shrink: 0;
      margin-top: 4px;
      width: 15px;
      height: 15px;
    }

    .footer-col h5 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: var(--gold-shine);
      margin-bottom: 20px;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .footer-col ul { display: grid; gap: 13px; }

    .footer-col ul a {
      font-size: 16px;
      color: #a8b8d0;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .footer-col ul a:hover { color: var(--gold-shine); }
    .footer-col ul a::before { content: '›'; color: var(--gold); font-weight: 700; }

    .footer-bottom {
      border-top: 1px solid rgba(196,151,74,0.15);
      padding: 28px 0 8px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 28px;
      flex-wrap: wrap;
    }

    .footer-bottom-info {
      display: flex;
      flex-direction: column;
      gap: 14px;
      max-width: 780px;
      flex: 1 1 480px;
    }

    .footer-copyright {
      font-size: 15px;
      color: #a8b8d0;
      letter-spacing: 0.2px;
    }

    .footer-disclosure {
      font-size: 16px;
      color: #c4d2e8;
      line-height: 1.7;
      padding: 14px 16px 14px 18px;
      background: rgba(196,151,74,0.04);
      border-left: 2px solid var(--gold);
      border-radius: 4px;
    }

    .footer-disclosure a {
      color: var(--gold-shine);
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-thickness: 1px;
      font-weight: 600;
      transition: color 0.2s;
    }

    .footer-disclosure a:hover { color: #fff; }

    .footer-bottom-links {
      display: flex;
      gap: 24px;
      padding-top: 4px;
      flex-shrink: 0;
    }

    .footer-bottom-links a {
      font-size: 15px;
      color: #a8b8d0;
      transition: color 0.2s;
    }

    .footer-bottom-links a:hover { color: var(--gold-shine); }

    @media (max-width: 760px) {
      .footer-bottom { flex-direction: column; gap: 20px; }
      .footer-bottom-links { padding-top: 0; }
      .footer-disclosure { font-size: 17px; }
    }

    /* ════════════════════════════════
       WHATSAPP FLOAT
    ════════════════════════════════ */
    .wa-float {
      position: fixed;
      bottom: 30px; right: 30px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }

    .wa-bubble {
      background: var(--white);
      border-radius: 4px;
      padding: 12px 16px;
      box-shadow: var(--shadow-lg);
      font-size: 13px;
      font-weight: 500;
      color: var(--navy);
      max-width: 220px;
      display: none;
      border: 1px solid var(--border);
    }

    .wa-float:hover .wa-bubble { display: block; }

    .wa-btn {
      width: 60px; height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: grid;
      place-items: center;
      box-shadow: 0 6px 24px rgba(37,211,102,0.45);
      cursor: pointer;
      transition: transform 0.2s;
      animation: waPulse 2.8s infinite;
    }

    .wa-btn:hover { transform: scale(1.1); }

    @keyframes waPulse {
      0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
      50% { box-shadow: 0 6px 36px rgba(37,211,102,0.72); }
    }

    /* ════════════════════════════════
       ANIMATIONS
    ════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(26px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .fade-up { animation: fadeUp 0.7s ease both; }
    .d1 { animation-delay: 0.1s; }
    .d2 { animation-delay: 0.22s; }
    .d3 { animation-delay: 0.36s; }
    .d4 { animation-delay: 0.52s; }

    /* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
    @media (max-width: 1100px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-card { max-width: 500px; }
      .about-grid { grid-template-columns: 1fr; gap: 44px; }
      .about-badge { right: 0; }
      .hospital-cards { grid-template-columns: 1fr; }
      .benefits-grid { grid-template-columns: repeat(2, 1fr); }
      .packages-grid { grid-template-columns: repeat(2, 1fr); }
      .pkg-card.featured { transform: none; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .support-grid { grid-template-columns: repeat(2, 1fr); }
      .directory-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .quick-bar-inner { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 860px) {
      .menu-toggle { display: block; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 74px; left: 0; right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 16px 20px;
        gap: 4px;
        box-shadow: var(--shadow);
        z-index: 999;
      }
      .nav-cta .btn-wa { display: none; }

      .explore-tabs { border-radius: 4px; padding: 6px; max-width: 100%; }
      .explore-tab { padding: 11px 16px; font-size: 13px; }
      .explore-tab em { display: none; }
      .explore-tab span { font-size: 13px; }
      .hotel-result { padding: 28px 24px; }
      .hotel-result h4 { font-size: 24px; }
      .hotel-cta-row { grid-template-columns: 1fr; }
      .directory-toolbar { flex-direction: column; align-items: stretch; }
      .directory-search { max-width: 100%; }
    }

    @media (max-width: 640px) {
      .benefits-grid, .support-grid, .services-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .cta-banner { padding: 34px 26px; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-stats { flex-wrap: wrap; gap: 22px; }
      .quick-bar-inner { grid-template-columns: 1fr; }
      .ranking-strip { grid-template-columns: 1fr; }
      .topbar-left { flex-direction: column; align-items: flex-start; gap: 6px; }
      .explore-tab span { display: none; }
      .explore-tab { padding: 12px 16px; gap: 0; }
      .explore-tab svg { width: 20px; height: 20px; }
    }
/* ════════════════════════════════
   PRIVATE CONCIERGE — EXPRESS CARD
════════════════════════════════ */
.pkg-card.private-express {
  background: transparent;
  outline: none;
  box-shadow: none;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.pkg-card.private-express::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1.5px;
  background: linear-gradient(145deg, var(--gold-shine), var(--gold), rgba(196,151,74,0.3), var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.pkg-card.private-express:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 72px rgba(196,151,74,0.22);
}

.private-header {
  background: linear-gradient(145deg, #150900, #2a1500, #1a0c00) !important;
  padding: 28px 26px 24px !important;
  position: relative;
  text-align: left;
}

.private-crown {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(196,151,74,0.5));
}

.private-badge {
  background: rgba(196,151,74,0.18) !important;
  color: var(--gold-shine) !important;
  border: 1px solid rgba(196,151,74,0.35) !important;
  letter-spacing: 1.8px !important;
}

.pkg-card.private-express .pkg-tier {
  font-size: 26px;
  background: linear-gradient(135deg, var(--gold-shine), var(--gold), #fff8e8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
}

.private-tagline {
  font-size: 12px;
  color: rgba(196,151,74,0.65);
  font-style: italic;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.private-body {
  background: linear-gradient(180deg, #0e0a04, #0b1c35) !important;
  padding: 24px 24px 28px !important;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.private-intro {
  font-size: 16px;
  color: #8fa8cc;
  line-height: 1.75;
  font-style: italic;
  border-left: 2px solid rgba(196,151,74,0.4);
  padding-left: 14px;
}

.private-perks {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.private-perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #7a96b8;
  line-height: 1.55;
}

.perk-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 6px rgba(196,151,74,0.6);
}

.private-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,151,74,0.25), transparent);
}

.private-cta-label {
  font-size: 11px;
  text-align: center;
  color: #4d6180;
  letter-spacing: 0.5px;
  font-style: italic;
}

.private-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-shine));
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s ease;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 20px rgba(196,151,74,0.3);
}

.private-wa-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-shine), #fff8e0);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,151,74,0.5);
}

.private-note {
  text-align: center;
  font-size: 11px;
  color: #2e3f56;
  letter-spacing: 0.3px;
}

/* ════════════════════════════════
   ADDRESS LINK (replaces open-in-maps)
════════════════════════════════ */
.hosp-address-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #7a96b8;
  margin-bottom: 10px;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(196,151,74,0.3);
}

.hosp-address-link:hover {
  color: var(--gold-shine);
  text-decoration-color: var(--gold);
}

/* ════════════════════════════════
   LUXURY PACKAGES — FULL REDESIGN
════════════════════════════════ */
.pkg-section { background: var(--cream); }

/* 3-card public grid */
.pkg-public-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(11,28,53,0.12), 0 1px 0 rgba(196,151,74,0.1);
  margin-bottom: 56px;
  border: 1px solid rgba(196,151,74,0.18);
}

/* Individual card */
.lux-pkg-card {
  display: flex;
  flex-direction: column;
  padding: 44px 36px 38px;
  transition: transform 0.28s, box-shadow 0.28s;
  position: relative;
}

.lux-pkg-card:not(:last-child) {
  border-right: 1px solid rgba(196,151,74,0.12);
}

/* Basic Care — dark charcoal, strong and premium */
.lux-basic {
  background: linear-gradient(165deg, #2a2a2a 0%, #1e1e1e 60%, #181818 100%);
  color: #fff;
  border-left: 4px solid #555555;
}

/* Advanced Care — warm champagne gold, refined and inviting */
.lux-advanced {
  background: linear-gradient(165deg, #c8973c 0%, #b5822a 40%, #c99840 75%, #d4a84e 100%);
  color: #fff;
  z-index: 2;
  transform: scale(1.02);
  box-shadow: 0 0 0 2.5px #e8c27a, 0 32px 72px rgba(180,120,30,0.32);
}

/* Premier Care — deep teal-navy with gold shimmer, striking and premium */
.lux-premier {
  background: linear-gradient(165deg, #0d2535 0%, #0b1f30 45%, #0f2a40 80%, #0d2235 100%);
  color: #fff;
  border-right: 4px solid rgba(196,151,74,0.55);
}

/* Popular ribbon */
.lux-popular-ribbon {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--gold-shine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 0 0 4px 4px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(11,28,53,0.2);
}

/* Top section */
.lux-pkg-top { margin-bottom: 26px; }

/* Labels */
.lux-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.75;
}

.lux-basic .lux-label   { color: rgba(255,255,255,0.45); opacity: 1; }
.lux-advanced .lux-label { color: rgba(255,255,255,0.9); opacity: 1; letter-spacing: 2.2px; }
.lux-premier .lux-label  { color: #c4974a; opacity: 1; }

.lux-label-gold { color: rgba(255,255,255,0.95); opacity: 1; }

/* Package name */
.lux-pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.lux-basic .lux-pkg-name   { color: #fff; }
.lux-advanced .lux-pkg-name { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.15); }
.lux-premier .lux-pkg-name  { color: #f0e4cc; }

/* Price */
.lux-pkg-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 20px;
}

.lux-currency {
  font-size: 16px;
  font-weight: 600;
  margin-top: 4px;
}

.lux-basic .lux-currency   { color: rgba(255,255,255,0.55); }
.lux-advanced .lux-currency { color: rgba(255,255,255,0.8); }
.lux-premier .lux-currency  { color: #c4974a; }

.lux-amount {
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  font-family: 'DM Sans', sans-serif;
}

.lux-basic .lux-amount   { color: #fff; }
.lux-advanced .lux-amount { color: #fff; }
.lux-premier .lux-amount  { color: #f0e4cc; }

.lux-per {
  font-size: 13px;
  margin-left: 4px;
}

.lux-basic .lux-per   { color: rgba(255,255,255,0.4); }
.lux-advanced .lux-per { color: rgba(255,255,255,0.6); }
.lux-premier .lux-per  { color: rgba(240,228,204,0.55); }

/* Rule divider */
.lux-rule {
  width: 40px; height: 1px;
  margin-bottom: 20px;
}

.lux-basic .lux-rule   { background: rgba(255,255,255,0.18); }
.lux-advanced .lux-rule { background: rgba(255,255,255,0.5); }
.lux-premier .lux-rule  { background: rgba(196,151,74,0.5); }

.lux-rule-gold { background: rgba(255,255,255,0.55); }

/* Description */
.lux-pkg-desc {
  font-size: 16px;
  line-height: 1.75;
}

.lux-basic .lux-pkg-desc   { color: rgba(255,255,255,0.6); }
.lux-advanced .lux-pkg-desc { color: rgba(255,255,255,0.88); }
.lux-premier .lux-pkg-desc  { color: rgba(220,205,178,0.82); }

/* Feature list */
.lux-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 34px;
  list-style: none;
  padding: 0;
}

.lux-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.5px;
  line-height: 1.5;
}

.lux-basic .lux-features li   { color: rgba(255,255,255,0.72); }
.lux-advanced .lux-features li { color: rgba(255,255,255,0.93); }
.lux-premier .lux-features li  { color: rgba(220,205,178,0.9); }

/* Check icons */
.lux-check {
  width: 19px; height: 19px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.lux-basic .lux-check   { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); border: 1px solid rgba(255,255,255,0.18); }
.lux-premier .lux-check { background: rgba(196,151,74,0.15); color: #c4974a; border: 1px solid rgba(196,151,74,0.3); }

.lux-check-gold {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

/* CTA buttons */
.lux-pkg-btn {
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.22s;
  cursor: pointer;
  letter-spacing: 0.2px;
}

/* Basic Care button */
.lux-basic .lux-btn-outline {
  border: 1.5px solid rgba(255,255,255,0.22);
  color: #fff;
  background: transparent;
}

.lux-basic .lux-btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
}

/* Premier Care button */
.lux-premier .lux-btn-outline {
  border: 1.5px solid rgba(232,194,122,0.45);
  color: #e8c27a;
  background: transparent;
}

.lux-premier .lux-btn-outline:hover {
  background: rgba(232,194,122,0.1);
  border-color: #e8c27a;
}

/* Advanced Care CTA — white pill on gold */
.lux-btn-gold {
  background: #fff;
  color: #8d6c30;
  border: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
  font-weight: 800;
}

.lux-btn-gold:hover {
  background: #fffdf7;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

/* ── PRIVATE CONCIERGE BLOCK ── */
.private-concierge-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(11,28,53,0.18);
  background: linear-gradient(135deg, #06101e 0%, #0d1c35 50%, #0a1528 100%);
  border: 1px solid rgba(196,151,74,0.18);
  position: relative;
}

/* decorative grain/texture feel */
.private-concierge-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(196,151,74,0.06) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 20%, rgba(196,151,74,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.pcb-left {
  padding: 52px 48px;
  position: relative;
  z-index: 1;
}

.pcb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-shine);
  margin-bottom: 18px;
}

.pcb-crown {
  font-size: 14px;
  color: var(--gold);
}

.pcb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.pcb-title em {
  font-style: italic;
  color: var(--gold-shine);
}

.pcb-desc {
  font-size: 16px;
  color: #7a96b8;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 32px;
}

.pcb-perks {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pcb-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #8fa8cc;
  line-height: 1.55;
}

.pcb-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 8px rgba(196,151,74,0.55);
}

/* Right CTA panel */
.pcb-right {
  border-left: 1px solid rgba(196,151,74,0.12);
  padding: 52px 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pcb-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pcb-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: -6px;
}

.pcb-card-note {
  font-size: 13.5px;
  color: #5d718e;
  line-height: 1.7;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(196,151,74,0.1);
}

.pcb-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold) 60%, var(--gold-shine));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s ease;
  box-shadow: 0 6px 24px rgba(196,151,74,0.28);
  text-align: center;
}

.pcb-wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(196,151,74,0.42);
  background: linear-gradient(135deg, var(--gold), var(--gold-shine), #ffe8b0);
  color: var(--navy);
}

.pcb-trust {
  text-align: center;
  font-size: 11.5px;
  color: #2e3f56;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 1100px) {
  .pkg-public-grid { grid-template-columns: 1fr; border-radius: 4px; }
  .lux-advanced { transform: none; box-shadow: none; }
  .lux-pkg-card:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .private-concierge-block { grid-template-columns: 1fr; }
  .pcb-right { border-left: none; border-top: 1px solid rgba(196,151,74,0.12); padding: 36px 40px; }
  .pcb-left { padding: 40px; }
}

@media (max-width: 640px) {
  .pcb-left, .pcb-right { padding: 32px 24px; }
  .pcb-title { font-size: 34px; }
}
/* ════════════════════════════════════════════════════════════════
   MODERN MIX: 3D LAYERED SHADOWS + CURATED RADIUS HIERARCHY
   ────────────────────────────────────────────────────────────────
   Three-tier corner system for visual rhythm:
     • Premium warm cards     → 16px (rounded, invitational)
     • Editorial dense cards  → 4px  (sharp, architectural)
     • Clickable chips/tags   → 999px (pill, approachable)
   Shadows are multi-layered (close + medium + ambient + inner highlight)
   to suggest a real light source + contact shadow (3D depth).
════════════════════════════════════════════════════════════════ */

:root {
  /* Layered shadow tokens — close + body + ambient */
  --shadow-soft:
    0 1px 2px rgba(11,28,53,0.04),
    0 4px 12px rgba(11,28,53,0.06),
    0 14px 34px rgba(11,28,53,0.08);
  --shadow-float:
    0 2px 4px rgba(11,28,53,0.06),
    0 10px 22px rgba(11,28,53,0.08),
    0 28px 64px rgba(11,28,53,0.14);
  --shadow-gold-lift:
    0 2px 4px rgba(196,151,74,0.10),
    0 12px 24px rgba(196,151,74,0.18),
    0 32px 72px rgba(11,28,53,0.16);
  --shadow-dark-soft:
    0 1px 2px rgba(0,0,0,0.15),
    0 6px 18px rgba(0,0,0,0.22),
    0 22px 48px rgba(0,0,0,0.3);
  --shadow-dark-float:
    0 3px 6px rgba(0,0,0,0.2),
    0 14px 30px rgba(0,0,0,0.32),
    0 38px 80px rgba(0,0,0,0.45);

  /* Subtle top highlight — simulates light-from-above for 3D effect */
  --highlight-light: inset 0 1px 0 rgba(255,255,255,0.75);
  --highlight-dark:  inset 0 1px 0 rgba(232,194,122,0.18);
}

/* ─── Premium warm cards: rounded 16px + floating shadow ─── */
.benefit-card,
.svc-card,
.pkg-card,
.hospital-card,
.hero-card,
.hotel-result,
.cta-banner,
.attractions-cta,
.testimonials-cta,
.tourism-strip,
.hosp-nearby,
.about-badge {
  border-radius: 16px;
  box-shadow: var(--shadow-soft), var(--highlight-light);
  transition: transform 0.55s cubic-bezier(.2,.7,.3,1),
              box-shadow 0.55s cubic-bezier(.2,.7,.3,1),
              border-color 0.55s ease;
}

.benefit-card:hover,
.svc-card:hover,
.pkg-card:hover,
.hospital-card:hover,
.hotel-result:hover {
  box-shadow: var(--shadow-gold-lift), var(--highlight-light);
}

/* Hospital-card inner nearby-stays panel — round only bottom */
.hosp-nearby {
  border-radius: 0 0 16px 16px;
  box-shadow: none;
}

/* ─── Editorial sharp cards: stay 4px, add layered shadow ─── */
.directory-card,
.testimonial-card {
  box-shadow: var(--shadow-soft), var(--highlight-light);
}
.directory-card:hover,
.testimonial-card:hover {
  box-shadow: var(--shadow-gold-lift), var(--highlight-light);
}

/* ─── Dark sharp cards (support / showcase): deeper 3D shadow ─── */
.support-card {
  box-shadow: var(--shadow-dark-soft), var(--highlight-dark);
}
.support-card:hover {
  box-shadow: var(--shadow-dark-float), var(--highlight-dark);
}

.showcase-stage {
  border-radius: 6px;
  box-shadow: var(--shadow-dark-float),
              0 0 0 1px rgba(232,194,122,0.08);
}

/* ─── Chips, tags, pills: return to pill shape ─── */
.filter-chip,
.picker-chip,
.benefit-value,
.hosp-spec,
.dir-btn,
.hosp-stay-btn,
.tourism-btn,
.hotel-distance,
.section-label,
.hero-tag,
.stage-tag,
.stage-dot.is-active,
.pkg-tag,
.hosp-map-toggle,
.btn,
.btn-gold,
.btn-wa,
.btn-ghost-dark {
  border-radius: 999px;
}

/* Inputs stay sharp but with a subtle soft radius so they feel modern */
.directory-search input,
.explore-tabs,
.hosp-map-embed,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select {
  border-radius: 10px;
}

/* Tab container stays as pill for the cinematic modern navigator look */
.explore-tabs { border-radius: 999px; }
.explore-tab  { border-radius: 999px; }

/* ─── 3D-enhanced icon badges (gold circles) ─── */
.benefit-icon,
.svc-icon {
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.95),
    inset 0 -1px 2px rgba(196,151,74,0.15),
    0 2px 4px rgba(196,151,74,0.12),
    0 8px 20px rgba(196,151,74,0.2);
}
.benefit-card:hover .benefit-icon,
.svc-card:hover .svc-icon {
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.95),
    inset 0 -1px 2px rgba(196,151,74,0.2),
    0 4px 8px rgba(196,151,74,0.18),
    0 16px 32px rgba(196,151,74,0.32);
}

.support-icon {
  box-shadow:
    inset 0 1px 0 rgba(232,194,122,0.28),
    inset 0 -1px 0 rgba(0,0,0,0.3),
    0 4px 8px rgba(0,0,0,0.2),
    0 12px 26px rgba(0,0,0,0.32);
}
.support-card:hover .support-icon {
  box-shadow:
    inset 0 1px 0 rgba(232,194,122,0.4),
    inset 0 -1px 0 rgba(0,0,0,0.35),
    0 6px 14px rgba(232,194,122,0.22),
    0 18px 36px rgba(232,194,122,0.3);
}

.testimonial-avatar {
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.8),
    inset 0 -1px 2px rgba(196,151,74,0.15),
    0 2px 6px rgba(196,151,74,0.2),
    0 6px 14px rgba(196,151,74,0.15);
}

/* ─── Gold CTA-style buttons get a 3D-depth glow ─── */
.btn-gold,
.dir-btn-gold,
.hotel-cta {
  box-shadow:
    0 2px 4px rgba(196,151,74,0.18),
    0 6px 14px rgba(196,151,74,0.25),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-gold:hover,
.dir-btn-gold:hover,
.hotel-cta:hover {
  box-shadow:
    0 4px 8px rgba(196,151,74,0.25),
    0 12px 28px rgba(196,151,74,0.35),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

/* ─── Extra: sections feel dimensional (subtle inset for dark sections) ─── */
.section-navy,
.attractions-section {
  box-shadow: inset 0 1px 0 rgba(232,194,122,0.08),
              inset 0 -1px 0 rgba(232,194,122,0.05);
}

/* ════════════════════════════════════════════════════════════════
   SUPPORT MODALS — Editorial luxury dialog with cinematic entrance
════════════════════════════════════════════════════════════════ */

.modal-root {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-root.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(11,28,53,0.72) 0%, rgba(3,10,22,0.94) 100%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 80px);
  display: none;
  flex-direction: column;
  background: linear-gradient(180deg, #fdfbf6 0%, #ffffff 60%);
  border: 1px solid rgba(196,151,74,0.28);
  border-radius: 6px;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.2),
    0 20px 48px rgba(0,0,0,0.35),
    0 60px 120px rgba(11,28,53,0.5),
    inset 0 1px 0 rgba(255,255,255,0.8);
  overflow: hidden;
  transform: translateY(30px) scale(0.97);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.2,.7,.3,1),
              opacity 0.4s ease;
}
.modal.is-open {
  display: flex;
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close button — top-right gold circle */
.modal-close {
  all: unset;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--gold-dark);
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(196,151,74,0.3);
  box-shadow:
    0 2px 6px rgba(11,28,53,0.12),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}
.modal-close:hover,
.modal-close:focus-visible {
  background: var(--navy);
  color: var(--gold-shine);
  border-color: var(--navy);
  transform: rotate(90deg);
  outline: none;
}

/* Header — navy block with gold corner bracket like support cards */
.modal-head {
  position: relative;
  padding: 44px 56px 32px;
  background:
    radial-gradient(ellipse 400px 250px at top right, rgba(232,194,122,0.18) 0%, transparent 65%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  flex-shrink: 0;
}
.modal-head::before {
  content: '';
  position: absolute;
  top: 18px; left: 22px;
  width: 22px; height: 22px;
  border-top: 1px solid rgba(232,194,122,0.65);
  border-left: 1px solid rgba(232,194,122,0.65);
}
.modal-head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 56px; right: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 25%, var(--gold-shine) 50%, var(--gold) 75%, transparent);
  opacity: 0.55;
}

.modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold-shine);
  margin-bottom: 14px;
}

.modal-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}
.modal-head h2 em {
  font-style: italic;
  color: var(--gold-shine);
}

.modal-head p {
  font-size: 15px;
  color: #c8d4e8;
  line-height: 1.65;
  max-width: 560px;
}

/* Scrollable body */
.modal-body {
  padding: 32px 56px 32px;
  overflow-y: auto;
  flex: 1 1 auto;
  background: #fdfbf6;
}
.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-track { background: transparent; }
.modal-body::-webkit-scrollbar-thumb {
  background: rgba(196,151,74,0.35);
  border-radius: 4px;
}

.modal-body section {
  margin-bottom: 26px;
}
.modal-body section:last-child { margin-bottom: 0; }

.modal-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(196,151,74,0.22);
}
.modal-body h3::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-shine));
}

.modal-body p { font-size: 15px; color: #3a4a66; line-height: 1.7; }

/* Lists with gold diamond bullets (matching svc-list style) */
.modal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.modal-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #3a4a66;
  line-height: 1.6;
}
.modal-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-shine) 100%);
  transform: rotate(45deg);
  margin-top: 9px;
  flex-shrink: 0;
  box-shadow: 0 0 5px rgba(196,151,74,0.4);
}
.modal-list li strong { color: var(--navy); font-weight: 700; }
.modal-list li em { color: var(--gold-dark); font-style: italic; }

/* Pricing rows */
.modal-pricing {
  display: grid;
  gap: 10px;
}
.modal-pricing div {
  padding: 14px 18px;
  background: rgba(196,151,74,0.06);
  border: 1px solid rgba(196,151,74,0.18);
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.modal-pricing strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}
.modal-pricing span {
  font-size: 13.5px;
  color: var(--gold-dark);
  letter-spacing: 0.2px;
}

/* Inline comma-separated list (e.g. insurers, languages) */
.modal-inline {
  font-size: 15px;
  color: #3a4a66;
  line-height: 1.75;
  padding: 16px 20px;
  background: rgba(196,151,74,0.05);
  border-left: 2px solid var(--gold);
  border-radius: 0 4px 4px 0;
}

.modal-note {
  font-size: 13px;
  color: #6b7a90;
  font-style: italic;
  margin-top: 10px;
}

/* Call-out boxes */
.modal-callout {
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(196,151,74,0.1) 0%, rgba(196,151,74,0.03) 100%);
  border: 1px solid rgba(196,151,74,0.3);
  border-radius: 4px;
  font-size: 14.5px;
  color: #3a4a66;
  line-height: 1.65;
}
.modal-callout strong { color: var(--navy); font-weight: 700; margin-right: 4px; }

.modal-callout-contact {
  text-align: center;
  padding: 24px;
}
.modal-callout-contact strong {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.modal-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.modal-contacts a {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.modal-contacts a:hover { background: rgba(196,151,74,0.12); color: var(--gold-dark); }

.modal-checklist li::before {
  /* Swap diamond for subtle check tick mark on checklists */
  content: '✓';
  width: auto; height: auto;
  background: none;
  transform: none;
  box-shadow: none;
  color: var(--gold);
  font-weight: 700;
  margin-top: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* Footer — sticky-ish CTA row */
.modal-foot {
  padding: 22px 56px 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #fdfbf6 0%, #f7f0e0 100%);
  border-top: 1px solid rgba(196,151,74,0.22);
  flex-shrink: 0;
}
.modal-foot .btn { flex: 1 1 auto; text-align: center; }

/* Open a card with keyboard: make sure focus ring shows */
.support-card:focus-visible {
  outline: 2px solid var(--gold-shine);
  outline-offset: 4px;
}

/* ─── Mobile tweaks ─── */
@media (max-width: 760px) {
  .modal-root { padding: 16px; align-items: flex-end; }
  .modal {
    max-height: 92vh;
    border-radius: 6px 6px 0 0;
    transform: translateY(100%);
  }
  .modal.is-open { transform: translateY(0); }
  .modal-head  { padding: 36px 24px 26px; }
  .modal-head h2 { font-size: 28px; }
  .modal-head::before { left: 14px; top: 14px; }
  .modal-head::after  { left: 24px; right: 24px; }
  .modal-body  { padding: 24px 24px; }
  .modal-foot  { padding: 18px 24px 22px; flex-direction: column; }
  .modal-close { top: 12px; right: 12px; width: 34px; height: 34px; }
}

/* ─── Quick Enquiry form: validation states ─── */
.form-group select.is-invalid,
.form-group input.is-invalid {
  border-color: #c84a3f;
  background: rgba(200,74,63,0.04);
  box-shadow: 0 0 0 3px rgba(200,74,63,0.1);
}
.form-group select.is-invalid:focus,
.form-group input.is-invalid:focus {
  border-color: #c84a3f;
  box-shadow: 0 0 0 3px rgba(200,74,63,0.15);
}

.form-error {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #c84a3f;
  margin: 0 0 10px;
  padding: 8px 12px;
  background: rgba(200,74,63,0.06);
  border-left: 2px solid #c84a3f;
  border-radius: 4px;
  line-height: 1.5;
}
/* Make [hidden] actually hide the error box (our display:flex was overriding the browser default) */
.form-error[hidden] { display: none !important; }
.form-error::before {
  content: '⚠';
  font-size: 13px;
  flex-shrink: 0;
}

/* Make the Send Enquiry button always full-width in the hero card */
.hero-card > .btn-gold { width: 100%; text-align: center; justify-content: center; }