/* ===================================
   XING THAI ENTERPRISE — Mockup A
   Strict React/Tailwind spec translation
   Design language: Apple / Aman Resorts / Four Seasons
   2026-05-14
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Noto+Sans+SC:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  /* React spec colors */
  --bg:          #F2EBE0;
  --bg-section:  #F7F0E7;
  --bg-dark:     #1A0F2E;
  --bg-footer:   #12091F;
  --bg-card:     #FFFFFF;

  --text-base:   #14110D;
  --text-heading: #1A0F2E;
  --text-body:   #463B56;
  --text-muted:  #5A4B66;
  --text-soft:   #7A6A5A;

  --purple:      #6B21A8;
  --purple-dark: #581C87;
  --purple-deep: #2A1246;

  --gold:        #C9A84C;
  --gold-light:  #DDBB5C;
  --gold-mid:    #B48B2A;
  --gold-soft:   #F5E7B5;

  --on-dark:     #F8F2EA;
  --on-dark-soft:#D8CCE6;
  --on-dark-mute:#B7A9CA;
  --on-dark-low: #7F7295;

  /* Radius — generous like the React spec */
  --r-pill:   9999px;
  --r-lg:     28px;
  --r-xl:     30px;
  --r-2xl:    32px;
  --r-3xl:    36px;

  /* Shadow scale */
  --shadow-card:   0 20px 60px rgba(0, 0, 0, 0.05);
  --shadow-card-lg:0 20px 60px rgba(0, 0, 0, 0.06);
  --shadow-card-xl:0 40px 120px rgba(0, 0, 0, 0.08);
  --shadow-portrait:0 40px 120px rgba(26, 15, 46, 0.35);
  --shadow-ajarn:  0 30px 100px rgba(0, 0, 0, 0.4);
  --shadow-button: 0 20px 60px rgba(107, 33, 168, 0.22);
  --shadow-gold:   0 20px 60px rgba(0, 0, 0, 0.3);

  /* Container widths */
  --container-nav:    1440px;
  --container-content:1280px;

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: rgba(107, 33, 168, 0.18); color: var(--text-heading); }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; scroll-behavior: smooth; scroll-padding-top: 88px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

body {
  font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-base);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Noto Serif SC', 'Songti SC', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-heading);
}

/* ===== Layout utilities ===== */
.container-nav { max-width: var(--container-nav); margin: 0 auto; padding: 0 40px; }
.container { max-width: var(--container-content); margin: 0 auto; padding: 0 40px; }

/* ===== Background ornaments (React spec: 2 thin gold circles, fixed, opacity 0.05) ===== */
.bg-ornaments {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
}
.bg-ornaments::before, .bg-ornaments::after {
  content: '';
  position: absolute;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.bg-ornaments::before { top: 80px; left: 40px; width: 384px; height: 384px; }
.bg-ornaments::after { bottom: 160px; right: 80px; width: 500px; height: 500px; }

/* ===== Sections wrapper (sit above the fixed ornaments) ===== */
main, .navbar, footer { position: relative; z-index: 1; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 235, 224, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav-inner {
  max-width: var(--container-nav);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 16px; }
.nav-logo-mark {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  flex-shrink: 0;
  overflow: hidden;
}
.nav-logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-text {
  display: flex; flex-direction: column;
}
.nav-logo-title {
  letter-spacing: 0.35em;
  font-size: 14px;
  font-weight: 600;
  color: var(--bg-dark);
}
.nav-logo-est {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  gap: 56px;
  font-size: 15px;
  color: #2C1B45;
  align-items: center;
}
.nav-links a:hover { color: var(--purple); }
.nav-cta {
  background: var(--purple);
  color: white;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 15px;
  box-shadow: var(--shadow-button);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-cta:hover { background: var(--purple-dark); transform: translateY(-1px); }
.nav-cta i { font-size: 14px; }
.nav-hamburger { display: none; width: 28px; height: 22px; flex-direction: column; justify-content: space-between; cursor: pointer; }
.nav-hamburger span { display: block; height: 2px; background: var(--bg-dark); border-radius: 2px; transition: transform 0.3s var(--ease); }
.nav-mobile { display: none; }

/* ===== HERO ===== */
.hero {
  position: relative;
}
.hero-inner {
  max-width: var(--container-nav);
  margin: 0 auto;
  padding: 96px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--r-pill);
  padding: 8px 20px;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #7C5A14;
  margin-bottom: 32px;
}
.hero h1 {
  font-size: clamp(56px, 6vw, 86px);
  line-height: 0.95;
  color: var(--text-heading);
  margin-bottom: 0;
}
.hero h1 .accent-word {
  position: relative;
  display: inline-block;
  color: var(--purple);
}
.hero h1 .accent-word::after {
  content: '';
  position: absolute;
  left: 0; bottom: 8px;
  height: 4px;
  width: 100%;
  background: var(--gold);
  border-radius: 4px;
}
.hero-subtitle {
  margin-top: 32px;
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 640px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 32px;
  border-radius: 16px;
  font-weight: 500;
  font-size: 16px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: white;
  box-shadow: 0 24px 64px rgba(107, 33, 168, 0.25);
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 28px 72px rgba(107, 33, 168, 0.32); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(107, 33, 168, 0.4);
  color: var(--purple);
}
.btn-outline:hover { background: rgba(107, 33, 168, 0.05); transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--bg-dark);
  font-weight: 600;
  padding: 22px 40px;
  border-radius: var(--r-pill);
  font-size: 20px;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Hero portrait — arch frame with gold halo */
.hero-portrait-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-portrait-halo {
  position: absolute;
  inset: 0;
  background: rgba(201, 168, 76, 0.22);
  filter: blur(120px);
  border-radius: 50%;
  transform: scale(0.75);
  z-index: 0;
}
.hero-portrait {
  position: relative;
  width: 420px;
  height: 580px;
  border-radius: 220px 220px 30px 30px;
  border: 3px solid var(--gold);
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: var(--shadow-portrait);
  z-index: 1;
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 15, 46, 0.55));
  pointer-events: none;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-dark);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.trust-inner {
  max-width: var(--container-nav);
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--on-dark);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
}
.trust-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

/* ===== Section base ===== */
.section { padding: 112px 0; position: relative; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold-mid);
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.section-eyebrow.eyebrow-gold-light { color: var(--gold); }
.section-head { text-align: center; margin-bottom: 80px; }
.section-head h2 { font-size: clamp(40px, 4.5vw, 62px); line-height: 1.05; }

/* ===== PAIN POINTS ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.pain-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-card-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 28px 80px rgba(0, 0, 0, 0.09); }
.pain-card-row { display: flex; align-items: flex-start; gap: 24px; }
.pain-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(107, 33, 168, 0.25);
}
.pain-card p { font-size: 20px; line-height: 1.8; color: var(--text-body); }

/* ===== SERVICES ===== */
.services-section {
  background: var(--bg-section);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.service-feature {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--r-3xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-xl);
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.service-feature-media {
  position: relative;
  min-height: 420px;
}
.service-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.service-feature-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 8px 20px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.service-feature-content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-feature-content h3 {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.service-feature-content p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.service-tag {
  padding: 12px 20px;
  border-radius: var(--r-pill);
  background: rgba(107, 33, 168, 0.08);
  color: var(--purple);
  border: 1px solid rgba(107, 33, 168, 0.1);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-tag i { font-size: 13px; color: var(--gold-mid); }
.learn-link {
  color: var(--purple);
  font-weight: 600;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  transition: gap 0.25s var(--ease);
}
.learn-link:hover { gap: 14px; color: var(--purple-dark); }

.services-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-sub {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 220px 1fr;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-sub:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-lg); }
.service-sub img { width: 100%; height: 100%; object-fit: cover; }
.service-sub-content { padding: 32px; }
.service-sub-content h4 {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.service-sub-content p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===== AJARN SECTION ===== */
.ajarn-section {
  background: var(--bg-dark);
  padding: 128px 0;
  position: relative;
  overflow: hidden;
}
.ajarn-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.18), transparent 30%);
  pointer-events: none;
}
.ajarn-inner {
  max-width: var(--container-content);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ajarn-portrait {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-ajarn);
}
.ajarn-portrait img { width: 100%; height: 640px; object-fit: cover; object-position: center top; }
.ajarn-corner { position: absolute; width: 56px; height: 56px; pointer-events: none; }
.ajarn-corner-tl { top: 20px; left: 20px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.ajarn-corner-tr { top: 20px; right: 20px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.ajarn-corner-bl { bottom: 20px; left: 20px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.ajarn-corner-br { bottom: 20px; right: 20px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.ajarn-section h2 {
  font-size: clamp(52px, 6vw, 76px);
  line-height: 1;
  color: var(--on-dark);
  margin-bottom: 32px;
}
.ajarn-section p {
  color: var(--on-dark-soft);
  font-size: 20px;
  line-height: 2;
  max-width: 720px;
  margin-bottom: 48px;
}
.ajarn-section p .text-muted-italic { opacity: 0.6; font-style: italic; }
.ajarn-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.ajarn-badge {
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-soft);
  border-radius: var(--r-pill);
  padding: 14px 24px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ajarn-cta {
  color: var(--gold);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.25s var(--ease);
}
.ajarn-cta:hover { gap: 18px; color: var(--gold-light); }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start;
}
.why-left h2 {
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1;
}
.why-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}
.why-item { display: flex; align-items: flex-start; gap: 20px; }
.why-check {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 12px 28px rgba(107, 33, 168, 0.22);
}
.why-item p { color: var(--text-body); font-size: 20px; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding-bottom: 112px; padding-top: 0; }
.testimonial-empty {
  border: 2px dashed rgba(201, 168, 76, 0.4);
  border-radius: var(--r-3xl);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 80px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-empty-icon {
  font-size: 56px;
  color: var(--gold);
  margin-bottom: 32px;
}
.testimonial-empty h3 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 500;
}
.testimonial-empty p {
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 32px;
}

/* ===== FAQ ===== */
.faq-section { padding: 0 0 112px; }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8px;
  background: none;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-heading);
  cursor: pointer;
  gap: 24px;
  transition: color 0.2s var(--ease);
}
.faq-q:hover { color: var(--purple); }
.faq-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(107, 33, 168, 0.4);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.faq-item.open .faq-icon { background: var(--purple); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 8px 28px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
}
.faq-foot { text-align: center; margin-top: 56px; }

/* ===== CTA ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--purple-deep) 0%, var(--purple) 50%, var(--purple-deep) 100%);
  padding: 140px 0;
}
/* Full-width lotus wallpaper bleeding across the whole banner */
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
/* Sunburst gold glow from top center */
.cta-section::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(232, 201, 106, 0.55), rgba(201, 168, 76, 0.18) 38%, transparent 68%);
  pointer-events: none;
  z-index: 1;
}

/* Large gold temple silhouette centered behind the text */
.cta-temple-bg {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -48%);
  width: 560px;
  height: auto;
  opacity: 0.32;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-section h2 {
  font-size: clamp(52px, 6.4vw, 82px);
  line-height: 1.05;
  color: #FFF8EE;
  margin: 0;
}
.cta-section p {
  color: #E7DAF5;
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 16px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-footer);
  color: var(--on-dark-soft);
  border-top: 4px solid var(--gold);
}
.footer-grid {
  max-width: var(--container-nav);
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 64px;
}
.footer-brand .footer-mark {
  letter-spacing: 0.35em;
  font-size: 18px;
  color: var(--gold-soft);
  margin-bottom: 24px;
}
.footer-brand p { color: var(--on-dark-mute); line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-col ul li { margin-bottom: 16px; color: var(--on-dark-mute); }
.footer-col ul li a { color: var(--on-dark-mute); transition: color 0.2s var(--ease); }
.footer-col ul li a:hover { color: var(--gold-soft); }
.footer-col p { color: var(--on-dark-mute); line-height: 1.8; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--on-dark-mute);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.footer-social a:hover { background: var(--purple); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 40px;
  text-align: center;
  font-size: 14px;
  color: var(--on-dark-low);
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px; height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  .hero-portrait { width: 360px; height: 500px; }
  .ajarn-inner { grid-template-columns: 420px 1fr; gap: 64px; }
  .ajarn-portrait img { height: 560px; }
  .why-grid { grid-template-columns: 360px 1fr; gap: 56px; }
  .service-feature-content { padding: 48px; }
}

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 56px; text-align: center; padding: 64px 40px; }
  .hero h1 { margin-left: auto; margin-right: auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-portrait { width: 320px; height: 440px; margin: 0 auto; }
  .trust-inner { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .trust-item { flex: 0 0 calc(50% - 16px); }
  .pain-grid { grid-template-columns: 1fr; gap: 24px; }
  .pain-card { padding: 32px; }
  .service-feature { grid-template-columns: 1fr; }
  .service-feature-media { min-height: 320px; }
  .service-feature-content { padding: 40px; }
  .services-sub { grid-template-columns: 1fr; }
  .service-sub { grid-template-columns: 160px 1fr; }
  .ajarn-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; padding: 0 32px; }
  .ajarn-portrait { max-width: 480px; margin: 0 auto; }
  .ajarn-section p { margin-left: auto; margin-right: auto; }
  .ajarn-badges { justify-content: center; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .why-items { grid-template-columns: 1fr; gap: 24px; text-align: left; max-width: 540px; margin: 0 auto; }
  .testimonial-empty { padding: 56px 32px; }
  .cta-inner { padding: 0 28px; gap: 20px; }
  .cta-temple-bg { width: 380px; opacity: 0.28; }
  .cta-bg-pattern { opacity: 0.14; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; padding: 64px 32px; }
}

@media (max-width: 640px) {
  .container, .container-nav { padding: 0 20px; }
  .section { padding: 80px 0; }
  .ajarn-section { padding: 80px 0; }
  .cta-section { padding: 72px 0; }
  .hero-inner { padding: 48px 24px; }
  .hero-portrait { width: 280px; height: 380px; border-radius: 140px 140px 16px 16px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; padding: 18px 24px; font-size: 15px; }
  .btn-gold { padding: 20px 32px; font-size: 18px; width: auto; }
  .trust-inner { padding: 24px; gap: 20px; }
  .trust-item { flex: 1 1 100%; font-size: 16px; }
  .pain-card { padding: 24px; }
  .pain-icon { width: 56px; height: 56px; font-size: 22px; }
  .pain-card p { font-size: 18px; line-height: 1.6; }
  .service-feature-content { padding: 32px 24px; }
  .service-tag { padding: 10px 16px; font-size: 14px; }
  .service-sub { grid-template-columns: 1fr; }
  .service-sub img { height: 200px; }
  .ajarn-portrait img { height: 480px; }
  .ajarn-section p { font-size: 17px; }
  .ajarn-badge { padding: 12px 18px; font-size: 14px; }
  .why-item p { font-size: 17px; }
  .testimonial-empty { padding: 48px 24px; }
  .cta-section p { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
  .faq-q { font-size: 19px; padding: 20px 4px; }
  .wa-float { width: 56px; height: 56px; bottom: 20px; right: 20px; font-size: 24px; }

  /* Mobile nav drawer */
  .nav-mobile {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 78px;
    left: 0; right: 0;
    background: var(--bg-dark);
    padding: 24px;
    z-index: 49;
    box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { color: white; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 17px; }
  .nav-mobile .nav-cta { display: inline-flex; width: max-content; margin-top: 16px; }
}

/* ============================================================ */
/* ===== TESTIMONIAL CARDS (ZH version with real testimonials) ===== */
/* ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--container-content);
  margin: 56px auto 0;
}
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 14px 32px rgba(26, 15, 46, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 14px;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-heading);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--purple);
}
.testimonial-tag {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px 22px; }
}

/* ============================================================ */
/* ===== INNER PAGES: services / faq / location ===== */
/* ============================================================ */

/* Page hero (non-home pages) */
.page-hero {
  padding: 200px 40px 96px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.page-hero .section-eyebrow {
  display: inline-block;
  margin-bottom: 24px;
}
.page-hero h1 {
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.05;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 28px;
}
.page-hero p {
  font-size: 22px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Service detail blocks (alternating image + text) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container-content);
  margin: 0 auto;
}
.service-detail.reverse .service-detail-content { order: 2; }
.service-detail.reverse .service-detail-img { order: 1; }
.service-detail-content .section-eyebrow { margin-bottom: 16px; }
.service-detail-content h2 {
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.1;
  margin-bottom: 28px;
}
.service-detail-content p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.service-detail-content .btn { margin-top: 16px; }
.service-detail-img {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(26, 15, 46, 0.15);
}
.service-detail-img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}
.service-detail-img .placeholder-icon {
  width: 100%;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107,33,168,0.06), rgba(201,168,76,0.10));
  font-size: 140px;
}

/* FAQ category dividers (for FAQ detail page) */
.faq-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--purple);
  margin: 56px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid rgba(201, 168, 76, 0.45);
  letter-spacing: 0.01em;
}
.faq-cat-title:first-child { margin-top: 0; }

/* Steps grid (How it works / 3 ways to consult) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: var(--container-content);
  margin: 56px auto 0;
}
.step-item {
  text-align: center;
  padding: 32px 20px;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1.5px solid rgba(201, 168, 76, 0.6);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
}
.section-dark-bg .step-num,
.steps-grid .step-num {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 168, 76, 0.55);
}
.step-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: #FFF8EE;
  margin-bottom: 12px;
}
.step-item p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 248, 238, 0.7);
}

/* Dark-section wrapper for inner pages (steps / CTA inline) */
.section-dark-bg {
  background: linear-gradient(180deg, var(--purple-deep) 0%, #2A123F 100%);
  padding: 120px 0;
}
.section-dark-bg .section-eyebrow { color: var(--gold); }
.section-dark-bg .section-head h2 { color: #FFF8EE; }
.section-dark-bg .section-subtitle {
  text-align: center;
  font-size: 19px;
  color: rgba(255, 248, 238, 0.75);
  max-width: 640px;
  margin: -40px auto 0;
}

/* Section subtitle (used on services / location dark sections) */
.section-subtitle {
  text-align: center;
  font-size: 19px;
  color: var(--text-muted);
  max-width: 640px;
  margin: -40px auto 0;
}

/* ============================================================ */
/* ===== LOCATION PAGE ===== */
/* ============================================================ */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  max-width: var(--container-content);
  margin: 0 auto;
}
.contact-card {
  background: #fff;
  border: 1px solid rgba(107, 33, 168, 0.08);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 24px 48px rgba(26, 15, 46, 0.08);
}
.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(107, 33, 168, 0.08);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 17px;
  color: var(--text-heading);
  font-weight: 500;
  line-height: 1.4;
}
.contact-value a { color: var(--purple); }
.contact-value a:hover { text-decoration: underline; }
.contact-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
}
.contact-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.contact-actions .btn { flex: 1; min-width: 140px; justify-content: center; }
.map-container {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(26, 15, 46, 0.12);
  height: 540px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-foot { text-align: center; margin-top: 20px; }

/* ============================================================ */
/* ===== INNER PAGES RESPONSIVE ===== */
/* ============================================================ */

@media (max-width: 1024px) {
  .service-detail { grid-template-columns: 1fr; gap: 48px; }
  .service-detail.reverse .service-detail-content { order: 2; }
  .service-detail.reverse .service-detail-img { order: 1; }
  .service-detail-img img,
  .service-detail-img .placeholder-icon { height: 420px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-container { height: 420px; }
  .page-hero { padding: 160px 32px 72px; }
}

@media (max-width: 640px) {
  .page-hero { padding: 140px 20px 64px; }
  .page-hero h1 { font-size: clamp(40px, 9vw, 56px); }
  .page-hero p { font-size: 18px; }
  .service-detail { gap: 32px; }
  .service-detail-img img,
  .service-detail-img .placeholder-icon { height: 320px; border-radius: 28px; }
  .service-detail-content h2 { font-size: 36px; }
  .service-detail-content p { font-size: 17px; line-height: 1.75; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-item { padding: 24px 16px; }
  .contact-card { padding: 28px 22px; border-radius: 24px; }
  .map-container { height: 320px; border-radius: 24px; }
  .faq-cat-title { font-size: 24px; margin-top: 40px; }
  .section-dark-bg { padding: 80px 0; }
}
