/* ======================================================================
   AAMTMAVED — Astrology, Vastu & Pooja  |  style.css
   Theme: Celestial / Vedic. Light base with navy + gold + red accents.
   ====================================================================== */

/* ----------------------------------------------------------------------
   1. THEME VARIABLES  (change colours here — everything else updates)
   ---------------------------------------------------------------------- */
:root {
  /* --- Core brand palette (Aamtmaved theme) --- */
  --navy: #2D2D2D;
  /* charcoal — dark sections / headings */
  --red: #C66A12;
  /* deep saffron — primary CTA / accents */
  --gold: #D4AF37;
  /* antique gold — highlights / secondary CTA */
  --accent: #365C43;
  /* forest green — supporting accent */

  /* --- Derived tints (auto-feel; tweak if needed) --- */
  --navy-soft: #3d3d3d;
  --gold-soft: #f0c94d;
  /* bright gold — used for button hover states */
  --red-soft: #d97e1f;

  /* --- Neutrals / surfaces --- */
  --bg: #F8F5EE;
  /* warm ivory — page base     */
  --bg-tint: #F2ECDD;
  /* warm off-white section    */
  --bg-cream: #FBF8F1;
  --ink: #2D2D2D;
  /* charcoal — body text       */
  --ink-soft: #6b6a63;
  /* muted charcoal text       */
  --line: #e6ddc8;
  /* hairline borders          */
  --white: #ffffff;

  /* --- Typography --- */
  --font-display: 'Marcellus', serif;
  --font-sc: 'Marcellus SC', serif;
  --font-body: 'Mukta', sans-serif;

  /* --- Shape & motion --- */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 6px 20px rgba(45, 45, 45, .06);
  --shadow-md: 0 16px 40px rgba(45, 45, 45, .10);
  --shadow-lg: 0 28px 60px rgba(45, 45, 45, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-fast: .25s var(--ease);
  --t: .45s var(--ease);

  --container-pad: clamp(1rem, 4vw, 2rem);
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------------------------------------
   2. BASE / RESET
   ---------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: .2px;
  color: var(--navy);
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  display: block;
}

.text-gold {
  color: var(--gold);
}

.text-red {
  color: var(--red);
}

/* Reusable section rhythm */
.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  position: relative;
}

/* subtle celestial pattern shows ONLY on plain white sections.
   tint / dark / deep use the `background` shorthand below, which resets
   this image to none automatically. */
.section {
  background-color: var(--bg);
  background-image: url('');
  background-repeat: repeat;
  background-size: 360px;
}

.section--tint {
  background: var(--bg-tint);
}

.section--dark {
  background: var(--navy);
}

.section--deep {
  /* rich dark band used for Services */
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(212, 175, 55, .10), transparent 45%),
    radial-gradient(ellipse at 85% 100%, rgba(198, 106, 18, .12), transparent 45%);
}

.eyebrow {
  font-family: var(--font-sc);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--red);
  margin-bottom: .6rem;
}

.eyebrow--light {
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.85rem);
  margin: 0 0 1rem;
}

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

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 3.2rem);
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-sub--light {
  color: rgba(255, 255, 255, .72);
}

.lead-muted {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* ----------------------------------------------------------------------
   3. BUTTONS  (varied hover styles)
   ---------------------------------------------------------------------- */
.btn-cta {
  --c: var(--red);
  background: var(--c);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .3px;
  padding: .7rem 1.6rem;
  border: none;
  border-radius: 50px;
  box-shadow: 0 10px 24px rgba(198, 106, 18, .28);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}

.btn-cta:hover {
  background: var(--gold-soft);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(212, 175, 55, .38);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .65);
  border-radius: 50px;
  padding: .7rem 1.6rem;
  font-weight: 600;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.btn-ghost:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  padding: .7rem 1.4rem;
  transition: transform var(--t-fast), filter var(--t-fast);
}

.btn-whatsapp:hover {
  color: #fff;
  filter: brightness(1.07);
  transform: translateY(-3px);
}

/* arrow link hover */
.link-arrow {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.link-arrow i {
  transition: transform var(--t-fast);
}

.link-arrow:hover {
  color: var(--red);
}

.link-arrow:hover i {
  transform: translateX(6px);
}

/* ----------------------------------------------------------------------
   4. TOP BAR
   ---------------------------------------------------------------------- */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, .85);
  font-size: .85rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, .25);
}

.top-bar__link {
  color: rgba(255, 255, 255, .85);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.top-bar__link:hover {
  color: var(--gold);
}

.top-bar__link i {
  color: var(--gold);
}

.top-bar__tag {
  font-family: var(--font-sc);
  letter-spacing: 2px;
  color: var(--gold);
  font-size: .75rem;
}

.top-bar__icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  transition: background var(--t-fast), transform var(--t-fast), color var(--t-fast);
}

.top-bar__icon:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px) rotate(8deg);
}

/* ----------------------------------------------------------------------
   5. NAVBAR (sticky)
   ---------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}

.site-nav.scrolled {
  padding: .5rem 0;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, .98);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  box-shadow: inset 0 0 0 2px rgba(212, 175, 55, .55);
  transition: transform var(--t);
}

.brand:hover .brand__mark {
  transform: rotate(180deg);
}

.brand__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
  display: flex;
  flex-direction: column;
}

.brand__sub {
  font-family: var(--font-sc);
  font-size: .62rem;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-top: 3px;
  text-transform: uppercase;
}

.site-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--navy);
  margin: 0 .45rem;
  position: relative;
  padding: .35rem .1rem;
}

.site-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width var(--t);
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after {
  width: 100%;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--red);
}

.navbar-brand.brand {
  padding: 0;
}

/* ----------------------------------------------------------------------
   6. HERO
   ---------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero__carousel,
.hero {
  height: clamp(560px, 86vh, 820px);
}

.hero__slide {
  position: relative;
  height: 100%;
  background-size: cover;
  background-position: center;
  /* fallback colour shown ONLY when no background-image url is set on the
     slide's inline style — add a background-image and this is fully hidden. */
  background-color: var(--navy);
  background-image: linear-gradient(135deg, var(--navy) 0%, var(--accent) 140%);
}

.hero__slide[style*="url"] {
  background-color: transparent;
}

.hero__slide[style*="url"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.836) 0%, rgba(0, 0, 0, 0.658) 55%, rgba(0, 0, 0, 0.5) 100%);
}

/* navy + gradient overlay so text stays readable on any image */
.carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
}

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-top: 40px;
  max-width: 1140px;
}

.hero__eyebrow {
  font-family: var(--font-sc);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__title {
  color: #fff;
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  margin: 0 0 1.2rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .35);
}

.hero__lead {
  color: rgba(255, 255, 255, .85);
  font-size: 1.2rem;
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* signature: starfield + slow rotating mandala */
.hero__stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .55;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, #ffe9a8, transparent),
    radial-gradient(1px 1px at 40% 70%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 85% 60%, #fff, transparent),
    radial-gradient(1px 1px at 55% 45%, #ffe9a8, transparent),
    radial-gradient(1.5px 1.5px at 15% 80%, #fff, transparent);
  background-repeat: no-repeat;
  animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from {
    opacity: .3;
  }

  to {
    opacity: .7;
  }
}

.hero__mandala {
  position: absolute;
  z-index: 2;
  right: -60px;
  top: 50%;
  width: 480px;
  height: 480px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: .95;
}

.hero__mandala::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, .18) 0%, transparent 70%);
  filter: blur(6px);
}

.hero__mandala svg {
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  will-change: transform;
}

.zw-names text {
  fill: var(--gold);
  opacity: .85;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* hero controls */
.hero__dots {
  z-index: 4;
  bottom: 28px;
}

.hero__dots [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .4);
  transition: background var(--t-fast), width var(--t-fast);
}

.hero__dots .active {
  background: var(--gold);
  width: 30px;
  border-radius: 6px;
}

.hero__arrow {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: .8;
  font-size: 1.4rem;
  color: #fff;
  z-index: 4;
  margin: 0 1rem;
  transition: background var(--t-fast), opacity var(--t-fast);
}

.hero__arrow:hover {
  background: var(--gold);
  color: var(--navy);
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
}

/* ----------------------------------------------------------------------
   7. MARQUEE  (rAF powered — see script.js)
   ---------------------------------------------------------------------- */
.marquee {
  background: linear-gradient(90deg, var(--red), #b80510);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: .85rem 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .5px;
  padding: 0 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.marquee__item i {
  color: var(--gold-soft);
}

.marquee__sep {
  color: var(--gold-soft);
  font-size: .8rem;
}

/* ----------------------------------------------------------------------
   8. ABOUT
   ---------------------------------------------------------------------- */
.about__media {
  position: relative;
}

.about__img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/3.4;
}

.about__badge {
  position: absolute;
  bottom: -26px;
  left: -10px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, .4);
  animation: floatY 5s ease-in-out infinite;
}

.about__badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.about__badge-label {
  font-size: .85rem;
  line-height: 1.3;
  max-width: 120px;
}

.about__badge-label strong {
  color: var(--gold-soft);
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.4rem;
}

.about__list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .55rem;
  font-weight: 500;
}

.about__list i {
  color: var(--red);
  font-size: 1.15rem;
}

/* floating decorative icons */
.float-icon {
  position: absolute;
  pointer-events: none;
  opacity: .8;
}

.float-icon--om {
  top: -28px;
  right: 18px;
  font-size: 3.4rem;
  color: var(--gold);
  font-family: var(--font-display);
  animation: floatY 6s ease-in-out infinite;
}

.float-icon--star {
  font-size: 5rem;
  color: var(--gold);
  opacity: .25;
  margin-top: 2rem;
  animation: spin 40s linear infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ----------------------------------------------------------------------
   9. SERVICES
   ---------------------------------------------------------------------- */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 100%;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.service-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, .5);
}

.service-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  width: 100%;
  height: 230px;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t);
}

.service-card:hover .service-card__img img {
  transform: scale(1.08);
}

.service-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: #fff;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 50px;
  font-family: var(--font-sc);
}

.service-card__tag--gold {
  background: var(--gold);
  color: var(--navy);
}

.service-card__tag--alt {
  background: var(--accent);
}

.service-card__tag--yoga {
  background: var(--gold);
  color: var(--navy);
}

.service-card__body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.service-card__title {
  font-size: 1.35rem;
  margin-bottom: .55rem;
}

.service-card__body p {
  color: var(--ink-soft);
  font-size: .98rem;
  margin-bottom: 1rem;
}

/* --- Services on the dark (section--deep) band: navy cards, gold accents --- */
.section--deep .service-card {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(212, 175, 55, .28);
  backdrop-filter: blur(2px);
}

.section--deep .service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 26px 50px rgba(0, 0, 0, .45);
}

.section--deep .service-card__title {
  color: #fff;
}

.section--deep .service-card__body p {
  color: rgba(255, 255, 255, .72);
}

.section--deep .link-arrow {
  color: var(--gold);
}

.section--deep .link-arrow:hover {
  color: #fff;
}

/* ----------------------------------------------------------------------
   10. WHY CHOOSE US
   ---------------------------------------------------------------------- */
.why__counters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-top: 1.8rem;
}

.counter {
  display: flex;
  align-items: baseline;
  flex-direction: column;
}

.counter__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
}

.counter__plus {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.counter__label {
  width: 100%;
  font-size: .85rem;
  color: var(--ink-soft);
  letter-spacing: .5px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  height: 100%;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--t);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.why-card:hover::before {
  transform: scaleY(1);
}

.why-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(198, 106, 18, .08);
  color: var(--red);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.why-card:hover .why-card__icon {
  background: var(--navy);
  color: var(--gold);
  transform: rotate(-8deg);
}

.why-card__title {
  font-size: 1.25rem;
  margin-bottom: .4rem;
}

.why-card p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin: 0;
}

/* ----------------------------------------------------------------------
   11. PROCESS / HOW IT WORKS (dark)
   ---------------------------------------------------------------------- */
.process {
  overflow: hidden;
}

.process::after {
  /* subtle starfield on dark */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .4;
  background-image:
    radial-gradient(1px 1px at 10% 20%, var(--gold), transparent),
    radial-gradient(1px 1px at 80% 30%, #fff, transparent),
    radial-gradient(1px 1px at 50% 80%, var(--gold), transparent),
    radial-gradient(1px 1px at 30% 60%, #fff, transparent);
  background-repeat: no-repeat;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.process__step {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(212, 175, 55, .22);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  transition: transform var(--t), background var(--t), border-color var(--t);
}

.process__step:hover {
  transform: translateY(-6px);
  background: rgba(212, 175, 55, .1);
  border-color: var(--gold);
}

.process__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
  opacity: .9;
}

.process__title {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: .5rem;
}

.process__step p {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
  margin: 0;
}

/* ----------------------------------------------------------------------
   12. GALLERY MARQUEE (auto-scroll, 5 visible on desktop)
   ---------------------------------------------------------------------- */
.gallery-marquee {
  position: relative;
  overflow: hidden;
  padding: .4rem 0;
}

.gallery-marquee::before,
.gallery-marquee::after {
  /* soft edge fade */
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.gallery-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.gallery-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.gallery-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.gallery-marquee__item {
  /* 5 items visible within the viewport width (minus gaps) */
  flex: 0 0 calc((100vw - 6rem) / 5);
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-marquee__item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--t), filter var(--t);
  filter: saturate(.95);
}

.gallery-marquee__item:hover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

/* ----------------------------------------------------------------------
   12b. ZODIAC HOROSCOPE MARQUEE (auto-scroll)
   ---------------------------------------------------------------------- */
.zodiac-marquee {
  position: relative;
  overflow: hidden;
  padding: .5rem 0;
}

.zodiac-marquee::before,
.zodiac-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.zodiac-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-tint), transparent);
}

.zodiac-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-tint), transparent);
}

.zodiac-marquee__track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  will-change: transform;
}

.zodiac-card {
  flex: 0 0 auto;
  width: 150px;
  text-align: center;
  padding: 1.3rem .8rem 1.1rem;
  background: #fff;
  border: 1px solid #ffbe21;
  border-radius: var(--radius);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.zodiac-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
  color: var(--navy);
}

.zodiac-card__sym {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-bottom: .55rem;
  color: var(--red);
  background: radial-gradient(circle at 30% 30%, #fff, var(--bg-cream));
  border: 1px solid rgba(212, 175, 55, .45);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.zodiac-card:hover .zodiac-card__sym {
  background: var(--navy);
  color: var(--gold);
  transform: rotate(8deg);
}

.zodiac-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.zodiac-card small {
  color: var(--ink-soft);
  font-size: .72rem;
  letter-spacing: .3px;
}

/* ----------------------------------------------------------------------
   12c. VIDEOS (simple grid — videos only, no labels/thumbnails)
   ---------------------------------------------------------------------- */
.vgrid__item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(212, 175, 55, .25);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
  height: 250px;
}

.vgrid__item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

/* object-fit: contain keeps the real aspect ratio (no stretching / no pixel distortion) */
.vgrid__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

/* ----------------------------------------------------------------------
   13. GALLERY GRID  (desktop 4 / mobile 2 per row)
   ---------------------------------------------------------------------- */
.gallery-tile {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1/1;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t);
}

.gallery-tile:hover img {
  transform: scale(1.12);
}

.gallery-tile__zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(45, 45, 45, .55);
  color: var(--gold);
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.gallery-tile:hover .gallery-tile__zoom {
  opacity: 1;
}

/* ----------------------------------------------------------------------
   14. FAQ
   ---------------------------------------------------------------------- */
.faq__accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .9rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq__accordion .accordion-button {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--navy);
  padding: 1.1rem 1.3rem;
  background: #fff;
}

.faq__accordion .accordion-button:not(.collapsed) {
  color: var(--red);
  background: var(--bg-cream);
  box-shadow: none;
}

.faq__accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--gold);
}

.faq__accordion .accordion-button::after {
  background-image: none;
  content: '\002B';
  font-family: inherit;
  font-size: 1.4rem;
  width: auto;
  height: auto;
  transition: transform var(--t-fast);
  color: var(--gold);
}

.faq__accordion .accordion-button:not(.collapsed)::after {
  content: '\2212';
  transform: none;
}

.faq__accordion .accordion-body {
  color: var(--ink-soft);
  padding: 0 1.3rem 1.2rem;
}

/* ----------------------------------------------------------------------
   15. TESTIMONIALS
   ---------------------------------------------------------------------- */
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.6rem;
  position: relative;
  height: 100%;
  margin: 0;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testi-card__quote {
  font-size: 2.6rem;
  color: var(--gold);
  opacity: .35;
  line-height: 0;
  position: absolute;
  top: 26px;
  right: 22px;
}

.testi-card p {
  font-size: 1.05rem;
  color: var(--ink);
  font-style: italic;
}

.testi-card__foot {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.testi-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testi-card__foot span:not(.testi-card__stars) {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.testi-card__foot strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.testi-card__foot small {
  color: var(--ink-soft);
}

.testi-card__stars {
  margin-left: auto;
  color: var(--gold);
  font-size: .85rem;
}

.testi__dots {
  position: static;
  margin-top: 1.8rem;
}

.testi__dots [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  opacity: .3;
  border: 0;
}

.testi__dots .active {
  opacity: 1;
  background: var(--red);
  width: 26px;
  border-radius: 5px;
}

/* ----------------------------------------------------------------------
   16. CONTACT
   ---------------------------------------------------------------------- */
.contact__info {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.contact__info li {
  display: flex;
  gap: .9rem;
  margin-bottom: 1.1rem;
  align-items: flex-start;
}

.contact__info a {
  color: var(--ink);
}

.contact__info a:hover {
  color: var(--red);
}

.contact__ic {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.1rem;
}

.contact__hours {
  font-weight: 500;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.contact__hours i {
  color: var(--red);
}

.contact__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-md);
}

.contact__form .form-label {
  font-weight: 500;
  color: var(--navy);
  margin-bottom: .35rem;
}

.contact__form .form-control,
.contact__form .form-select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .7rem .9rem;
  background: var(--bg-cream);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.contact__form .form-control:focus,
.contact__form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .18);
  background: #fff;
}

.contact__note {
  margin: .3rem 0 0;
  font-weight: 600;
  color: #1b7e3c;
}

/* ----------------------------------------------------------------------
   16b. BOOK APPOINTMENT CTA BAND (celestial cream panel)
   ---------------------------------------------------------------------- */
.appoint {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: #161e34;
}

.appoint__panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle at 50% 40%, #fff 0%, var(--bg-cream) 70%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  box-shadow: var(--shadow-md);
}

.appoint__content {
  position: relative;
  z-index: 2;
}

.appoint__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0 0 .5rem;
}

.appoint__sub {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 1.6rem;
}

.appoint__wa-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .4);
  animation: floatY 4s ease-in-out infinite;
}

.appoint__wa-icon:hover {
  color: #fff;
  filter: brightness(1.06);
}

.appoint__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* celestial decorations */
.appoint__deco {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(45, 45, 45, .10);
  border-radius: 50%;
}

.appoint__deco--ring {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.appoint__deco--cross {
  width: 70%;
  height: 0;
  top: 50%;
  left: 15%;
  border: 0;
  border-top: 1px dashed rgba(45, 45, 45, .10);
}

.appoint__deco--cross::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 220px;
  transform: translate(-50%, -50%);
  border-left: 1px dashed rgba(45, 45, 45, .10);
}

.appoint__star {
  position: absolute;
  z-index: 1;
  color: var(--gold);
  opacity: .55;
  font-size: 1.2rem;
}

.appoint__star--1 {
  top: 18%;
  left: 22%;
}

.appoint__star--2 {
  bottom: 20%;
  right: 24%;
  font-size: 1.5rem;
}

.appoint__star--3 {
  top: 24%;
  right: 20%;
  color: var(--red);
  opacity: .5;
}

.appoint__star--4 {
  bottom: 22%;
  left: 18%;
  color: var(--red);
  opacity: .5;
}

/* ----------------------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------------------- */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .72);
  padding: clamp(3rem, 5vw, 4.5rem) 0 1.5rem;
}

.brand--footer .brand__text {
  color: #fff;
}

.footer__about {
  margin-top: 1rem;
  font-size: .95rem;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: .6rem;
  margin-top: 1.1rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: background var(--t-fast), transform var(--t-fast), color var(--t-fast);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer__head {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}

.footer__links,
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: .6rem;
}

.footer__links a {
  color: rgba(255, 255, 255, .72);
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer__contact li {
  display: flex;
  gap: .6rem;
  margin-bottom: .8rem;
  font-size: .92rem;
  align-items: flex-start;
}

.footer__contact i {
  color: var(--gold);
  margin-top: 4px;
}

.footer__contact a {
  color: rgba(255, 255, 255, .72);
}

.footer__contact a:hover {
  color: var(--gold);
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
  font-size: .86rem;
}

.footer__bottom a {
  color: var(--gold);
}

/* ----------------------------------------------------------------------
   18. FLOATING BUTTONS
   ---------------------------------------------------------------------- */
.float-btn {
  position: fixed;
  bottom: 24px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
  color: #fff;
}

.float-btn--wa {
  left: 24px;
  background: #25D366;
  animation: pulseWA 2.4s infinite;
}

.float-btn--call {
  right: 24px;
  background: var(--red);
  animation: pulseCall 2.4s infinite;
}

@keyframes pulseWA {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulseCall {
  0% {
    box-shadow: 0 0 0 0 rgba(198, 106, 18, .5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(198, 106, 18, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(198, 106, 18, 0);
  }
}

/* ----------------------------------------------------------------------
   19. SCROLL-REVEAL (IntersectionObserver toggles .is-visible)
   ---------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ----------------------------------------------------------------------
   20. RESPONSIVE
   ---------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .site-nav {
    background: rgba(255, 255, 255, .98);
  }

  .navbar-collapse {
    background: #fff;
    border-radius: var(--radius-sm);
    margin-top: .8rem;
    padding: 1rem;
    box-shadow: var(--shadow-md);
  }

  .site-nav .nav-link {
    margin: .2rem 0;
  }

  .site-nav .btn-cta {
    display: inline-block;
    margin-top: .5rem;
  }

  .hero__content {
    align-items: flex-start;
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__mandala {
    width: 320px;
    height: 320px;
    right: -110px;
    opacity: .5;
  }

  .gallery-marquee__item {
    flex-basis: calc((100vw - 4rem) / 3);
  }

  /* 3 visible on tablet */
}

@media (max-width: 767.98px) {
  body {
    font-size: .98rem;
  }

  .top-bar {
    font-size: .78rem;
  }

  .top-bar .container {
    justify-content: center;
    text-align: center;
  }

  .hero__lead {
    font-size: 1.05rem;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
  }

  .about__badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
  }

  .why__counters {
    gap: 1.2rem;
    justify-content: space-between;
  }

  .counter__num {
    font-size: 2rem;
  }

  .gallery-marquee__item {
    flex-basis: calc((100vw - 3rem) / 2);
  }

  /* 2 visible on mobile */
  .gallery-marquee__item img {
    height: 200px;
  }

  .zodiac-card {
    width: 130px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .process__grid {
    grid-template-columns: 1fr;
  }

  .hero__arrow {
    display: none;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    bottom: 18px;
  }

  .marquee__item {
    font-size: 1rem;
  }
}

/* ----------------------------------------------------------------------
   21. ACCESSIBILITY — reduced motion
   ---------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  /* marquee handled in JS — still animates via rAF by design */
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
/* ----------------------------------------------------------------------
   22. SERVICE DETAILS MODAL
   ---------------------------------------------------------------------- */
.service-modal .modal-content {
  border: none;
  border-radius: var(--radius);
  background: var(--bg-cream);
  box-shadow: var(--shadow-lg);
}

.service-modal .modal-header {
  border-bottom: 1px solid var(--line);
  padding: 1.3rem 1.6rem 1rem;
}

.service-modal .modal-title {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.5rem;
}

.service-modal .modal-body {
  padding: 1.3rem 1.6rem;
}

.service-modal .modal-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 1.6rem 1.4rem;
}

.service-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-modal__list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .8rem;
  font-size: 1rem;
  line-height: 1.5;
}

.service-modal__list li:last-child {
  margin-bottom: 0;
}

.service-modal__list i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------------
   23. ABOUT GURUJI
   ---------------------------------------------------------------------- */
.guruji__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}

.guruji__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guruji__role {
  font-family: var(--font-sc);
  color: var(--accent);
  letter-spacing: .5px;
  font-size: 1.05rem;
  margin-bottom: .8rem;
}

/* ----------------------------------------------------------------------
   24. FOOTER TAGLINE
   ---------------------------------------------------------------------- */
.footer__tagline {
  text-align: center;
  padding: 1.6rem 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer__tagline-main {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: .3rem;
}

.footer__tagline-sub {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
  margin-bottom: 0;
  font-style: italic;
}
@media(max-width:374px)
{
	.brand {
    display: inline-flex;
    align-items: center;
    gap: .1rem;
}
.brand__sub{
	font-size: .48rem;
}
}