/* Bootstrap overrides — Mayongvashikaran (spiritual / tantric palette) */
:root {
  --mv-bg: #05040d;
  --mv-bg-mid: #0f0820;
  --mv-card: rgba(255, 255, 255, 0.06);
  --mv-border: rgba(255, 255, 255, 0.12);
  --mv-accent: #a78bfa;
  --mv-accent2: #34d399;
  --mv-smoke-violet: rgba(139, 92, 246, 0.14);
  --mv-smoke-indigo: rgba(99, 102, 241, 0.1);
  --mv-smoke-teal: rgba(45, 212, 191, 0.08);
}

body {
  font-family: "Inter", system-ui, sans-serif;
  /* Fixed header = navbar + emergency bar */
  padding-top: 132px;
  background:
    radial-gradient(ellipse 130% 55% at 50% -35%, rgba(88, 28, 135, 0.32), transparent 58%),
    radial-gradient(1000px 520px at 8% 12%, rgba(76, 29, 149, 0.2), transparent 56%),
    radial-gradient(900px 480px at 94% 22%, rgba(52, 211, 153, 0.06), transparent 54%),
    linear-gradient(168deg, #020106 0%, #140a22 38%, #0a0614 72%, #040308 100%);
  color: rgba(255, 255, 255, 0.92);
  position: relative;
}

/* Skip link above fog + header */
body > .visually-hidden-focusable {
  z-index: 1100;
}

/*
 * Fog sits above page content, below header (1030) and WhatsApp float (1080).
 * Layered: deep plumes → mid edges/blobs → soft veils. pointer-events: none.
 */
.fog-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 1020;
  pointer-events: none;
  overflow: hidden;
}

.fog-atmosphere__inner {
  position: absolute;
  inset: 0;
  /* Composite cap keeps body text readable */
  opacity: 0.76;
  --fog-parallax-x: 0px;
  --fog-parallax-y: 0px;
  transform: translate3d(var(--fog-parallax-x), var(--fog-parallax-y), 0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.fog-depth {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fog-depth--deep {
  z-index: 0;
}

.fog-depth--mid {
  z-index: 1;
}

.fog-depth--near {
  z-index: 2;
}

/* Distant slow smoke — depth layer */
.fog-plume {
  position: absolute;
  border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%;
  filter: blur(88px);
  will-change: transform, opacity;
  pointer-events: none;
  opacity: 0.85;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.fog-plume--1 {
  width: min(115vw, 920px);
  height: min(90vw, 620px);
  left: -22%;
  top: 6%;
  background: radial-gradient(ellipse at 42% 38%, rgba(124, 58, 237, 0.2) 0%, rgba(55, 20, 80, 0.12) 48%, transparent 72%);
  animation-name: fog-plume-a;
  animation-duration: 56s;
}

.fog-plume--2 {
  width: min(95vw, 780px);
  height: min(75vw, 540px);
  left: 18%;
  bottom: -5%;
  background: radial-gradient(ellipse at 55% 45%, rgba(45, 212, 191, 0.1) 0%, rgba(30, 58, 80, 0.08) 50%, transparent 70%);
  animation-name: fog-plume-b;
  animation-duration: 64s;
  animation-delay: -18s;
}

.fog-plume--3 {
  width: min(80vw, 640px);
  height: min(70vw, 500px);
  left: 28%;
  top: 38%;
  background: radial-gradient(ellipse at 50% 50%, rgba(167, 139, 250, 0.12) 0%, rgba(30, 27, 55, 0.08) 55%, transparent 72%);
  animation-name: fog-plume-c;
  animation-duration: 48s;
  animation-delay: -9s;
}

@keyframes fog-plume-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.55;
  }
  33% {
    transform: translate(4%, 3%) scale(1.05) rotate(0.6deg);
    opacity: 0.72;
  }
  66% {
    transform: translate(-3%, 5%) scale(0.98) rotate(-0.4deg);
    opacity: 0.62;
  }
}

@keyframes fog-plume-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1.02) rotate(0deg);
    opacity: 0.42;
  }
  40% {
    transform: translate(-5%, -4%) scale(1.08) rotate(-0.8deg);
    opacity: 0.58;
  }
  70% {
    transform: translate(3%, 2%) scale(0.96) rotate(0.5deg);
    opacity: 0.48;
  }
}

@keyframes fog-plume-c {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.38;
  }
  50% {
    transform: translate(-4%, -5%) scale(1.06) rotate(0.9deg);
    opacity: 0.52;
  }
}

/* Edge smoke: header (top), footer (bottom), left only — second band = echo layer */
.fog-edge {
  position: absolute;
  filter: blur(62px);
  will-change: transform, opacity;
  pointer-events: none;
}

.fog-edge--echo {
  filter: blur(78px);
  animation-delay: -14s !important;
  opacity: 0.92;
}

.fog-edge--top {
  left: -12%;
  right: -12%;
  top: -18%;
  height: 48vh;
  max-height: 520px;
  background: linear-gradient(
    185deg,
    rgba(76, 29, 149, 0.55) 0%,
    rgba(109, 40, 217, 0.28) 28%,
    rgba(124, 58, 237, 0.14) 52%,
    rgba(30, 20, 50, 0.06) 78%,
    transparent 100%
  );
  animation: smoke-from-top 36s ease-in-out infinite;
}

.fog-edge--top.fog-edge--echo {
  height: 44vh;
  top: -12%;
  background: linear-gradient(
    195deg,
    rgba(139, 92, 246, 0.22) 0%,
    rgba(88, 28, 135, 0.12) 45%,
    transparent 100%
  );
  animation-name: smoke-from-top-alt;
  animation-duration: 44s;
}

.fog-edge--bottom {
  left: -12%;
  right: -12%;
  bottom: -14%;
  height: 42vh;
  max-height: 480px;
  background: linear-gradient(
    5deg,
    rgba(6, 78, 59, 0.38) 0%,
    rgba(15, 118, 110, 0.22) 32%,
    rgba(30, 41, 59, 0.12) 58%,
    transparent 100%
  );
  animation: smoke-from-bottom 42s ease-in-out infinite;
  animation-delay: -6s;
}

.fog-edge--bottom.fog-edge--echo {
  height: 36vh;
  bottom: -8%;
  background: linear-gradient(
    8deg,
    rgba(45, 212, 191, 0.12) 0%,
    rgba(67, 56, 202, 0.1) 40%,
    transparent 100%
  );
  animation-name: smoke-from-bottom-alt;
  animation-duration: 50s;
}

.fog-edge--left {
  top: -12%;
  bottom: -12%;
  left: -22%;
  width: 52vw;
  max-width: 560px;
  background: linear-gradient(
    95deg,
    rgba(199, 210, 254, 0.38) 0%,
    rgba(165, 180, 252, 0.16) 38%,
    rgba(88, 28, 135, 0.08) 62%,
    transparent 100%
  );
  animation: smoke-from-left 40s ease-in-out infinite;
  animation-delay: -3s;
}

.fog-edge--left.fog-edge--echo {
  left: -28%;
  width: 46vw;
  max-width: 480px;
  background: linear-gradient(
    100deg,
    rgba(167, 139, 250, 0.18) 0%,
    rgba(49, 46, 129, 0.1) 50%,
    transparent 100%
  );
  animation-name: smoke-from-left-alt;
  animation-duration: 52s;
}

.fog {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.52;
  will-change: transform, opacity;
  animation: smoke-drift ease-in-out infinite;
}

.fog-1 {
  width: min(90vw, 720px);
  height: min(70vw, 520px);
  left: -15%;
  top: 8%;
  background: radial-gradient(ellipse at center, rgba(167, 139, 250, 0.42) 0%, rgba(76, 29, 149, 0.16) 55%, transparent 72%);
  animation-duration: 36s;
  animation-delay: 0s;
}

.fog-2 {
  width: min(78vw, 600px);
  height: min(62vw, 480px);
  left: 42%;
  top: 18%;
  background: radial-gradient(ellipse at center, rgba(52, 211, 153, 0.26) 0%, rgba(30, 64, 55, 0.12) 52%, transparent 70%);
  animation-duration: 44s;
  animation-delay: -8s;
}

.fog-3 {
  width: min(100vw, 900px);
  height: min(50vw, 420px);
  left: 8%;
  bottom: -8%;
  background: radial-gradient(ellipse at center, rgba(199, 210, 254, 0.22) 0%, rgba(67, 56, 202, 0.1) 48%, transparent 68%);
  animation-duration: 48s;
  animation-delay: -14s;
}

.fog-4 {
  width: min(70vw, 520px);
  height: min(55vw, 400px);
  left: 32%;
  top: 48%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12) 0%, rgba(139, 92, 246, 0.09) 42%, transparent 65%);
  animation-duration: 54s;
  animation-delay: -4s;
}

.fog-5 {
  width: min(72vw, 540px);
  height: min(58vw, 420px);
  left: 48%;
  bottom: 10%;
  background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.2) 0%, rgba(15, 23, 42, 0.1) 55%, transparent 62%);
  animation-duration: 40s;
  animation-delay: -11s;
}

.fog-ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30vh;
  max-height: 300px;
  background: linear-gradient(0deg, rgba(3, 4, 12, 0.55) 0%, rgba(15, 23, 42, 0.18) 45%, transparent 100%);
  filter: blur(2px);
  opacity: 0.5;
  animation: fog-ground-pulse 22s ease-in-out infinite;
}

/* Soft veils — subtle header/footer haze without crushing contrast */
.fog-veil {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  filter: blur(56px);
  will-change: transform, opacity;
  animation: fog-veil-breathe 38s ease-in-out infinite;
}

.fog-veil--header {
  top: 0;
  height: 36vh;
  background: linear-gradient(180deg, rgba(35, 15, 55, 0.28) 0%, rgba(15, 8, 28, 0.1) 65%, transparent 100%);
  animation-delay: -5s;
}

.fog-veil--footer {
  bottom: 0;
  height: 40vh;
  background: linear-gradient(0deg, rgba(8, 32, 30, 0.32) 0%, rgba(25, 20, 45, 0.1) 60%, transparent 100%);
  animation-delay: -12s;
}

@keyframes smoke-from-top {
  0%,
  100% {
    transform: translateY(-3%) translateX(0) scale(1.02) rotate(0deg);
    opacity: 0.48;
  }
  35% {
    transform: translateY(7%) translateX(1.5%) scale(1.07) rotate(0.35deg);
    opacity: 0.72;
  }
  70% {
    transform: translateY(2%) translateX(-1%) scale(1.04) rotate(-0.2deg);
    opacity: 0.58;
  }
}

@keyframes smoke-from-top-alt {
  0%,
  100% {
    transform: translateY(0) translateX(-2%) scale(1.03);
    opacity: 0.35;
  }
  50% {
    transform: translateY(5%) translateX(2%) scale(1.1);
    opacity: 0.55;
  }
}

@keyframes smoke-from-bottom {
  0%,
  100% {
    transform: translateY(4%) scale(1.03) rotate(0deg);
    opacity: 0.42;
  }
  40% {
    transform: translateY(-6%) scale(1.09) rotate(-0.4deg);
    opacity: 0.68;
  }
  75% {
    transform: translateY(1%) scale(1.05) rotate(0.25deg);
    opacity: 0.52;
  }
}

@keyframes smoke-from-bottom-alt {
  0%,
  100% {
    transform: translateY(2%) scale(1.02);
    opacity: 0.32;
  }
  50% {
    transform: translateY(-4%) scale(1.08);
    opacity: 0.5;
  }
}

@keyframes smoke-from-left {
  0%,
  100% {
    transform: translateX(-5%) scale(1.02) rotate(0deg);
    opacity: 0.4;
  }
  45% {
    transform: translateX(6%) scale(1.07) rotate(0.5deg);
    opacity: 0.65;
  }
  80% {
    transform: translateX(1%) scale(1.04) rotate(-0.3deg);
    opacity: 0.52;
  }
}

@keyframes smoke-from-left-alt {
  0%,
  100% {
    transform: translateX(-3%) scale(1.01);
    opacity: 0.28;
  }
  50% {
    transform: translateX(5%) scale(1.06);
    opacity: 0.45;
  }
}

@keyframes smoke-drift {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.34;
  }
  28% {
    transform: translate(4%, -2%) scale(1.05) rotate(0.4deg);
    opacity: 0.52;
  }
  55% {
    transform: translate(-3%, 3%) scale(0.98) rotate(-0.35deg);
    opacity: 0.46;
  }
  78% {
    transform: translate(2%, 1%) scale(1.03) rotate(0.2deg);
    opacity: 0.5;
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.34;
  }
}

@keyframes fog-ground-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.62;
  }
}

@keyframes fog-veil-breathe {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(-1.2%);
    opacity: 0.75;
  }
}

/* One-shot mist at cursor on click (pointer-events: none → does not block UI) */
.fog-click-burst {
  position: fixed;
  left: 0;
  top: 0;
  width: 180px;
  height: 180px;
  margin-left: -90px;
  margin-top: -90px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1027;
  opacity: 0;
  background: radial-gradient(
    circle at 42% 36%,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(199, 210, 254, 0.32) 22%,
    rgba(167, 139, 250, 0.28) 42%,
    rgba(52, 211, 153, 0.2) 62%,
    transparent 74%
  );
  filter: blur(32px);
  transform: scale(0.2);
  will-change: transform, opacity;
}

.fog-click-burst.is-active {
  animation: fog-click-burst-out 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fog-click-burst-out {
  0% {
    opacity: 0;
    transform: scale(0.22);
  }
  22% {
    opacity: 0.92;
  }
  100% {
    opacity: 0;
    transform: scale(3.4);
  }
}

@keyframes fog-click-burst-reduce {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  40% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

/* Hero controls stay tappable above fog */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  z-index: 1026;
}

.hero-carousel .carousel-indicators {
  z-index: 1026;
}

@media (prefers-reduced-motion: reduce) {
  .fog-atmosphere__inner {
    transform: none !important;
    transition: none !important;
    opacity: 0.38;
  }

  .fog,
  .fog-edge,
  .fog-ground,
  .fog-plume,
  .fog-veil {
    animation: none !important;
  }

  .fog-click-burst.is-active {
    animation: fog-click-burst-reduce 0.38s ease-out forwards;
  }

  .fog {
    opacity: 0.28;
  }

  .fog-edge {
    opacity: 0.4;
  }

  .fog-ground {
    opacity: 0.48;
  }

  .fog-plume {
    opacity: 0.35;
  }

  .fog-veil {
    opacity: 0.35;
  }
}

@media (max-width: 767.98px) {
  .fog-atmosphere__inner {
    opacity: 0.68;
  }

  .fog {
    filter: blur(52px);
  }

  .fog-edge {
    filter: blur(44px);
  }

  .fog-edge--echo {
    filter: blur(56px) !important;
  }

  .fog-plume {
    filter: blur(68px);
  }

  .fog-veil {
    filter: blur(42px);
  }
}

.site-header-shell {
  z-index: 1030;
  background: rgba(5, 4, 13, 0.97);
}

.site-nav {
  background: transparent !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mv-border);
}

.emergency-bar {
  font-size: 0.875rem;
  background: linear-gradient(90deg, rgba(22, 101, 52, 0.35), rgba(88, 28, 135, 0.25));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.emergency-bar__label {
  color: rgba(255, 255, 255, 0.88);
}

.emergency-bar__phone {
  text-decoration: none;
  font-size: 1rem;
}

.emergency-bar__phone:hover {
  color: #fff !important;
  text-decoration: underline;
}

.emergency-bar--footer {
  background: linear-gradient(90deg, rgba(5, 4, 13, 0.96), rgba(15, 23, 42, 0.98));
}

.navbar-brand {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-brand .site-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: min(420px, 82vw);
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 576px) {
  .navbar-brand .site-logo {
    height: 56px;
    max-width: min(320px, 88vw);
  }

  body {
    padding-top: 148px;
  }

  .emergency-bar .emergency-bar__label {
    text-align: center;
    font-size: 0.8rem;
  }
}

/* Hero: one fixed frame (full width × same height); images fill via cover */
.hero-carousel {
  --hero-slide-h: clamp(520px, min(82vh, 1100px), 1200px);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-carousel .carousel-inner {
  overflow: hidden;
  border-radius: 0;
  min-height: var(--hero-slide-h);
}

.hero-carousel .carousel-item {
  position: relative;
  width: 100%;
  height: var(--hero-slide-h);
  min-height: var(--hero-slide-h);
  max-height: var(--hero-slide-h);
  background: #080612;
  overflow: hidden;
  contain: layout style;
}

.hero-carousel .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  /* Fill the slide edge-to-edge; cover scales/crops to eliminate gaps */
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05);
}

.hero-carousel .carousel-caption {
  position: absolute;
  z-index: 1026;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1.5rem 3rem;
  background: linear-gradient(180deg, transparent, rgba(5, 4, 13, 0.94));
}

.hero-carousel .caption-inner {
  max-width: 720px;
  margin: 0 auto;
}

.glass-card {
  background: var(--mv-card);
  border: 1px solid var(--mv-border);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.glass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
}

.glass-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.section-title {
  letter-spacing: -0.02em;
}

.stat-pill {
  border-radius: 999px;
  border: 1px solid var(--mv-border);
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

/* Explore by category — balanced cards, fixed aspect tiles */
.section-categories .category-card {
  border: 1px solid var(--mv-border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1.25rem 1.25rem 0;
  overflow: hidden;
}

.category-card__head {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1rem;
}

.category-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mv-accent);
  margin-bottom: 0.35rem;
}

.category-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.95);
}

.category-card__subtitle {
  font-size: 0.875rem;
  line-height: 1.45;
}

.category-card__body {
  min-height: 0;
}

.category-tile {
  position: relative;
  overflow: hidden;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #080612;
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .category-card:hover .category-tile:not(.category-tile--note) img {
    transform: scale(1.03);
  }
}

.category-tile--hero {
  aspect-ratio: 16 / 9;
}

/* Single-image category (e.g. Love): a bit taller so the card still feels balanced */
.category-tile--hero.category-tile--solo {
  aspect-ratio: 4 / 3;
}

.category-tile--sq {
  aspect-ratio: 1 / 1;
}

.category-tile--wide {
  aspect-ratio: 2 / 1;
}

.category-tile--note {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.12), rgba(52, 211, 153, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.category-tile--note.category-tile--wide {
  aspect-ratio: 2 / 1;
  min-height: 0;
}

.category-tile__note-inner {
  padding: 1rem 1.25rem;
  text-align: center;
}

.category-tile__note-inner strong {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
}

.category-tile__note-inner p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.category-card__foot {
  margin-top: auto;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 767.98px) {
  .section-categories .category-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Client testimonials */
.section-testimonials {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(5, 4, 13, 0.52) 100%);
}

.testimonials-trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.testimonial-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }
}

.testimonial-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mv-accent), var(--mv-accent2));
  opacity: 0.85;
}

.testimonial-card__body {
  padding: 1.5rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.testimonial-card__avatar-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  padding: 3px;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.5), rgba(52, 211, 153, 0.45));
  flex-shrink: 0;
}

.testimonial-card__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(5, 4, 13, 0.95);
}

.testimonial-card__stars {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: #fbbf24;
  line-height: 1;
}

.testimonial-card__topic {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mv-accent);
  margin-bottom: 0.75rem;
}

.testimonial-card__quote {
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
  flex-grow: 1;
}

.testimonial-card__quote p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.testimonial-card__footer {
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.testimonial-card__place {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 767.98px) {
  .testimonial-card__body {
    padding: 1.35rem 1.15rem;
  }
}

/* FAQ accordion (dark theme) */
.section-faq {
  background: rgba(0, 0, 0, 0.2);
}

.faq-accordion .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mv-border) !important;
  border-radius: 0.75rem !important;
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 1.15rem;
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(167, 139, 250, 0.12);
  color: #fff;
}

.faq-accordion .accordion-button::after {
  filter: invert(1);
  opacity: 0.75;
}

.faq-accordion .accordion-body {
  padding: 0 1.15rem 1.15rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Before you call checklist */
.section-checklist .checklist-card {
  border: 1px solid var(--mv-border);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.04);
}

.checklist-card__item {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checklist-card__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.checklist-card__item:first-child {
  padding-top: 0;
}

.checklist-card__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.2);
  color: #6ee7b7;
  font-weight: 800;
  font-size: 0.85rem;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1080;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

footer a {
  color: rgba(255, 255, 255, 0.75);
}

footer a:hover {
  color: #fff;
}

/* Testimonial avatars */
img.rounded-circle.object-fit-cover,
img.object-fit-cover {
  object-fit: cover;
}

.text-accent {
  color: var(--mv-accent);
}

@media (max-width: 576px) {
  .hero-carousel {
    --hero-slide-h: clamp(380px, min(72vh, 100vw), 720px);
  }
}
