/* ===========================================================
   Thai Elysium Spa — Luxury VIP Landing Page
   =========================================================== */

:root {
  --bg: #0c0906;
  --bg-alt: #14100b;
  --card: #1b140d;
  --card-border: #2e2318;
  --gold: #c9a15e;
  --gold-light: #e6c98a;
  --gold-dim: #8a6f42;
  --red: #c9483f;
  --cream: #f4ecdc;
  --muted: #beae97;
  --muted-dim: #8d7f6a;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1180px;
  --shadow-soft: 0 20px 50px -20px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gold-light);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.4rem; color: var(--gold-light); }

p { margin: 0 0 1em; color: var(--muted); }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: #14100b; padding: 10px 18px; z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 0.8em;
  font-weight: 500;
}
.eyebrow.center, .center { text-align: center; }
.section-sub {
  max-width: 640px;
  margin: 0 auto 2.5em;
  color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dim));
  color: #16110b;
  box-shadow: 0 10px 25px -10px rgba(201,161,94,0.6);
}
.btn-primary:hover { color: #16110b; box-shadow: 0 14px 30px -10px rgba(201,161,94,0.8); }

.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-dim);
}
.btn-outline:hover { color: var(--gold-light); border-color: var(--gold); background: rgba(201,161,94,0.08); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: none;
  padding: 8px 10px;
}
.btn-ghost:hover { color: var(--gold-light); }

.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 9, 6, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,161,94,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand-logo { height: 52px; width: auto; }

.main-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--cream);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--gold-light); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-call span { display: none; }
.header-whatsapp { padding: 10px 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--gold-dim);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--gold-light);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,7,5,0.55) 0%, rgba(10,7,5,0.55) 30%, rgba(10,7,5,0.92) 100%),
    linear-gradient(90deg, rgba(8,6,4,0.85) 0%, rgba(8,6,4,0.35) 55%, rgba(8,6,4,0.15) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
  max-width: 760px;
}
.hero-sub { font-size: 1.08rem; max-width: 600px; color: var(--muted); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin: 1.6em 0; }
.hero-ctas.center { justify-content: center; }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--card-border);
  border-top: 1px solid var(--card-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 34px 24px;
  text-align: center;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-heading); font-size: 1.7rem; color: var(--gold-light); font-weight: 600; }
.stat-label { font-size: 0.78rem; color: var(--muted-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-link { display: flex; flex-direction: column; gap: 4px; }
.stat-link:hover .stat-num, .stat-link:hover .stat-label { color: var(--gold-light); }

/* ---------- About ---------- */
.about { padding: 110px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; min-height: 420px; }
.about-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.about-img-1 { width: 78%; position: relative; z-index: 1; }
.about-img-2 {
  width: 55%;
  position: absolute;
  right: 0;
  bottom: -40px;
  z-index: 2;
  border: 6px solid var(--bg);
}
.about-points { list-style: none; padding: 0; margin: 1.4em 0; display: grid; gap: 10px; }
.about-points li {
  padding-left: 28px;
  position: relative;
  color: var(--cream);
  font-size: 0.96rem;
}
.about-points li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
}

/* ---------- Services ---------- */
.services { padding: 110px 0; background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold-dim);
}
.service-card img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.service-body { padding: 22px 24px 26px; }
.service-body p { font-size: 0.92rem; }
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.price { color: var(--gold-light); font-weight: 500; font-size: 0.92rem; }
.price-note { text-align: center; color: var(--muted-dim); font-size: 0.82rem; margin-top: 30px; }

/* ---------- Offers ---------- */
.offers { padding: 110px 0; }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.offer-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.offer-card img { width: 100%; object-fit: cover; }
.offer-card figcaption { padding: 24px; }
.offer-card p { font-size: 0.92rem; }

/* ---------- Why us ---------- */
.why-us { padding: 110px 0; background: var(--bg-alt); }
.why-us-banner { border-radius: var(--radius-lg); margin: 50px auto 40px; box-shadow: var(--shadow-soft); }
.why-us-list {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Gallery (slidable) ---------- */
.gallery { padding: 110px 0; }
.gallery-track { position: relative; margin-top: 50px; }
.gallery-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gallery-grid::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: start;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: none;
  aspect-ratio: 3/2;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--gold-dim); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2; box-shadow: var(--shadow-soft);
  transition: background 0.2s ease, color 0.2s ease;
}
.gallery-nav:hover { background: var(--gold); color: var(--bg); }
.gallery-nav .icon { width: 20px; height: 20px; }
.gallery-nav.prev { left: -24px; }
.gallery-nav.next { right: -24px; }
@media (max-width: 900px) {
  .gallery-nav { display: none; }
}
@media (max-width: 720px) {
  .gallery-item { width: 78vw; }
}

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,4,3,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.lightbox-close {
  position: absolute; top: 24px; right: 30px;
  background: none; border: 1px solid var(--gold-dim); color: var(--gold-light);
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.5rem; cursor: pointer;
  line-height: 1;
}

/* ---------- Spa Near Me ---------- */
.nearme { padding: 110px 0; background: var(--bg-alt); }
.nearme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.nearme-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.nearme-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.nearme-card p { color: var(--muted); font-size: 0.92rem; }
.nearme-areas { text-align: center; margin: 46px 0 40px; }
.nearme-areas-label { color: var(--muted-dim); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.area-chips {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.area-chips li {
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ---------- Reviews ---------- */
.reviews { padding: 110px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.review-card {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.review-card p { font-style: italic; color: var(--cream); font-size: 0.95rem; }
.review-card cite { color: var(--muted-dim); font-size: 0.8rem; font-style: normal; }

/* ---------- FAQ ---------- */
.faq { padding: 110px 0; background: var(--bg-alt); }
.faq-wrap { max-width: 820px; }
.faq-list { margin-top: 40px; display: grid; gap: 14px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
}
.faq-question:hover { color: var(--gold-light); }
.faq-icon { color: var(--gold); font-size: 1.3rem; transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer p { padding-bottom: 20px; margin: 0; font-size: 0.92rem; }

/* ---------- Arabic Section ---------- */
.arabic-section { padding: 110px 0; }
.arabic-content { max-width: 780px; margin-inline: auto; text-align: center; }
.arabic-content h2,
.arabic-content .eyebrow,
.arabic-content .section-sub,
.arabic-points { font-family: 'Tajawal', var(--font-body); }
.arabic-content h2 { line-height: 1.4; }
.arabic-points {
  list-style: none;
  margin: 34px auto;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 560px;
  text-align: right;
}
.arabic-points li {
  color: var(--muted);
  font-size: 0.98rem;
  border-top: 1px solid var(--card-border);
  padding-top: 14px;
  padding-inline-start: 22px;
  position: relative;
}
.arabic-points li::before {
  content: "\2726";
  color: var(--gold);
  position: absolute;
  inset-inline-start: 0;
  top: 14px;
}

/* ---------- Final CTA ---------- */
.final-cta { position: relative; padding: 140px 0; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.final-cta-scrim { position: absolute; inset: 0; background: rgba(8,6,4,0.82); z-index: 1; }
.final-cta-content { position: relative; z-index: 2; text-align: center; max-width: 720px; }
.final-cta-content p { font-size: 1.05rem; }

/* ---------- Location ---------- */
.location { padding: 110px 0; background: var(--bg-alt); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}
.location-info address { font-style: normal; color: var(--cream); margin-bottom: 1em; line-height: 1.7; }
.location-ctas { display: flex; gap: 14px; margin-top: 1.6em; flex-wrap: wrap; }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 340px; }
.location-map iframe { width: 100%; height: 100%; min-height: 340px; }

/* ---------- Footer ---------- */
.site-footer { background: #080604; padding: 70px 0 0; border-top: 1px solid var(--card-border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; }
.footer-links h3, .footer-contact h3 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links a, .footer-contact a {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact address { font-style: normal; color: var(--muted); font-size: 0.9rem; margin-bottom: 10px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding: 22px 24px;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: 0.8rem; color: var(--muted-dim); }

/* ---------- Mobile sticky bar ---------- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: rgba(12,9,6,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,161,94,0.25);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-sticky-bar .btn { flex: 1; justify-content: center; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .nearme-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { min-height: 340px; margin-bottom: 20px; }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-call span { display: none; }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,8,5,0.98);
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(201,161,94,0.2);
  }

  .hero { min-height: auto; padding-top: 20px; }
  .hero-content { padding-top: 60px; padding-bottom: 70px; }

  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .about, .services, .offers, .why-us, .gallery, .nearme, .reviews, .faq, .arabic-section, .location, .final-cta {
    padding: 70px 0;
  }

  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 74px; }

  .header-whatsapp span { display: inline; }
}

@media (max-width: 480px) {
  .about-img-2 { display: none; }
  .about-img-1 { width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
}
