/* ============================================================
   Spiritual Heals — Premium Design System
   Brand: Gold (#D4A843) + Purple (#8B7CB8) on Dark (#0A0612)
   ============================================================ */

/* ── 1. VARIABLES ── */
:root {
  --gold: #D4A843;
  --gold-lt: #E8C374;
  --gold-dk: #9A7420;
  --gold-champagne: #F5E6C8;
  --purple: #8B7CB8;
  --purple-lt: #B8A9D4;
  --purple-deep: #5B4B8A;
  --teal: #00C9B7;
  --rose: #D4507A;

  --bg-dark: #0A0612;
  --bg-darker: #060410;
  --bg-card: #110D1F;
  --bg-card-alt: #15112A;
  --bg-glass: rgba(139, 124, 184, 0.06);
  --bg-glass-hover: rgba(212, 168, 67, 0.08);

  --text-primary: #F5F0E8;
  --text-secondary: rgba(245, 240, 232, 0.75);
  --text-muted: rgba(245, 240, 232, 0.5);

  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(212, 168, 67, 0.3);
  --border-purple: rgba(139, 124, 184, 0.2);

  --glow-gold: 0 0 40px rgba(212, 168, 67, 0.3);
  --glow-purple: 0 0 40px rgba(139, 124, 184, 0.25);

  --font-display: 'Poppins', sans-serif;
  --font-serif: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 90px;
  --topbar-h: 42px;
  --section-py: clamp(60px, 8vw, 100px);
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.3s; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ── 3. SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold), var(--purple)); border-radius: 99px; }

/* ── 4. UTILITIES ── */
.container { width: 90%; max-width: 1320px; margin: 0 auto; }

.section-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-label-center { justify-content: center; }
.section-label-center::before { display: none; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.section-subheading {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
  max-width: 680px;
}
.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.section-header-center .section-subheading { margin: 0 auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--purple-lt) 50%, var(--gold-lt) 100%);
  background-size: 200% 200%;
  animation: gradPan 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes gradPan {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}
.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--glow-gold);
}
.glass-card:hover::before { opacity: 1; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff;
  box-shadow: 0 8px 28px rgba(212, 168, 67, 0.35);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 44px rgba(212, 168, 67, 0.5);
}
.btn-purple {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: #fff;
  box-shadow: 0 8px 28px rgba(91, 75, 138, 0.35);
}
.btn-purple:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 44px rgba(91, 75, 138, 0.5);
}
.btn-ghost {
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 24px rgba(212, 168, 67, 0.2);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 1rem; }

/* ── 5. TOP CONTACT BAR ── */
.top-bar {
  background: var(--bg-darker);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.top-bar-item:hover { color: var(--gold); }
.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--text-muted);
}
.top-bar-right svg { width: 14px; height: 14px; fill: var(--gold); }

/* ── 6. NAVBAR ── */
.navbar {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  padding: 8px 0;
  box-sizing: border-box;
}
.navbar.scrolled {
  top: 0;
  background: rgba(6, 4, 16, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(212, 168, 67, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.nav-inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: auto; width: 110px; object-fit: contain; transition: width 0.3s var(--ease); }
.navbar.scrolled .nav-logo img { width: 100px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  padding: 8px 0;
  display: block;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: rgba(17, 13, 31, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 100;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.nav-dropdown a:hover { background: rgba(212, 168, 67, 0.08); color: var(--gold); }

.nav-cta { margin-left: 16px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1002;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 18, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── 7. HERO ── */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + var(--topbar-h));
  padding-bottom: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,6,18,0.5) 0%, rgba(10,6,18,0.9) 100%);
}
#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}



.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}
.hero-eyebrow {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s var(--ease) forwards;
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 44px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s var(--ease) forwards;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s var(--ease) forwards;
}
.hero-stats-bar {
  background: rgba(17, 13, 31, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 24px 40px;
  display: inline-block;
  opacity: 0;
  animation: fadeUp 0.8s 1s var(--ease) forwards;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.hero-stat {
  padding: 0 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
}
.hero-stat-label {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s var(--ease) forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ── 8. WHY CHOOSE ── */
.why-choose {
  padding: var(--section-py) 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(17, 13, 31, 0.6) 50%, var(--bg-dark) 100%);
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s var(--ease);
  border-top: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--gold);
}
.why-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(139,124,184,0.1));
  border: 1px solid rgba(212,168,67,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: all 0.4s var(--ease);
}
.why-card:hover .why-card-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--glow-gold);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── 9. SERVICES ── */
.services-section {
  padding: var(--section-py) 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dk), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::after { opacity: 1; }
.service-card-inner { padding: 32px 28px; }
.service-card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(212,168,67,0.1), rgba(139,124,184,0.08));
  border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease-spring);
}
.service-card-icon img { width: 100%; height: 100%; object-fit: contain; }
.service-card:hover .service-card-icon { transform: scale(1.15) rotate(-5deg); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card-link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link:hover { gap: 12px; }
.service-card-phone {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.service-card-phone:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.service-card-phone svg { width: 16px; height: 16px; fill: var(--gold); }
.service-card-phone:hover svg { fill: #fff; }
.services-more { text-align: center; }

/* ── 10. CONTACT + POSTS ── */
.contact-section {
  padding: var(--section-py) 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.contact-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.contact-img-wrap:hover img { transform: scale(1.05); }
.contact-post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(10,6,18,0.85));
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--gold-champagne);
}

.contact-form-card {
  padding: 40px 36px;
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-form-card .form-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input { min-height: 110px; resize: vertical; }

/* ── 11. ZODIAC ── */
.zodiac-section {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  position: relative;
}
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.zodiac-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.zodiac-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--glow-gold);
}
.zodiac-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  object-fit: contain;
  transition: transform 0.4s var(--ease-spring);
}
.zodiac-card:hover img { transform: scale(1.15); }
.zodiac-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}
.zodiac-card:hover h4 { color: var(--gold); }

/* ── 12. ABOUT ── */
.about-section { padding: var(--section-py) 0; }
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-text .section-heading { margin-bottom: 24px; }
.about-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-text .read-more {
  color: var(--gold);
  font-weight: 500;
  cursor: pointer;
}
.about-text .btn { margin-top: 12px; }
.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(212, 168, 67, 0.2);
  pointer-events: none;
}

/* ── 13. TESTIMONIALS ── */
.testimonials-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--bg-darker), rgba(91, 75, 138, 0.08));
  position: relative;
  overflow: hidden;
}
.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.testimonial-quote {
  color: var(--gold);
  opacity: 0.3;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 16px;
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.testimonial-role {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Swiper overrides */
.testimonials-slider .swiper-pagination { margin-top: 32px; position: relative; }
.testimonials-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--text-muted);
  opacity: 0.4;
  transition: all 0.3s;
}
.testimonials-slider .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* ── 14. GALLERY ── */
.gallery-section {
  padding: var(--section-py) 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(10,6,18,0.9));
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--gold-champagne);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── 15. FOOTER ── */
.footer {
  background: var(--bg-darker);
  position: relative;
}

/* Footer CTA Band */
.footer-cta-band {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.1), rgba(91, 75, 138, 0.1));
  border-top: 1px solid rgba(212, 168, 67, 0.15);
  border-bottom: 1px solid var(--border-glass);
  padding: 48px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.footer-cta-inner p {
  font-size: 1rem;
  color: var(--text-secondary);
}
.footer-cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

/* Footer Main */
.footer-main {
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .nav-logo {
  margin-bottom: 16px;
  display: inline-block;
}
.footer-brand .nav-logo img {
  height: auto;
  width: 110px;
}
.footer-brand-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
  transition: fill 0.3s;
}
.footer-social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-social-icon:hover svg { fill: #fff; }

.footer-contact-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--gold);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--text-secondary);
}
.footer-contact-item svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--gold);
}
.footer-links a {
  display: block;
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover { color: var(--gold); padding-left: 8px; }

.footer-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  margin-top: 16px;
}
.footer-map iframe {
  width: 100%;
  height: 160px;
  border: none;
  filter: brightness(0.6) saturate(0.4);
}

/* Footer Disclaimer Band */
.footer-disclaimer-band {
  border-top: 1px solid var(--border-glass);
  padding: 20px 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-disclaimer-band span { color: var(--gold); font-weight: 500; }

/* Footer Copyright */
.footer-bottom {
  border-top: 1px solid var(--border-glass);
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 1rem;
  color: var(--text-muted);
}
.footer-bottom-inner strong { color: var(--gold); font-weight: 500; }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ── HOW IT WORKS ── */
.hiw-section {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}
.hiw-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hiw-card {
  flex: 1;
  max-width: 340px;
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.4s var(--ease);
}
.hiw-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--glow-gold);
}
.hiw-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(212, 168, 67, 0.1);
  line-height: 1;
  margin-bottom: 8px;
}
.hiw-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(139,124,184,0.1));
  border: 1px solid rgba(212,168,67,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  transition: all 0.4s var(--ease);
}
.hiw-card:hover .hiw-icon {
  transform: scale(1.1);
  box-shadow: var(--glow-gold);
}
.hiw-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.hiw-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.hiw-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  margin-top: 100px;
  flex-shrink: 0;
  opacity: 0.4;
}

/* ── LOCATIONS ── */
.locations-section {
  padding: var(--section-py) 0;
}
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
  cursor: default;
}
.location-tag svg { fill: var(--gold); flex-shrink: 0; }
.location-tag:hover {
  border-color: var(--border-glow);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.15);
}

/* ── 16. FLOATING BUTTONS ── */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s var(--ease);
}
.float-btn:hover { transform: scale(1.1); }
.float-btn svg { width: 26px; height: 26px; fill: #fff; }
.float-btn-whatsapp {
  background: #25D366;
  animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
}
.float-btn-phone { background: var(--gold); }

/* ── 17. DIVIDER ── */
.cosmic-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dk), var(--purple), transparent);
  opacity: 0.3;
}

/* ── 18. ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid { gap: 0; }
}
@media (max-width: 992px) {
  .top-bar { display: none; }
  .navbar { top: 0; }
  .hero { padding-top: var(--nav-h); }
  .nav-logo img { width: 85px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { max-width: 100%; padding: 0 16px; }
  .hero-stats-bar { padding: 20px 24px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-stat { border-right: none; padding: 8px 0; text-align: center; }

  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; max-width: 400px; margin: 0 auto; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-img-wrap { max-height: 300px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-btns { justify-content: center; }
  .zodiac-grid { grid-template-columns: repeat(4, 1fr); }

  .hiw-grid { flex-direction: column; align-items: center; }
  .hiw-connector { width: 2px; height: 40px; margin: 0; }
}
@media (max-width: 768px) {
  .section-heading { font-size: clamp(1.4rem, 4vw, 1.8rem); }
  .services-grid { grid-template-columns: 1fr; }
  .zodiac-grid { grid-template-columns: repeat(3, 1fr); }
  .zodiac-card img { width: 55px; height: 55px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 220px); }
  .hero-stats { gap: 12px; }
  .why-choose-grid { grid-template-columns: 1fr; }
  .contact-img-wrap { max-height: 260px; }
  .contact-form-card { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; font-size: 14px; }
  .btn { font-size: 14px; padding: 14px 28px; }
  .zodiac-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .zodiac-card { padding: 14px 8px; }
  .zodiac-card img { width: 45px; height: 45px; }
  .hero-stats-bar { padding: 14px 12px; }
  .hero-stat { padding: 6px 0; }
  .hero-stat-num { font-size: 1.2rem; }
  .hero-stat-label { font-size: 0.65rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
  .floating-btns { bottom: 16px; right: 16px; }
  .float-btn { width: 48px; height: 48px; }
  .location-tag { padding: 10px 16px; font-size: 1rem; }
  .section-heading { font-size: 1.3rem; }
  .section-py { padding: 50px 0; }
  .contact-form-card { padding: 22px 16px; }
  .hiw-card { padding: 28px 20px; }
}