/* ==========================================================================
   Elysian Luxury Spa — Design System
   ========================================================================== */

:root {
  /* Colors — derived from brand logo (navy + gold) */
  --navy-950: #060d1f;
  --navy-900: #0a1631;
  --navy-800: #0f1f45;
  --navy-700: #16295c;
  --navy-600: #1f3573;

  --gold-300: #e8d4a4;
  --gold-400: #ddbf87;
  --gold-500: #c9a463;
  --gold-600: #b48a45;
  --gold-700: #96702f;

  --cream: #f8f5ee;
  --cream-dark: #f0ead9;
  --white: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-muted: #7a7a7a;
  --line: rgba(10, 22, 49, 0.1);

  /* Typography */
  --font-heading: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", "Helvetica Neue", sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  /* Shadow */
  --shadow-soft: 0 20px 50px -20px rgba(10, 22, 49, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(10, 22, 49, 0.18);
  --shadow-gold: 0 15px 35px -12px rgba(180, 138, 69, 0.45);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy-900);
  line-height: 1.2;
}

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

section { position: relative; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 500;
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-500);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--ink-muted);
  font-size: 16px;
}
.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 70px 0; }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy-900); color: var(--cream); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -10px rgba(180, 138, 69, 0.55);
}

.btn-outline {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}
.btn-outline:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-950);
  transform: translateY(-3px);
}

.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover {
  background: var(--white);
  color: var(--navy-950);
  transform: translateY(-3px);
}

.btn-block { width: 100%; }
.btn-sm { padding: 12px 22px; font-size: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.45s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header.scrolled {
  padding: 14px 0;
  background: rgba(10, 22, 49, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(201, 164, 99, 0.15);
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(201, 164, 99, 0.55);
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.5);
  transition: width 0.4s var(--ease), height 0.4s var(--ease);
}
.site-header.scrolled .brand-mark { width: 42px; height: 42px; }
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}
.brand-text .name {
  font-family: var(--font-heading);
  font-size: 21px;
  letter-spacing: 0.05em;
  color: var(--white);
}
.brand-text .tag {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold-500);
  transition: width 0.35s var(--ease);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-400);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-toggle {
  display: none;
  width: 30px; height: 22px;
  position: relative;
  z-index: 1100;
}
.nav-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--white);
  transition: all 0.35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,13,31,0.55) 0%, rgba(6,13,31,0.55) 40%, rgba(6,13,31,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
  color: var(--white);
}
.hero-content .eyebrow { color: var(--gold-400); justify-content: center; }
.hero-content h1 {
  font-size: clamp(38px, 6vw, 68px);
  color: var(--white);
  margin-bottom: 22px;
}
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-scroll .line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.4);
  overflow: hidden;
  position: relative;
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  top: -100%; left: 0; right: 0; height: 100%;
  background: var(--gold-500);
  animation: scrollLine 2s infinite ease-in-out;
}
@keyframes scrollLine {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  background: var(--navy-950);
  overflow: hidden;
}
.page-hero .hero-content { padding-top: 60px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); }
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 18px;
}
.breadcrumb a { color: var(--gold-400); }

/* ---------- About Preview ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.about-media .float-card {
  position: absolute;
  bottom: -30px; right: -30px;
  background: var(--white);
  padding: 26px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: center;
  min-width: 170px;
}
.about-media .float-card .num {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--gold-600);
}
.about-media .float-card .label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.about-text p { color: var(--ink-soft); margin-bottom: 18px; }
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 34px;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--navy-800);
  font-weight: 500;
}
.about-points li svg { color: var(--gold-500); flex-shrink: 0; }

/* ---------- Cards: Services ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-soft);
}
.service-card .media {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.service-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover .media img { transform: scale(1.08); }
.service-card .body { padding: 30px; }
.service-card .body .duration {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 8px;
}
.service-card .body h3 { font-size: 22px; margin-bottom: 10px; }
.service-card .body p {
  color: var(--ink-muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-800);
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease), color 0.3s;
}
.learn-more:hover { gap: 14px; color: var(--gold-600); }

/* ---------- Why Choose Us ---------- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.feature-card .icon {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--cream), var(--cream-dark));
  color: var(--gold-600);
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--ink-muted); }

/* ---------- Gallery Masonry ---------- */
.masonry {
  columns: 4 220px;
  column-gap: 22px;
}
.masonry .item {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.masonry .item a { display: block; }
.masonry .item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease);
}
.masonry .item:hover img { transform: scale(1.08); }

/* ---------- Testimonials ---------- */
.testi-slide {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
.testi-stars { color: var(--gold-500); margin-bottom: 22px; letter-spacing: 4px; font-size: 16px; }
.testi-slide p.quote {
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  color: var(--navy-800);
  margin-bottom: 30px;
  line-height: 1.6;
}
.testi-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testi-person img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
}
.testi-person .name { font-weight: 600; color: var(--navy-900); font-size: 15px; }
.testi-person .role { font-size: 12px; color: var(--ink-muted); }
.swiper-pagination-bullet { background: var(--gold-600); opacity: 0.35; }
.swiper-pagination-bullet-active { opacity: 1; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 4px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--navy-900);
}
.faq-q .plus {
  width: 26px; height: 26px;
  flex-shrink: 0;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--gold-600);
  transition: transform 0.35s var(--ease);
}
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 1px; }
.faq-q .plus::after { left: 50%; top: 0; bottom: 0; width: 1px; }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg) scaleX(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p {
  padding: 0 4px 26px;
  color: var(--ink-muted);
  font-size: 15px;
  max-width: 640px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 90px 40px;
  text-align: center;
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(201,164,99,0.18), transparent 45%),
              radial-gradient(circle at 80% 80%, rgba(201,164,99,0.14), transparent 45%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: clamp(30px, 4vw, 46px); margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 34px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ---------- Counters ---------- */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.counter-item .num {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--gold-400);
}
.counter-item .lbl {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-800);
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201,164,99,0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 46px;
  box-shadow: var(--shadow-soft);
}
.form-note {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 14px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success .check {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

/* ---------- Contact info blocks ---------- */
.info-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  margin-bottom: 18px;
}
.info-card .icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
}
.info-card h4 { font-size: 15px; margin-bottom: 4px; }
.info-card p { font-size: 14px; color: var(--ink-muted); }
.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.social-row { display: flex; gap: 12px; margin-top: 22px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
  color: var(--navy-800);
}
.social-row a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); transform: translateY(-3px); }

/* ---------- Text-only content blocks (About page) ---------- */
.about-text-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.about-text-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.about-text-block .eyebrow { justify-content: center; }
.about-text-block h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 18px; }
.about-text-block p { color: var(--ink-soft); font-size: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding: 90px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-text .name { color: var(--white); }
.footer-brand p { margin: 18px 0 4px; font-size: 14px; line-height: 1.8; max-width: 320px; }
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 13px; font-size: 14px; }
.footer-col ul li a { transition: color 0.3s, padding-left 0.3s; }
.footer-col ul li a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-hours li { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 10px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom .legal { display: flex; gap: 24px; }

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 104px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
  z-index: 900;
  box-shadow: var(--shadow-card);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-500); color: var(--navy-950); }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 10px 26px -6px rgba(37, 211, 102, 0.55);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: whatsappPulse 2.4s ease-out infinite;
  z-index: -1;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 32px -6px rgba(37, 211, 102, 0.65);
}
@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before { animation: none; }
}
@media (max-width: 640px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .scroll-top { bottom: 88px; right: 20px; }
}

/* ---------- AOS-like fallback animations ---------- */
[data-aos] { transition-property: opacity, transform; }

/* ---------- Category tabs (services page) ---------- */
.cat-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.cat-tabs button {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-800);
  transition: all 0.35s var(--ease);
}
.cat-tabs button.active, .cat-tabs button:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--gold-400);
}
.service-category { display: none; }
.service-category.active { display: block; }
.service-category h3.cat-title {
  font-size: 26px;
  margin-bottom: 34px;
  text-align: center;
}

/* ---------- Service Detail Cards (Services page) ---------- */
.service-detail-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.service-detail-card .media { position: relative; overflow: hidden; min-height: 260px; }
.service-detail-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.service-detail-card:hover .media img { transform: scale(1.08); }
.service-detail-card .body { padding: 32px; display: flex; flex-direction: column; }
.service-detail-card .top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 6px;
}
.service-detail-card h3 { font-size: 22px; }
.service-detail-card .price {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--gold-600);
  white-space: nowrap;
}
.service-detail-card .duration {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 14px;
}
.service-detail-card .benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 16px 0 22px;
}
.service-detail-card .benefits li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-soft);
}
.service-detail-card .benefits li svg { color: var(--gold-500); flex-shrink: 0; }
.service-detail-card .foot { margin-top: auto; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Booking Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 31, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 44px;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s var(--ease);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
  transition: all 0.3s;
}
.modal-close:hover { background: var(--gold-500); color: var(--navy-950); transform: rotate(90deg); }
.modal-box .eyebrow { justify-content: flex-start; }
.modal-box h3 { font-size: 26px; margin-bottom: 24px; }

/* ---------- Mobile nav drawer (always off-canvas until toggled, any viewport) ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  z-index: 1050;
  pointer-events: none;
}
.mobile-nav.open { transform: translateY(0); pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--white);
}
.mobile-nav a:hover { color: var(--gold-400); }

/* Hard safety net: the drawer must never be able to render at desktop widths,
   even if it was left "open" from a narrower viewport (e.g. window resized after opening). */
@media (min-width: 981px) {
  .mobile-nav { display: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .counters { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav-menu, .header-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card .media { min-height: 220px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media img { height: 380px; }
  .masonry { columns: 2 200px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section-pad { padding: 80px 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .counters { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 1 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 60px 24px; }
  .form-card { padding: 30px 22px; }
  .modal-box { padding: 30px 22px; }
}
