/* ===== Base ===== */
:root {
  --bg-dark: #1c0a0d;
  --bg-darker: #0f0607;
  --purple: #7a1f2b;
  --purple-light: #a8394a;
  --gold: #d4af37;
  --aurora: #b87d3b;
  --rose: #c1485a;
  --cream: #f8ecd9;
  --text-light: #f6ead9;
  --text-muted: #d3b9a4;
  --card-bg: rgba(248, 236, 217, 0.05);
  --border: rgba(212, 175, 55, 0.2);
  --bg-grad-1: #3a1015;
  --bg-grad-2: #200a0d;
  --bg-grad-3: #0f0607;
  --font-heading: 'Marcellus', serif;
  --font-body: 'Jost', sans-serif;
}

/* Celestial Navy: second selectable theme, toggled via [data-theme="navy"] on <html> */
:root[data-theme="navy"] {
  --bg-dark: #0d1b2a;
  --bg-darker: #060f18;
  --purple: #1b3a6b;
  --purple-light: #2f6fb0;
  --gold: #e0b83c;
  --aurora: #3f7fa0;
  --rose: #5f86bd;
  --cream: #eef3f8;
  --text-light: #eef3f8;
  --text-muted: #a9bccd;
  --card-bg: rgba(238, 243, 248, 0.05);
  --border: rgba(224, 184, 60, 0.18);
  --bg-grad-1: #16283e;
  --bg-grad-2: #0d1b2a;
  --bg-grad-3: #050d15;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(ellipse at top, var(--bg-grad-1) 0%, var(--bg-grad-2) 55%, var(--bg-grad-3) 100%);
  color: var(--text-light);
  font-family: var(--font-body);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 100px; /* clears the floating sticky CTA bar */
}

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.aurora-blob {
  position: fixed;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}

.aurora-blob.one {
  top: -14vw;
  left: -10vw;
  background: var(--purple);
}

.aurora-blob.two {
  bottom: -18vw;
  right: -12vw;
  background: var(--aurora);
}

.cursor-glow {
  position: fixed;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 999;
  transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.3s;
  mix-blend-mode: screen;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow { opacity: 1; }
}

.cursor-glow.active {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.15);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--gold), var(--purple-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(13, 11, 30, 0.7);
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
}

.logo span {
  color: var(--text-light);
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text-light);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--purple) 35%, transparent);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn:hover {
  transform: translateY(-3px);
}

/* ===== Hero ===== */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.hero-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, color-mix(in srgb, var(--gold) 35%, transparent), transparent);
  animation: shimmer 3.2s ease-in-out infinite;
}

@keyframes shimmer {
  0% { left: -60%; }
  100% { left: 130%; }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--purple-light), var(--aurora), var(--gold));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 6s linear infinite;
}

@keyframes gradient-shift {
  to { background-position: 300% center; }
}

.hero p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-wheel {
  margin: 3rem auto 0;
  width: min(320px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px dashed color-mix(in srgb, var(--gold) 40%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spin 40s linear infinite;
}

.hero-wheel span {
  position: absolute;
  font-size: 1.4rem;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== Hero (split / home variant) ===== */
.hero-split {
  padding: 4.5rem 0 3rem;
  text-align: left;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-content {
  opacity: 0;
  animation: fade-up 0.8s ease forwards;
}

.hero-content .hero-badge,
.hero-content p,
.hero-content .hero-actions,
.hero-content .hero-trust {
  animation: fade-up 0.7s ease both;
}

.hero-content .hero-badge { animation-delay: 0.05s; }
.hero-content h1 { animation: fade-up 0.7s ease 0.15s both; }
.hero-content p { animation-delay: 0.28s; margin: 0 0 2rem; }
.hero-content .hero-actions { justify-content: flex-start; animation-delay: 0.4s; }
.hero-content .hero-trust { animation-delay: 0.52s; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-trust {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}

.hero-trust .trust-item {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-trust .trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.orbit-ring {
  position: absolute;
  border: 1px dashed color-mix(in srgb, var(--gold) 35%, transparent);
  border-radius: 50%;
}

.orbit-ring.ring-outer {
  inset: 0;
  animation: spin 50s linear infinite;
}

.orbit-ring.ring-inner {
  inset: 16%;
  border-color: color-mix(in srgb, var(--purple-light) 40%, transparent);
  animation: spin-reverse 32s linear infinite;
}

.orbit-ring span {
  position: absolute;
  font-size: 1.3rem;
  color: var(--gold);
}

.orbit-ring.ring-inner span {
  font-size: 1.1rem;
  color: var(--purple-light);
}

@keyframes spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, color-mix(in srgb, var(--purple) 55%, #150f2c), #150f2c 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  animation: pulse-glow 3.6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 26px color-mix(in srgb, var(--gold) 35%, transparent); }
  50% { box-shadow: 0 0 48px color-mix(in srgb, var(--gold) 60%, transparent); }
}

.floating-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13, 11, 30, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  animation: float-bob 4.5s ease-in-out infinite;
}

.floating-chip.chip-one {
  top: 6%;
  right: -8%;
}

.floating-chip.chip-two {
  bottom: 8%;
  left: -10%;
  animation-delay: 1.4s;
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-cue {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: float-bob 2.4s ease-in-out infinite;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { text-align: center; }
  .hero-content p { margin: 0 auto 2rem; }
  .hero-content .hero-actions,
  .hero-content .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 1rem; }
  .floating-chip.chip-one { right: 2%; }
  .floating-chip.chip-two { left: 2%; }
}

/* ===== Cards / Grid ===== */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-light);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--purple-light) 25%, transparent);
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== Media Box (illustrated "picture" placeholder for services/products) ===== */
.media-box {
  --mb-color: var(--gold);
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  background:
    repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.05) 0deg 8deg, transparent 8deg 16deg),
    radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--mb-color) 45%, transparent), transparent 65%),
    linear-gradient(160deg, color-mix(in srgb, var(--mb-color) 30%, #1c0a0d), #150809 85%);
  border: 1px solid color-mix(in srgb, var(--mb-color) 35%, var(--border));
}

.media-box::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px dashed color-mix(in srgb, var(--mb-color) 55%, transparent);
  border-radius: 50%;
  opacity: 0.6;
}

.media-box .media-icon {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}

.media-box .media-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 6, 7, 0.6);
  border: 1px solid color-mix(in srgb, var(--mb-color) 55%, transparent);
  color: var(--mb-color);
}

/* Circular variant of the media box, used for expert avatars */
.avatar-box {
  aspect-ratio: 1;
  border-radius: 50%;
  width: 55%;
  margin: 0 auto 1.2rem;
}

.avatar-box .media-icon {
  font-size: 2.6rem;
}

.detail-layout .avatar-box {
  width: 100%;
  margin: 0;
}

.detail-layout .avatar-box .media-icon {
  font-size: 4.5rem;
}

/* ===== Experts Page ===== */
.expert-card {
  text-align: center;
}

.expert-card .expert-title {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0.2rem 0 0.6rem;
}

.expert-card .traits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.detail-info .expert-role {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.detail-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.2rem 0;
  font-style: italic;
  color: var(--text-muted);
}

section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

/* ===== Zodiac Grid (index preview) ===== */
.zodiac-mini {
  text-align: center;
  padding: 1.2rem 0.5rem;
}

.zodiac-mini .glyph {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.zodiac-mini .dates {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== Zodiac Page ===== */
.zodiac-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.zodiac-card .glyph-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.zodiac-card .glyph-row .glyph {
  font-size: 2rem;
  color: var(--gold);
}

.zodiac-card .traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.tag {
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--purple) 20%, transparent);
  color: var(--purple-light);
  border: 1px solid color-mix(in srgb, var(--purple) 40%, transparent);
}

/* ===== Horoscope Page ===== */
.sign-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.sign-btn,
.pill-btn {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.sign-btn:hover,
.sign-btn.active,
.pill-btn:hover,
.pill-btn.active {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  border-color: transparent;
}

.horoscope-result {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem;
  text-align: center;
}

.horoscope-result .glyph-large {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.horoscope-result h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.horoscope-result p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat .value {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

/* ===== About Page ===== */
.about-hero {
  text-align: center;
  padding-bottom: 1rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-content img,
.about-visual {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  min-height: 280px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--purple) 25%, transparent), color-mix(in srgb, var(--gold) 15%, transparent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.values-grid {
  margin-top: 2rem;
}

/* ===== Contact Page ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info .card {
  margin-bottom: 1.2rem;
}

form.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-light);
}

.form-note {
  font-size: 0.8rem;
  color: var(--gold);
  min-height: 1.2rem;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  margin-top: 3rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: transform 0.2s, border-color 0.2s;
}

.social-icon:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

/* ===== Services / Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  border-color: var(--aurora);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--aurora) 18%, transparent);
}

.service-card.popular {
  border-color: var(--gold);
  background: linear-gradient(160deg, color-mix(in srgb, var(--gold) 10%, transparent), color-mix(in srgb, var(--purple) 8%, transparent));
}

.service-card .ribbon {
  position: absolute;
  top: -12px;
  right: 1.4rem;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  color: #1a1024;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--gold) 35%, transparent);
}

.service-card h3 {
  font-size: 1.2rem;
}

.service-card .price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
}

.service-card .price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-card ul li::before {
  content: "\2726";
  color: var(--aurora);
  margin-right: 0.5rem;
}

.service-card .btn {
  margin-top: auto;
  text-align: center;
}

/* ===== Process Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-bg);
  text-align: center;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--aurora));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  box-shadow: 0 6px 18px color-mix(in srgb, var(--purple) 40%, transparent);
}

.step h3 {
  margin: 0.6rem 0 0.5rem;
  font-size: 1.05rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem;
}

.testimonial .stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}

.testimonial p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial .author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.testimonial .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--rose));
  font-size: 1rem;
}

/* ===== Stats Bar ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stats-bar .stat-item {
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-bg);
}

.stats-bar .stat-item .num {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  background: linear-gradient(90deg, var(--gold), var(--aurora));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stats-bar .stat-item .label {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.3rem 1.4rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-bottom: 1.1rem;
}

/* ===== Newsletter ===== */
.newsletter-card {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(160deg, color-mix(in srgb, var(--purple) 14%, transparent), color-mix(in srgb, var(--aurora) 8%, transparent));
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.newsletter-form input[type="email"] {
  flex: 1 1 280px;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--aurora);
}

.newsletter-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--gold);
  min-height: 1.2rem;
}

/* ===== Shop / Products ===== */
.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
}

.product-card .product-link {
  display: block;
}

.product-card .product-benefit {
  align-self: flex-start;
  background: color-mix(in srgb, var(--gem, var(--gold)) 22%, transparent);
  color: var(--gem, var(--gold));
  border-color: color-mix(in srgb, var(--gem, var(--gold)) 45%, transparent);
}

.detail-benefit {
  display: inline-block;
  background: color-mix(in srgb, var(--gem, var(--gold)) 22%, transparent);
  color: var(--gem, var(--gold));
  border-color: color-mix(in srgb, var(--gem, var(--gold)) 45%, transparent);
}

.product-card h3 {
  font-size: 1.1rem;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  margin-top: 0.4rem;
}

.product-footer .book-now-btn {
  width: 100%;
  text-align: center;
}

.theme-toggle {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-light);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.8rem;
  transition: transform 0.35s ease, border-color 0.25s;
}

.theme-toggle:hover {
  transform: rotate(25deg);
  border-color: var(--gold);
}

/* ===== Sticky Footer CTA Bar (Call / WhatsApp / Location) ===== */
.sticky-cta-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 250;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
  width: min(420px, calc(100% - 24px));
  padding: 0.5rem;
  background: color-mix(in srgb, var(--bg-dark) 88%, transparent);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.sticky-cta-bar a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.5rem 0.3rem;
  border-radius: 14px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s, background 0.2s;
}

.sticky-cta-bar a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
}

.sticky-cta-bar a .cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.15rem;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.2s;
}

.sticky-cta-bar a.call .cta-icon {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
}

.sticky-cta-bar a.whatsapp .cta-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.sticky-cta-bar a.location .cta-icon {
  background: linear-gradient(135deg, var(--gold), var(--aurora));
}

.sticky-cta-bar a:hover .cta-icon {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5);
  animation: fab-pulse 1.2s ease-in-out infinite;
}

/* Music toggle button, sits just above the sticky bar */
.music-toggle {
  position: fixed;
  right: 1.2rem;
  bottom: 100px;
  z-index: 251;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.music-toggle.playing {
  animation: fab-pulse 2s ease-in-out infinite;
}

@keyframes fab-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ===== Google Map Embed ===== */
.map-embed {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Detail Pages (service / product) ===== */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.detail-layout .media-box {
  aspect-ratio: 1;
  margin-bottom: 0;
}

.detail-layout .media-box .media-icon {
  font-size: 5rem;
}

.detail-info .detail-benefit {
  margin-bottom: 0.8rem;
}

.detail-info h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 0.6rem;
}

.detail-info .detail-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.detail-info .detail-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.detail-info p.detail-desc {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.detail-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.detail-features li {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.detail-features li::before {
  content: "\2726";
  color: var(--gold);
  margin-right: 0.6rem;
}

.detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .about-content, .contact-wrapper { grid-template-columns: 1fr; }
  .pricing-grid, .steps, .testimonial-grid, .product-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-layout .avatar-box { max-width: 280px; margin: 0 auto 1.5rem; }
}

@media (max-width: 880px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 1rem 1.5rem;
    display: none;
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid, .steps, .testimonial-grid, .product-grid, .related-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  section { padding: 2.75rem 0; }
  .card, .service-card, .product-card { padding: 1.4rem; }
  .sticky-cta-bar {
    width: calc(100% - 20px);
    gap: 0.1rem;
    padding: 0.4rem;
  }
  .sticky-cta-bar a {
    font-size: 0.62rem;
    padding: 0.4rem 0.2rem;
  }
  .sticky-cta-bar a .cta-icon {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
  }
  .music-toggle {
    right: 0.8rem;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .newsletter-card {
    padding: 2rem 1.2rem;
  }
  .newsletter-form input[type="email"] {
    flex: 1 1 100%;
    max-width: 100%;
  }
  form.contact-form {
    padding: 1.4rem;
  }
  .logo {
    font-size: 1.05rem;
    gap: 0.35rem;
  }
  .theme-toggle {
    width: 38px;
    height: 38px;
    margin-left: 0.5rem;
  }
  #cta .card {
    padding: 2rem 1.2rem !important;
  }
}
