/* ============================================================
   AL EMAAN TOURS — Luxury Travel Website
   Color Palette: Forest Green #1B3A2D + Gold #C9A84C
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --green:        #1B3A2D;
  --green-dark:   #0D2018;
  --green-mid:    #163224;
  --green-light:  #2A5240;
  --gold:         #C9A84C;
  --gold-light:   #E4C76B;
  --gold-dark:    #A68B35;
  --cream:        #F8F4ED;
  --cream-dark:   #EDE8DF;
  --white:        #FFFFFF;
  --text:         #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #7A7A7A;

  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:        80px;
  --pad:          100px;
  --wrap:         1200px;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --t:            0.3s var(--ease);

  --sh-sm:  0 2px 8px rgba(0,0,0,0.08);
  --sh-md:  0 8px 28px rgba(0,0,0,0.12);
  --sh-lg:  0 16px 56px rgba(0,0,0,0.18);
  --sh-xl:  0 24px 80px rgba(0,0,0,0.28);
  --sh-gold: 0 6px 24px rgba(201,168,76,0.35);

  --r:    4px;
  --r-lg: 14px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); line-height: 1.65; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--sans); cursor: pointer; }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--serif); line-height: 1.15; }

.label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.h-display {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--green);
  margin-bottom: 20px;
}

.h-section {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--green);
  margin-bottom: 18px;
}

.h-display.light,
.h-section.light { color: var(--white); }

.subtitle {
  font-size: 1.02rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.75;
}
.subtitle.light { color: rgba(255,255,255,0.72); }

.gold-rule {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 18px 0 26px;
}
.gold-rule.center { margin: 18px auto 26px; }

/* ── Container ── */
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 48px; }
.section { padding: var(--pad) 0; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 34px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r);
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: var(--sh-gold);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

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

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--t), backdrop-filter var(--t), box-shadow var(--t);
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(13,32,24,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
  position: relative;
  transition: color var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: var(--t);
  transform-origin: center;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0 28px;
  z-index: 999;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 12px 40px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--t), background var(--t);
  border-left: 3px solid transparent;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(255,255,255,0.03);
}
.mobile-menu .btn { margin: 16px 40px 0; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--green-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(201,168,76,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 20%, rgba(42,82,64,0.55) 0%, transparent 55%),
    linear-gradient(150deg, #0A1C12 0%, #1B3A2D 55%, #0D2018 100%);
}

.hero-pattern {
  position: absolute; inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35 5 L65 35 L35 65 L5 35 Z' fill='none' stroke='%23C9A84C' stroke-width='0.6'/%3E%3Cpath d='M35 18 L52 35 L35 52 L18 35 Z' fill='none' stroke='%23C9A84C' stroke-width='0.4'/%3E%3Ccircle cx='35' cy='35' r='4' fill='none' stroke='%23C9A84C' stroke-width='0.4'/%3E%3C/svg%3E");
  background-size: 70px 70px;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 44px;
}

.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
  animation: bob 2.2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
}
.hero-logo-wrap img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl), 0 0 0 1px rgba(201,168,76,0.18);
  display: block;
}
.h-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1);
  pointer-events: none;
}
.h-ring-1 {
  width: 460px; height: 460px;
  transform: translate(-50%,-50%);
  animation: spin 28s linear infinite;
}
.h-ring-2 {
  width: 540px; height: 540px;
  transform: translate(-50%,-50%);
  animation: spin 40s linear infinite reverse;
}
@keyframes spin {
  to { transform: translate(-50%,-50%) rotate(360deg); }
}


/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green);
  padding: 0;
  border-top: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.055);
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }
.service-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 56px; height: 56px;
  background: rgba(27,58,45,0.07);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--green);
  transition: background var(--t);
}
.service-card:hover .svc-icon { background: rgba(27,58,45,0.12); }
.svc-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 12px;
}
.svc-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.72;
}


/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */
.destinations-section { background: var(--white); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.dest-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 280px;
  cursor: pointer;
}
.dest-card:nth-child(1) { grid-column: span 2; min-height: 340px; }

.dest-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.65s var(--ease);
}
.dest-card:hover .dest-card-bg { transform: scale(1.08); }

.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
  z-index: 1;
}

.dest-mecca   .dest-card-bg { background: linear-gradient(135deg,#0D2010,#1E4228,#152E1C); }
.dest-dubai   .dest-card-bg { background: linear-gradient(135deg,#10181F,#1E3450,#112035); }
.dest-turkey  .dest-card-bg { background: linear-gradient(135deg,#1E1030,#3A1E56,#200F38); }
.dest-sg      .dest-card-bg { background: linear-gradient(135deg,#0F1E28,#1A3E56,#0F2535); }
.dest-malaysia .dest-card-bg { background: linear-gradient(135deg,#0D2015,#1A3C28,#0D2418); }
.dest-europe  .dest-card-bg { background: linear-gradient(135deg,#1C1010,#3A1818,#221010); }
.dest-china   .dest-card-bg { background: linear-gradient(135deg,#1A0A0A,#8B1C1C,#3D0E0E); }

/* Destination photo layer — sits above color gradient, below dark overlay */
.dest-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.38;
  z-index: 0;
  transition: transform 0.65s var(--ease);
  pointer-events: none;
}
.dest-card:hover .dest-img { transform: scale(1.08); }
.dest-mecca .dest-img { object-position: center bottom; }

.dest-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px 26px 28px;
  z-index: 2;
}
.dest-country {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 5px;
}
.dest-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 10px;
}
.dest-card:nth-child(1) .dest-name { font-size: 1.9rem; }
.dest-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(201,168,76,0.16);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 13px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.dest-top-icon {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 2;
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
}


/* ============================================================
   SACRED JOURNEYS SECTION
   ============================================================ */
.sacred-section {
  background: var(--green-dark);
  padding: var(--pad) 0;
  position: relative;
  overflow: hidden;
}
.sacred-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='90' height='90' viewBox='0 0 90 90' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='45' cy='45' r='38' fill='none' stroke='%23C9A84C' stroke-width='0.4'/%3E%3Ccircle cx='45' cy='45' r='25' fill='none' stroke='%23C9A84C' stroke-width='0.4'/%3E%3Cline x1='45' y1='7' x2='45' y2='83' stroke='%23C9A84C' stroke-width='0.25'/%3E%3Cline x1='7' y1='45' x2='83' y2='45' stroke='%23C9A84C' stroke-width='0.25'/%3E%3C/svg%3E");
  background-size: 90px 90px;
  opacity: 0.04;
}

.sacred-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sacred-content .label { color: var(--gold); }
.sacred-content .h-section { color: var(--white); }
.sacred-content .subtitle { color: rgba(255,255,255,0.65); margin-bottom: 40px; }

.sacred-pkg-list { display: flex; flex-direction: column; gap: 14px; }
.sacred-pkg {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--r-lg);
  transition: background var(--t), border-color var(--t), transform var(--t);
  cursor: pointer;
}
.sacred-pkg:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.38);
  transform: translateX(8px);
}
.pkg-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.pkg-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 3px;
}
.pkg-desc { font-size: 0.82rem; color: rgba(255,255,255,0.48); }
.pkg-arrow {
  margin-left: auto;
  color: var(--gold);
  opacity: 0.45;
  transition: opacity var(--t), transform var(--t);
  font-size: 1.1rem;
}
.sacred-pkg:hover .pkg-arrow { opacity: 1; transform: translateX(5px); }

/* Sacred visual — decorative SVG emblem */
.sacred-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sacred-emblem-svg {
  width: 320px;
  height: 320px;
  opacity: 0.9;
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--cream); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-content .subtitle { margin-bottom: 44px; }

.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 22px; }
.why-n {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(27,58,45,0.1);
  line-height: 1;
  min-width: 44px;
}
.why-item-body h4 {
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--green);
  margin-bottom: 6px;
}
.why-item-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.why-card:nth-child(2) { margin-top: 28px; }
.why-card:nth-child(4) { margin-top: -28px; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.why-card-ico { font-size: 2rem; margin-bottom: 12px; }
.why-card h5 {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--green);
  margin-bottom: 7px;
}
.why-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.55; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.testi-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }

.quote-icon {
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 26px; left: 26px;
  pointer-events: none;
}

.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }

.testi-text {
  font-size: 0.91rem;
  color: var(--text-mid);
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 26px;
  padding-top: 18px;
}

.testi-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.t-name { font-weight: 600; font-size: 0.88rem; color: var(--text); margin-bottom: 2px; }
.t-trip { font-size: 0.76rem; color: var(--gold-dark); }


/* ============================================================
   CTA BAND
   ============================================================ */
.cta-section {
  background: var(--green);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.1) 0%, transparent 65%);
}
.cta-section .h-section { color: var(--white); margin-bottom: 14px; }
.cta-section .subtitle { color: rgba(255,255,255,0.68); margin: 0 auto 40px; max-width: 500px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-contact {
  display: flex; align-items: center; gap: 8px;
  margin-top: 26px;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.87rem;
  position: relative;
}
.cta-contact a { color: var(--gold); }
.cta-contact a:hover { text-decoration: underline; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-dark); padding: 72px 0 0; color: rgba(255,255,255,0.6); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.2fr;
  gap: 50px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .nav-logo-name { font-size: 1.5rem; display: block; margin-bottom: 3px; }
.footer-brand .nav-logo-sub { display: block; margin-bottom: 22px; }
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.72;
  max-width: 258px;
  margin-bottom: 28px;
}

.socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 26px; height: 1px;
  background: var(--gold);
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.52);
  transition: color var(--t), padding-left var(--t);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.foot-contact { display: flex; flex-direction: column; gap: 16px; }
.foot-contact-row { display: flex; gap: 13px; align-items: flex-start; }
.foot-contact-ico { color: var(--gold); margin-top: 1px; font-size: 0.9rem; flex-shrink: 0; }
.foot-contact-row a,
.foot-contact-row span { font-size: 0.86rem; color: rgba(255,255,255,0.52); transition: color var(--t); }
.foot-contact-row a:hover { color: var(--gold); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a { color: rgba(255,255,255,0.28); transition: color var(--t); }
.footer-bottom a:hover { color: var(--gold); }


/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--green-dark);
  padding: 158px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.07) 0%, transparent 55%),
    linear-gradient(145deg, #0A1C12 0%, #1B3A2D 60%, #0D2018 100%);
}
.page-hero-pat {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L55 30 L30 55 L5 30 Z' fill='none' stroke='%23C9A84C' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  opacity: 0.03;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .label { margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(2.4rem,5vw,3.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.62);
  max-width: 520px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }


/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-logo-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid rgba(201,168,76,0.18);
}
.about-logo-frame img { width: 100%; display: block; }
.about-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 20px 22px;
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--sh-gold);
}
.about-badge .b-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-badge .b-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.about-content .subtitle { margin-bottom: 28px; }
.about-vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.about-val { display: flex; gap: 12px; align-items: flex-start; }
.val-check {
  width: 24px; height: 24px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.68rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.val-body strong { color: var(--green); display: block; font-size: 0.92rem; margin-bottom: 2px; }
.val-body span { font-size: 0.85rem; color: var(--text-mid); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.mission-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.055);
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}
.mission-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.mission-ico { font-size: 2.2rem; margin-bottom: 14px; }
.mission-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 10px;
}
.mission-card p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.68; }


/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
}
.svc-detail-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.065);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.svc-detail-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.svc-card-head {
  background: var(--green);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.svc-card-ico-lg {
  width: 54px; height: 54px;
  background: rgba(201,168,76,0.14);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.svc-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
}
.svc-card-body { padding: 30px; }
.svc-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 22px;
}
.svc-features { display: flex; flex-direction: column; gap: 8px; }
.svc-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-mid);
}
.feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.process-section { background: var(--cream); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.step-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 8px;
}
.step-desc { font-size: 0.83rem; color: var(--text-mid); line-height: 1.6; }


/* ============================================================
   PACKAGES PAGE
   ============================================================ */
.pkg-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 52px; }
.pkg-tab {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid rgba(27,58,45,0.18);
  color: var(--text-mid);
  background: transparent;
  transition: var(--t);
}
.pkg-tab.active,
.pkg-tab:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

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

.pkg-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--t), box-shadow var(--t);
}
.pkg-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }

.pkg-card-head {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.pkg-card-head::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 2 L38 20 L20 38 L2 20 Z' fill='none' stroke='%23C9A84C' stroke-width='0.4'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  opacity: 0.06;
}
.pkg-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.pkg-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 7px;
  position: relative; z-index: 1;
}
.pkg-sub {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
  position: relative; z-index: 1;
}
.pkg-card-body { padding: 28px; }
.pkg-includes { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.pkg-inc {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.86rem; color: var(--text-mid);
}
.inc-check {
  width: 20px; height: 20px;
  background: rgba(27,58,45,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 0.62rem;
  flex-shrink: 0;
}
.pkg-foot {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.pkg-price-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 3px; }
.pkg-price { font-family: var(--serif); font-size: 1.1rem; color: var(--green); }


/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-cat { margin-bottom: 52px; }
.faq-cat-title {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--green);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(27,58,45,0.1);
  display: flex; align-items: center; gap: 10px;
}
.faq-cat-title span { color: var(--gold); }

.faq-item {
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.faq-item.open { border-color: rgba(201,168,76,0.32); box-shadow: 0 4px 16px rgba(0,0,0,0.05); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--text);
  user-select: none;
  transition: color var(--t);
  gap: 16px;
}
.faq-item.open .faq-q { color: var(--green); }
.faq-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(27,58,45,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background var(--t), transform var(--t), color var(--t);
  font-weight: 400;
}
.faq-item.open .faq-ico {
  background: var(--gold);
  color: var(--green-dark);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
}
.faq-item.open .faq-a { max-height: 350px; }
.faq-a-inner {
  padding: 16px 22px 22px;
  font-size: 0.89rem;
  color: var(--text-mid);
  line-height: 1.82;
  border-top: 1px solid rgba(0,0,0,0.05);
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--green);
  margin-bottom: 14px;
}
.contact-info > p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.c-detail { display: flex; gap: 16px; align-items: flex-start; }
.c-detail-ico {
  width: 44px; height: 44px;
  background: rgba(27,58,45,0.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.c-detail-text strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-light); margin-bottom: 4px; }
.c-detail-text a, .c-detail-text span { font-size: 0.92rem; color: var(--text); transition: color var(--t); }
.c-detail-text a:hover { color: var(--green); }

.hours-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 24px;
  border-left: 3px solid var(--gold);
}
.hours-card h5 { font-family: var(--serif); font-size: 1rem; color: var(--green); margin-bottom: 14px; }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 0.86rem; color: var(--text-mid);
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hours-row:last-child { border-bottom: none; }
.hours-open { color: var(--green); font-weight: 600; }

.contact-form-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 44px 40px;
}
.contact-form-card h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--green); margin-bottom: 8px; }
.contact-form-card > p { font-size: 0.86rem; color: var(--text-light); margin-bottom: 30px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--r);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,58,45,0.08);
}
.form-control::placeholder { color: rgba(0,0,0,0.28); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.btn-form { width: 100%; padding: 15px; font-size: 0.88rem; letter-spacing: 0.1em; }

.map-note {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 32px;
  text-align: center;
  color: var(--text-mid);
}
.map-note .map-icon { font-size: 3rem; margin-bottom: 12px; }
.map-note h4 { font-family: var(--serif); color: var(--green); margin-bottom: 8px; }
.map-note p { font-size: 0.86rem; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sacred-inner { grid-template-columns: 1fr; gap: 50px; }
  .sacred-visual { display: none; }
  .destinations-section .dest-grid { grid-template-columns: repeat(2,1fr); }
  .dest-card:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 900px) {
  :root { --pad: 64px; }
  .container { padding: 0 28px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: repeat(2,1fr); }
  .why-card:nth-child(2), .why-card:nth-child(4) { margin-top: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-badge { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: repeat(2,1fr); }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .section-head { margin-bottom: 44px; }
  .page-hero { padding: 140px 0 64px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card:nth-child(1) { grid-column: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .contact-form-card { padding: 28px 22px; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .about-vals { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .vac-prop-hero img { height: 380px; }
  .subtitle { max-width: 100%; }
  .section-head { margin-bottom: 38px; }
  .page-hero { padding: 130px 0 56px; }
  .contact-form-card h3 { font-size: 1.3rem; }
  .pkg-tabs { gap: 8px; }
  .pkg-tab { padding: 8px 18px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
  :root { --pad: 48px; }
  .container { padding: 0 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 0 48px; }
  .vac-games-grid { grid-template-columns: repeat(2,1fr); }
  .vac-prop-hero img { height: 260px; }
  .china-stat { padding: 16px 10px; }
  .china-stat-num { font-size: 1.35rem; }
  .hero-badge { font-size: 0.62rem; padding: 7px 14px; }
  .foot-contact-row a { word-break: break-all; }
  .c-detail-text a { word-break: break-all; }
  .leader-card { padding: 26px 22px; }
  .leader-name { font-size: 1.1rem; }
  .vac-price-band { padding: 20px 18px; }
  .vac-price-big { font-size: 1.8rem; }
  .section-head { margin-bottom: 32px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-num { font-size: 2rem; }
}

/* ── Utility responsive grid helpers (used via inline styles) ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* Contact strip — collapse on small screens */
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
@media (max-width: 900px) {
  .contact-strip-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .contact-strip-grid { grid-template-columns: 1fr; }
  .contact-strip-grid > a,
  .contact-strip-grid > div {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .contact-strip-grid > :last-child { border-bottom: none; }
}

/* Note card in packages page */
.pkg-note-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .pkg-note-grid { grid-template-columns: 1fr; }
}

/* About page team grid override */
.team-grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .team-grid-3 { grid-template-columns: 1fr; }
}

/* Leadership grid (about page) */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.leader-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.leader-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.leader-initial {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  border: 2px solid rgba(201,168,76,0.2);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.leader-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 6px;
  line-height: 1.2;
}
.leader-role {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.leader-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.leader-divider {
  height: 1px;
  background: rgba(0,0,0,0.07);
  margin-bottom: 20px;
}
.leader-contacts { display: flex; flex-direction: column; gap: 10px; }
.leader-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}
.leader-contact-ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.leader-contact-row a {
  color: var(--green);
  font-weight: 500;
  transition: color var(--t);
}
.leader-contact-row a:hover { color: var(--gold-dark); }
@media (max-width: 900px) {
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .leadership-grid { grid-template-columns: 1fr; }
}

/* 4-column team grid (when BD person added) */
.team-grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .team-grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .team-grid-4 { grid-template-columns: 1fr; }
}

/* Team member actual photo */
.team-photo-frame {
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 2px solid rgba(201,168,76,0.25);
  flex-shrink: 0;
}
.team-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ============================================================
   CHINA SPECIALIST SECTION (Homepage)
   ============================================================ */
.china-section {
  background: var(--green-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.china-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.china-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.china-content .label { color: var(--gold); }
.china-content h2 { color: var(--white); margin-bottom: 16px; }
.china-content .subtitle { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.china-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 36px;
}
.china-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--r-lg);
  padding: 22px 16px;
  text-align: center;
}
.china-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.china-stat-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.china-visas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.china-visa-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 10px;
  padding: 16px 20px;
  transition: var(--t);
}
.china-visa-row:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.3);
}
.china-visa-ico {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.china-visa-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.china-visa-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.china-visa-badge {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 4px 10px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .china-inner { grid-template-columns: 1fr; gap: 40px; }
  .china-stats { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 480px) {
  .china-stats { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .china-stat-num { font-size: 1.5rem; }
}

/* ============================================================
   VACATION TEASER (Homepage)
   ============================================================ */
.vac-teaser {
  background: var(--cream);
  padding: 90px 0;
  overflow: hidden;
}
.vac-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.vac-teaser-gallery {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sh-lg);
}
.vac-teaser-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.vac-teaser-gallery .vac-img-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(27,58,45,0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
}
.vac-teaser-content .label { color: var(--gold); }
.vac-teaser-content h2 { color: var(--green); margin-bottom: 14px; }
.vac-teaser-content .subtitle { color: var(--text-mid); margin-bottom: 28px; }
.vac-teaser-props {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.vac-prop-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid rgba(27,58,45,0.12);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
}
.vac-price-highlight {
  background: var(--green);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.vac-price-lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.vac-price-val { font-family: var(--serif); font-size: 1.7rem; color: var(--gold); font-weight: 700; }
.vac-price-note { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
@media (max-width: 900px) {
  .vac-teaser-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   VACATION PAGE
   ============================================================ */
.vac-prop-hero {
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 48px;
  position: relative;
}
.vac-prop-hero img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.vac-prop-hero-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 36px 28px;
  background: linear-gradient(transparent, rgba(13,32,24,0.85));
}
.vac-prop-hero-caption h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 6px; }
.vac-prop-hero-caption p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.vac-price-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--green);
  border-radius: var(--r-lg);
  padding: 28px 36px;
  margin-bottom: 48px;
}
.vac-price-band-left .vac-price-lbl { color: rgba(255,255,255,0.5); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.vac-price-band-left .vac-price-big { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.vac-price-band-left .vac-price-sub { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 4px; }
.vac-price-band-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.vac-price-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 100px;
  text-transform: uppercase;
}

/* Gallery grid */
.vac-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 60px;
}
.vac-gallery-item {
  overflow: hidden;
  background: var(--cream-dark);
}
.vac-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}
.vac-gallery-item:hover img { transform: scale(1.06); }
.vac-gallery-item.wide { grid-column: span 2; }
.vac-gallery-item.tall { grid-row: span 2; }

/* Amenities */
.vac-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vac-amenity {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--cream);
  border-radius: 10px;
  padding: 18px 16px;
  border: 1px solid rgba(0,0,0,0.05);
}
.vac-amenity-ico {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.vac-amenity-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 3px;
}
.vac-amenity-desc { font-size: 0.78rem; color: var(--text-light); }

/* Food menu */
.vac-menu-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.vac-menu-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.vac-menu-head {
  background: var(--green);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.vac-menu-head-ico { font-size: 1.2rem; }
.vac-menu-head h4 { font-family: var(--serif); font-size: 1rem; color: var(--gold-light); }
.vac-menu-head p { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.vac-menu-body { padding: 20px 22px; }
.vac-menu-option {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.vac-menu-option:last-child { border-bottom: none; }
.vac-menu-option strong { color: var(--green); }

/* Games + extras */
.vac-games-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
}
.vac-game-item {
  text-align: center;
  background: var(--cream);
  border-radius: 10px;
  padding: 20px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--t);
}
.vac-game-item:hover { background: var(--green); color: var(--gold-light); }
.vac-game-ico { font-size: 1.6rem; margin-bottom: 8px; }

/* Extras (add-on menu) */
.vac-extras { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.vac-extra-pill {
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--text-mid);
}

/* Things to carry + info grid */
.vac-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .vac-info-grid { grid-template-columns: 1fr; }
}

/* Responsive vacation page */
@media (max-width: 900px) {
  .vac-gallery { grid-template-columns: repeat(2,1fr); }
  .vac-gallery-item.wide { grid-column: span 2; }
  .vac-gallery-item.tall { grid-row: auto; }
  .vac-amenities-grid { grid-template-columns: repeat(2,1fr); }
  .vac-menu-grid { grid-template-columns: 1fr; }
  .vac-games-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 600px) {
  .vac-gallery { grid-template-columns: repeat(2,1fr); }
  .vac-gallery-item.wide { grid-column: span 2; }
  .vac-prop-hero img { height: 300px; }
  .vac-amenities-grid { grid-template-columns: repeat(2,1fr); }
  .vac-games-grid { grid-template-columns: repeat(3,1fr); }
  .vac-price-band { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
}
@media (max-width: 420px) {
  .vac-gallery { grid-template-columns: 1fr; }
  .vac-gallery-item.wide { grid-column: auto; }
  .vac-amenities-grid { grid-template-columns: 1fr; }
  .vac-games-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Global safety nets for very small screens ── */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .china-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { display: none; }
  .mobile-menu a { padding: 11px 24px; }
  .sacred-pkg { padding: 16px 18px; gap: 14px; }
  .btn { padding: 12px 24px; font-size: 0.78rem; }
}
