/* =============================================
   MAMA BRENDAH — Dark Crimson Theme
   ============================================= */

/* ---- Google Fonts already in header ---- */

/* ---- CSS Variables ---- */
:root {
  --bg:          #0a0608;
  --bg-2:        #120b0e;
  --bg-card:     #1a0d11;
  --bg-card-2:   #FFFFF0;
  --crimson:     #8b0000;
  --crimson-2:   #a50000;
  --crimson-glow:#c0001a;
  --gold:        #d4a843;
  --gold-light:  #f0c060;
  --text:        #f0e8ea;
  --text-muted:  #b09098;
  --text-dim:    #705060;
  --border:      rgba(139,0,0,0.3);
  --border-glow: rgba(192,0,26,0.6);
  --shadow:      0 4px 30px rgba(139,0,0,0.25);
  --shadow-lg:   0 8px 60px rgba(139,0,0,0.4);
  --radius:      1rem;
  --radius-sm:   0.5rem;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Poppins', sans-serif;
  --transition:  0.3s ease;

  --light-bg:         #f5f0eb;
  --light-bg-2:       #faf8f4;
  --light-card:       #fff9f4;
  --light-text:       #2d1a1a;
  --light-text-muted: #8b5f5f;
  --light-text-dim:   #a5858f;
  --light-border:     rgba(139,0,0,0.15);
  --light-shadow:     0 4px 20px rgba(139,0,0,0.12);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* FIX: prevents horizontal scroll that breaks mobile nav */
  max-width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden; /* FIX: belt-and-suspenders, stops slider bleed */
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 1rem;
}
.section-title span { color: var(--gold); }

.section-light .section-title { color: var(--light-text); }
.section-light .section-title span { color: var(--crimson); }

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-light .section-subtitle { color: var(--light-text-muted); }

.muted { color: var(--text-muted); font-size: 0.95rem; }
.section-light .muted { color: var(--light-text-muted); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-dark  { background: var(--bg); }
.section-soft  { background: var(--bg-2); }
.section-light { background: var(--light-bg); }

.text-center { text-align: center; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mt-10 { margin-top: 3rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }

.content-narrow { max-width: 700px; margin: 0 auto; }
.content-narrow p + p { margin-top: 1rem; }

/* ---- Grid ---- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 3rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson-2);
  box-shadow: 0 0 20px rgba(139,0,0,0.5);
}
.btn-primary:hover {
  background: var(--crimson-glow);
  color: #fff;
  box-shadow: 0 0 35px rgba(192,0,26,0.7);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: #0a0608;
  border-color: var(--gold-light);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: #0a0608;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0a0608;
}
.btn-lg  { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-xl  { padding: 1.1rem 3rem; font-size: 1.15rem; }

/* ---- Pill badge ---- */
.pill {
  display: inline-block;
  background: rgba(139,0,0,0.25);
  color: var(--gold);
  border: 1px solid var(--border-glow);
  border-radius: 2rem;
  padding: 0.35rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-light .pill {
  background: rgba(139,0,0,0.12);
  color: var(--crimson);
  border-color: rgba(139,0,0,0.3);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2rem;
  background: rgba(10,6,8,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
  /* FIX: header must never be wider than viewport */
  max-width: 100vw;
  box-sizing: border-box;
}
.site-header.scrolled {
  padding: 0.4rem 2rem;
  box-shadow: 0 2px 30px rgba(139,0,0,0.3);
}

.logo img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 3px solid var(--crimson-glow);
  padding: 4px;
  background: var(--bg-card);
  object-fit: cover;
}

/* ---- Desktop Nav ---- */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-desktop a,
.nav-desktop .nav-btn {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.nav-desktop a:hover,
.nav-desktop .nav-btn:hover,
.nav-desktop a.active {
  color: var(--gold);
  background: rgba(139,0,0,0.15);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  left: 1rem; right: 1rem;
}

#mobileToggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  /* FIX: ensure button stays in flow and visible */
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
}

#mobileNav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  /* FIX: must not overflow viewport */
  max-width: 100vw;
  box-sizing: border-box;
}
#mobileNav.open { display: flex; }
#mobileNav a {
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all var(--transition);
  display: block;
}
#mobileNav a:hover { color: var(--gold); background: rgba(139,0,0,0.15); }

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  #mobileToggle { display: block; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
  background: radial-gradient(ellipse at 50% 60%, #2a0010 0%, #0a0608 70%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238b0000' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(139,0,0,0.5);
}
.hero-title span { color: var(--gold); }
.hero-sub {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-alt {
  min-height: 45vh;
  background: radial-gradient(ellipse at 50% 80%, #1f0008 0%, #0a0608 70%);
  padding: 120px 0 4rem;
  display: flex;
  align-items: center;
  text-align: center;
}

/* ============================================
   IMAGE SLIDER — FIX: proper containment
   ============================================ */
.slider-section {
  background: var(--bg);
  padding: 0;
  /* FIX: hard clip — no overflow ever escapes */
  overflow: hidden;
  position: relative;
  max-width: 100%;
}
.slider-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden; /* FIX: clip slides that are mid-transition */
  max-width: 100%;
}
.slider-track {
  display: flex;
  height: 100%;
  width: 100%;          /* FIX: explicit 100% so slides calculate off this */
  transition: transform 0.7s cubic-bezier(0.77,0,0.175,1);
  will-change: transform;
}
.slider-slide {
  min-width: 100%;
  max-width: 100%;      /* FIX: never wider than the wrap */
  height: 100%;
  position: relative;
  flex-shrink: 0;
  box-sizing: border-box; /* FIX: padding doesn't add to width */
}
.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.6);
}
.slider-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 3rem;
  background: linear-gradient(transparent, rgba(10,6,8,0.92));
  color: var(--text);
}
.slider-caption h3 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.slider-caption p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(139,0,0,0.75);
  border: 1px solid var(--border-glow);
  color: #fff;
  font-size: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.slider-btn:hover { background: var(--crimson-glow); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 1.25rem; }
.slider-btn.next { right: 1.25rem; }
.slider-dots {
  position: absolute;
  bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================
   SERVICE CARDS (dark — used on services page)
   ============================================ */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--bg-card-2);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-lg);
  background: var(--crimson);
}
.service-card:hover::before { background: var(--gold); }

.service-card.pink::before   { background: #c0006a; }
.service-card.red::before    { background: var(--crimson-glow); }
.service-card.purple::before { background: #7b2d8b; }
.service-card.amber::before  { background: var(--gold); }
.service-card.violet::before { background: #5c3d8b; }
.service-card.turquoise::before { background: #006b7b; }
.service-card.rainbow::before {
  background: linear-gradient(90deg,#ff6b6b,#ffd93d,#6bcb77,#4d96ff,#c77dff);
}

.service-card img {
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  height: 180px;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.8);
  transition: all var(--transition);
}
.service-card:hover img { filter: brightness(0.9) saturate(1); }

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.service-card h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.5rem; }

/* ============================================
   SERVICE CARDS LIGHT — index page love section
   ============================================ */
.service-card-light {
  background: #fff8f5;
  border: 1px solid rgba(139,0,0,0.18);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card-light::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--bg-card-2);
  transition: all var(--transition);
}
.service-card-light:hover {
  transform: translateY(-6px);
  border-color: var(--crimson);
  box-shadow: 0 8px 30px rgba(139,0,0,0.15);
  background: #ffffff;
}
.service-card-light:hover::before { background: var(--gold); }

.service-card-light.pink::before   { background: #c0006a; }
.service-card-light.red::before    { background: var(--crimson-glow); }
.service-card-light.purple::before { background: #7b2d8b; }
.service-card-light.amber::before  { background: var(--gold); }
.service-card-light.violet::before { background: #5c3d8b; }
.service-card-light.turquoise::before { background: #006b7b; }
.service-card-light.rainbow::before {
  background: linear-gradient(90deg,#ff6b6b,#ffd93d,#6bcb77,#4d96ff,#c77dff);
}

.service-card-light img {
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  height: 180px;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.95);
  transition: all var(--transition);
}
.service-card-light:hover img { filter: brightness(1) saturate(1); }

.service-card-light .service-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.service-card-light h3 {
  color: #8b0000;
  margin-bottom: 0.75rem;
  font-family: var(--font-head);
}
.service-card-light p {
  color: #705060;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.service-card-light .muted {
  color: #a5858f;
  font-size: 0.88rem;
}
.service-card-light a.love-card-cta {
  color: var(--crimson-glow);
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.service-card-light a.love-card-cta:hover {
  color: #8b4500;
  gap: 0.7rem;
}

/* light card variant used in light sections */
.service-card.light {
  background: var(--light-card);
  border: 1px solid var(--light-border);
}
.service-card.light h3 { color: var(--crimson); }
.service-card.light p  { color: var(--light-text-muted); }
.service-card.light::before { background: var(--bg-card-2); }
.service-card.light .love-card-cta { color: var(--crimson); }
.service-card.light:hover {
  border-color: var(--crimson);
  box-shadow: var(--light-shadow);
  background: #ffefea;
}

.service-card.cream {
  background: var(--light-bg-2);
  border: 1px solid var(--light-border);
}
.service-card.cream h3 { color: var(--crimson); }
.service-card.cream p  { color: var(--light-text-muted); }
.service-card.cream::before { background: var(--gold); }
.service-card.cream .love-card-cta { color: #8b4500; }
.service-card.cream:hover {
  border-color: var(--gold);
  box-shadow: var(--light-shadow);
  background: #fff5e6;
}

.love-card.light-rose {
  background: var(--light-card);
  border: 1px solid var(--light-border);
}
.love-card.light-rose h3 { color: var(--crimson); }
.love-card.light-rose p  { color: var(--light-text-muted); }
.love-card.light-rose .love-card-cta { color: var(--crimson); }

/* ============================================
   FEATURED LOVE SERVICES (big cards)
   ============================================ */
.love-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.love-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-lg);
}

.section-light .love-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
}
.section-light .love-card:hover {
  border-color: var(--crimson);
  box-shadow: var(--light-shadow);
}
.section-light .love-card h3 { color: var(--crimson); }
.section-light .love-card p  { color: var(--light-text-muted); }
.section-light .love-card-cta { color: var(--crimson); }

.love-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.love-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.7);
  transition: all 0.5s ease;
}
.love-card:hover .love-card-img img { transform: scale(1.05); filter: brightness(0.85); }
.love-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,6,8,0.85));
}

.section-light .love-card-img-overlay {
  background: linear-gradient(to bottom, transparent 30%, rgba(245,240,235,0.7));
}

.love-card-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--crimson);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.love-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.love-card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.love-card h3 { color: var(--gold); margin-bottom: 0.75rem; }
.love-card p  { color: var(--text-muted); font-size: 0.95rem; flex: 1; }
.love-card-cta {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--crimson-glow);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.love-card-cta:hover { color: var(--gold); gap: 0.7rem; }

/* ============================================
   SERVICES TAB SWITCHER
   ============================================ */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3rem;
  padding: 0.4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.section-light .service-tabs {
  background: var(--light-card);
  border-color: var(--light-border);
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.65rem 1.5rem;
  border-radius: 2.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
}

.section-light .tab-btn {
  color: var(--light-text-muted);
}

.tab-btn.active {
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 0 20px rgba(139,0,0,0.4);
}
.tab-btn:hover:not(.active) { color: var(--gold); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   ABOUT / FEATURES
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 700px) { .about-grid { grid-template-columns: 1fr; } }

.about-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: all var(--transition);
}

.section-light .about-card {
  background: var(--bg-card-2);
  border-color: var(--light-border);
}

.about-card:hover { border-color: var(--border-glow); box-shadow: var(--shadow); }

.section-light .about-card:hover {
  border-color: var(--crimson);
  box-shadow: var(--light-shadow);
}

.about-icon { font-size: 2.5rem; flex-shrink: 0; }
.about-title { color: var(--gold); font-size: 1.4rem; margin-bottom: 0.75rem; font-family: var(--font-head); }

.section-light .about-title { color: var(--crimson); }

.about-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0.75rem; }

.section-light .about-text { color: var(--light-text-muted); }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
}

.section-light .feature-card {
  background: var(--light-card);
  border-color: var(--light-border);
}

.feature-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.section-light .feature-card:hover {
  border-color: var(--crimson);
  box-shadow: var(--light-shadow);
}

.feature-card h3 { color: var(--gold); margin: 0.5rem 0 0.5rem; }

.section-light .feature-card h3 { color: var(--crimson); }

.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

.section-light .feature-card p { color: var(--light-text-muted); }

/* ============================================
   RESULTS / STATS STRIP
   ============================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.result-item {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--crimson);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: var(--crimson);
  font-weight: 500;
}

.section-light .result-item {
  background: var(--light-card);
  border-color: var(--light-border);
  border-left-color: var(--crimson);
  color: var(--light-text);
}

/* ============================================
   ACCORDION / FAQ
   ============================================ */
.accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.section-light .accordion-item {
  background: var(--light-card);
  border-color: var(--light-border);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  transition: background var(--transition);
}

.section-light .accordion-header {
  color: var(--light-text);
}

.accordion-header:hover { background: rgba(139,0,0,0.12); }

.section-light .accordion-header:hover { background: rgba(139,0,0,0.08); }

.accordion-header.open { color: var(--gold); background: rgba(139,0,0,0.15); }

.section-light .accordion-header.open { color: var(--crimson); background: rgba(139,0,0,0.1); }

.chevron { transition: transform var(--transition); font-size: 0.85rem; color: var(--gold); }

.section-light .chevron { color: var(--crimson); }

.accordion-header.open .chevron { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-content-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.section-light .accordion-content-inner {
  color: var(--light-text-muted);
}

/* ============================================
   TESTIMONIALS SLIDER — FIX: proper containment
   ============================================ */
.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 100%;   /* FIX: never wider than parent */
  overflow: hidden;  /* FIX: clip any leaking slide */
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  width: 100%;
  max-width: 100%;   /* FIX: explicit cap */
  overflow: hidden;  /* FIX: double containment */
  transition: transform 0.7s cubic-bezier(0.77,0,0.175,1);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  max-width: 100%;   /* FIX: slides never exceed viewport width */
  flex-shrink: 0;
  box-sizing: border-box; /* FIX: padding doesn't blow out width */
  padding: 0 1rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: var(--shadow);
}

.section-light .testimonial-card {
  background: var(--light-card) !important;
  border-color: var(--light-border) !important;
  color: var(--light-text) !important;
  box-shadow: var(--light-shadow);
}

.testimonial-img-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--crimson-glow);
  box-shadow: 0 4px 15px rgba(139,0,0,0.3);
  flex-shrink: 0;
}

.section-light .testimonial-img-wrapper {
  border-color: var(--crimson);
  box-shadow: 0 4px 15px rgba(139,0,0,0.15);
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  font-family: var(--font-head);
  color: var(--crimson);
  line-height: 1;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.stars {
  color: var(--gold);
  margin: 1rem 0 0.75rem;
  letter-spacing: 0.1em;
  font-size: 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-light .stars {
  color: var(--crimson) !important;
}

.testimonial-text {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-light .testimonial-text {
  color: var(--light-text-muted) !important;
}

.testimonial-author {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-light .testimonial-author {
  color: var(--crimson) !important;
}

.testimonial-location {
  color: var(--text-dim);
  font-size: 0.8rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-light .testimonial-location {
  color: var(--light-text-dim) !important;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.testimonial-btn {
  position: relative;
  background: rgba(139,0,0,0.75);
  border: 1px solid var(--border-glow);
  color: #fff;
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
  padding: 0;
}

.section-light .testimonial-btn {
  background: var(--crimson);
  border-color: var(--light-border);
}

.testimonial-btn:hover {
  background: var(--crimson-glow);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(192,0,26,0.5);
}

.section-light .testimonial-btn:hover {
  background: #c0006a;
}

.testimonial-dots {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.section-light .testimonial-dot {
  background: rgba(139,0,0,0.25);
}

.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.section-light .testimonial-dot.active {
  background: var(--crimson);
  transform: scale(1.3);
}

/* Responsive testimonials */
@media (max-width: 768px) {
  .testimonial-slide {
    padding: 0 0.75rem;
  }
  .testimonial-card {
    padding: 1.5rem 1rem 1rem;
  }
  .testimonial-img-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
  }
  .testimonial-controls {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .testimonial-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 500px) {
  .testimonial-slide {
    padding: 0 0.25rem; /* FIX: minimal padding on very small screens */
  }
  .testimonial-card {
    padding: 1.25rem 0.75rem 0.75rem;
    border-radius: 0.75rem;
  }
  .testimonial-img-wrapper {
    width: 75px;
    height: 75px;
    margin: 0 auto 0.75rem;
  }
  .testimonial-text {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  .testimonial-author { font-size: 0.95rem; }
  .testimonial-location { font-size: 0.75rem; }
  .testimonial-controls {
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .testimonial-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .testimonial-dots { gap: 0.5rem; }
  .testimonial-dot { width: 8px; height: 8px; }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: radial-gradient(ellipse at 50% 50%, #200010 0%, #0a0608 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}
.cta-section .section-subtitle { color: var(--text-muted); }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9999;
  background: #25d366;
  border-radius: 50%;
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: wa-bounce 2s ease-in-out infinite;
}
.floating-whatsapp:hover {
  animation: none;
  transform: scale(1.15);
  background: #20ba5a;
  box-shadow: 0 6px 28px rgba(37,211,102,0.7);
}
.floating-whatsapp img { width: 40px; height: 40px; }

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0);    box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { transform: translateY(-10px); box-shadow: 0 14px 28px rgba(37,211,102,0.3); }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #060405;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { margin-top: 0.75rem; color: var(--text-dim); }
.footer-col h4 { color: var(--gold); margin-bottom: 1rem; font-family: var(--font-head); }
.footer-col a {
  display: block;
  color: var(--text-dim);
  padding: 0.25rem 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
}
.footer-bottom strong { color: var(--crimson-glow); }

/* ============================================
   STARFIELD
   ============================================ */
.starfield {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.7; }
}

/* ============================================
   MISC UTILITIES
   ============================================ */
.relative { position: relative; }
.min-vh-100 { min-height: 100vh; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.font-playfair { font-family: var(--font-head); }
.small-muted { font-size: 0.85rem; color: var(--text-dim); }

.section-light .small-muted { color: var(--light-text-muted); }

.glow { text-shadow: 0 0 20px rgba(192,0,26,0.6); }
.gold-text { color: var(--gold); }

.divider {
  width: 60px; height: 3px;
  background: var(--crimson);
  margin: 1rem auto;
  border-radius: 2px;
}

/* ============================================
   LIGHT SECTION OVERRIDES
   ============================================ */
.section-light .service-card {
  background: var(--light-card) !important;
  border: 1px solid var(--light-border) !important;
  color: var(--light-text) !important;
  box-shadow: var(--light-shadow);
}
.section-light .service-card h3 { color: var(--crimson) !important; }
.section-light .service-card p  { color: var(--light-text-muted) !important; }
.section-light .service-card:hover,
.service-card.light:hover {
  background: #ffffff !important;
  border-color: var(--crimson) !important;
  box-shadow: 0 8px 30px rgba(139,0,0,0.15) !important;
  transform: translateY(-6px);
}
.section-light .service-card img { filter: brightness(1) saturate(1) !important; }
.section-light .service-card:hover img { filter: brightness(1.05) saturate(1.05); }
.section-light .service-card::before { background: var(--crimson) !important; }

.section-light .love-card {
  background: var(--light-card) !important;
  border: 1px solid var(--light-border) !important;
  color: var(--light-text) !important;
  box-shadow: var(--light-shadow);
}
.section-light .love-card h3 { color: var(--crimson) !important; }
.section-light .love-card p  { color: var(--light-text-muted) !important; }
.section-light .love-card:hover {
  background: #ffffff !important;
  border-color: var(--crimson) !important;
  box-shadow: 0 10px 40px rgba(139,0,0,0.15) !important;
}
.section-light .love-card-img-overlay {
  background: linear-gradient(to bottom, transparent 30%, rgba(255,255,255,0.6)) !important;
}
.section-light .glass-light {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid var(--light-border);
}
/* CONTACT FORM — CRIMSON BACKGROUND */
.section-light .form-card {
  background: var(--crimson);
  color: #fff;
  border: 1px solid var(--crimson-glow);
  box-shadow: 0 10px 40px rgba(139,0,0,0.4);
}
/* CONTACT INFO AS CRIMSON CARD */
.contact-info {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-2));
  color: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* top accent line */
.contact-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}

/* heading */
.contact-info h3 {
  color: #fff;
  margin-bottom: 1rem;
}

/* paragraphs */
.contact-info p {
  color: rgba(255,255,255,0.9);
}

/* links */
.contact-info a {
  color: var(--gold-light);
  font-weight: 600;
}

/* alert box inside */
.contact-info .contact-alert {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}