:root {
  --gold: #c9a84c;
  --gold-light: #f3e8c8;
  --maroon: #7b6ba8;
  --maroon-dark: #5d4f8a;
  --saffron: #e8a87c;
  --cream: #faf8f5;
  --text: #3a3348;
  --text-muted: #6e667a;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(93, 79, 138, 0.1);
  --radius: 12px;
  --font-display: "Cinzel", serif;
  --font-body: "Poppins", sans-serif;
  --font-hindi: "Noto Sans Devanagari", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* Marquee */
.top-marquee {
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon));
  color: var(--gold-light);
  padding: 0.55rem 0;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-text {
  padding-left: 2rem;
}

.marquee-cta {
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}

.marquee-cta:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(212, 168, 83, 0.3);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--maroon);
  color: var(--white);
  border-radius: 6px;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.main-nav a:hover {
  color: var(--maroon);
}

.header-ctas {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-shrink: 0;
}

.header-ctas .btn {
  padding: 0.32rem 0.7rem;
  font-size: 0.72rem;
  gap: 0.3rem;
  line-height: 1.2;
}

.header-ctas .btn i {
  font-size: 0.75rem;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
  animation: none;
}

/* Font Awesome icons inside buttons must not inherit float-btn styles */
.btn i.fab,
.btn i.fas,
.btn i.far {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: -0.1em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--maroon);
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.2;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn i {
  font-size: 0.85em;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-call {
  background: var(--maroon);
  color: var(--white);
}

.btn-call:hover {
  box-shadow: 0 6px 20px rgba(93, 79, 138, 0.25);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-lg {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.hero-carousel .hero-actions .btn {
  padding: 0.48rem 1rem;
  font-size: 0.82rem;
}

.hero-carousel .hero-actions .btn i {
  font-size: 0.8rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 83, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(93, 79, 138, 0.06), transparent 40%),
    linear-gradient(180deg, var(--cream) 0%, #f3f0fa 100%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-sub {
  font-size: 0.9rem;
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-welcome {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--maroon);
  line-height: 1.2;
  margin: 0.4rem 0 1rem;
}

.hero-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 4px solid var(--gold);
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -0.5rem;
  background: var(--maroon);
  color: var(--gold-light);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head.light h2,
.section-head.light .section-label {
  color: var(--white);
}

.section-label {
  display: inline-block;
  color: var(--saffron);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--maroon);
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.alt-bg {
  background: linear-gradient(180deg, #f3f0fa 0%, var(--cream) 100%);
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 168, 83, 0.2);
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.service-thumb {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 2px solid rgba(212, 168, 83, 0.35);
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--maroon);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-actions .btn {
  flex: 1;
  justify-content: center;
  min-width: 0;
  font-size: 0.75rem;
  padding: 0.38rem 0.65rem;
}

/* Full-width astrology banners (like reference site) */
.section-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-banner img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

/* Achievements */
.achievements-section {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  padding: 3rem 0;
}

.achievements-banner img {
  width: 100%;
  border-radius: var(--radius);
  max-height: 320px;
  object-fit: cover;
  border: 3px solid var(--gold);
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.why-image {
  position: relative;
}

.why-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
}

.floating-label {
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  background: var(--maroon);
  color: var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.why-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--maroon);
  margin: 0.5rem 0 1rem;
}

.why-content > p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.why-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.why-features li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--maroon);
}

.why-features i {
  color: var(--gold);
  margin-right: 0.4rem;
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.feature-card i {
  color: var(--maroon);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.feature-card h4 {
  font-size: 0.95rem;
  color: var(--maroon);
  margin-bottom: 0.35rem;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Stats */
.stats-section {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  padding: 3rem 0;
}

.stats-grid,
.gallery-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item,
.gallery-stat {
  color: var(--white);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}

.stat-label,
.gallery-stat span:last-child {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 0.35rem;
  display: block;
}

/* Other services */
.other-services-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.other-col ul {
  list-style: none;
}

.other-col li {
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(93, 79, 138, 0.12);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.other-col li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
}

.other-col .col-whatsapp {
  margin-top: 1rem;
}

/* CTA cards */
.cta-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.cta-card {
  background: linear-gradient(160deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--gold);
  transition: transform 0.3s;
}

.cta-card:hover {
  transform: translateY(-4px);
}

.cta-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.cta-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.cta-card p {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.cta-card .phone-link {
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-stats {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-stat .stat-number {
  color: var(--maroon);
}

.gallery-stat span:last-child {
  color: var(--text-muted);
}

/* Celebrity */
.celebrity-section {
  background: linear-gradient(135deg, #f3f0fa, var(--cream));
}

.celebrity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.celebrity-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--maroon);
  margin: 0.5rem 0 1rem;
}

.celebrity-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.celebrity-image img {
  border-radius: var(--radius);
  border: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

/* Testimonials */
.testimonials-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  flex: 1;
  transition: transform 0.4s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: opacity 0.3s;
}

.testimonial-card .quote {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-card h4 {
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 1rem;
}

.testimonial-card .place {
  font-size: 0.8rem;
  color: var(--saffron);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--maroon);
  background: var(--white);
  color: var(--maroon);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.slider-btn:hover {
  background: var(--maroon);
  color: var(--white);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(93, 79, 138, 0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.slider-dot.active {
  background: var(--maroon);
  transform: scale(1.2);
}

/* Contact */
.contact-section {
  padding: 3rem 0 4rem;
}

.contact-box {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 3px solid var(--gold);
}

.contact-box h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.contact-box p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--maroon-dark);
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--gold);
  margin-right: 0.5rem;
  width: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
}

.disclaimer {
  font-size: 0.78rem;
  opacity: 0.75;
  margin-bottom: 0.75rem;
  max-width: 900px;
  margin-inline: auto;
}

.disclaimer a {
  color: var(--gold-light);
  text-decoration: underline;
}

.copyright {
  font-size: 0.82rem;
}

/* Floating action buttons (class name avoids Font Awesome .fab conflict) */
.fab-bar {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.float-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
  animation: pulse 2s infinite;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn i.fab,
.float-btn i.fas {
  width: auto;
  height: auto;
  font-size: 1.1rem;
}

.float-btn-call {
  background: var(--maroon);
}

.float-btn-whatsapp {
  background: #25d366;
  animation-delay: 0.5s;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.5); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid,
  .why-grid,
  .celebrity-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .stats-grid,
  .gallery-stats,
  .cta-cards-grid,
  .other-services-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 85vw);
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    transition: right 0.3s;
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
  }

  .header-ctas {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .feature-cards,
  .why-features {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid,
  .gallery-stats,
  .cta-cards-grid,
  .other-services-cols {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .slider-btn.prev,
  .slider-btn.next {
    display: none;
  }
}

/* === Astrologer Sonu layout === */

.hero-carousel {
  position: relative;
  min-height: min(85vh, 720px);
  overflow: hidden;
  background: var(--maroon-dark);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(93, 79, 138, 0.75) 0%, rgba(93, 79, 138, 0.35) 55%, transparent 100%);
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-slide-content {
  max-width: 560px;
  color: var(--white);
  padding: 2rem 0;
}

.hero-tag {
  display: inline-block;
  background: var(--saffron);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-carousel .hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-carousel .hero-desc {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(93, 79, 138, 0.55);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}

.hero-nav:hover {
  background: var(--maroon);
}

.hero-nav.prev { left: 1rem; }
.hero-nav.next { right: 1rem; }

.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
}

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(212, 168, 83, 0.25);
  padding: 1.25rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--maroon);
  justify-content: center;
  text-align: left;
}

.trust-item i {
  color: var(--gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.section-head .section-cta {
  margin-top: 1rem;
  padding: 0.4rem 0.95rem;
  font-size: 0.78rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 168, 83, 0.2);
  transition: transform 0.3s;
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-img {
  height: 200px;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-num {
  display: inline-block;
  margin: 1rem 1.25rem 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--saffron);
  font-weight: 700;
}

.category-card h3 {
  font-family: var(--font-display);
  color: var(--maroon);
  padding: 0.5rem 1.25rem 0;
  font-size: 1.15rem;
}

.category-card p {
  padding: 0.5rem 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.category-card .btn {
  margin: 0 1.25rem 1.25rem;
  padding: 0.38rem 0.75rem;
  font-size: 0.75rem;
}

.about-section {
  background: linear-gradient(180deg, #f3f0fa, var(--cream));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
  width: 100%;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--maroon);
  margin: 0.5rem 0;
}

.guru-line {
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonials-grid .testimonial-card {
  flex: none;
  min-width: 0;
}

.testimonial-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.stars {
  color: var(--saffron);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.testimonial-cat {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.testimonials-grid blockquote {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.testimonials-grid footer span {
  font-size: 0.85rem;
  color: var(--saffron);
  margin-left: 0.35rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 1.8rem;
  margin: 0.5rem 0 1rem;
}

.contact-details p {
  margin-bottom: 0.5rem;
}

.contact-details i {
  color: var(--gold);
  margin-right: 0.5rem;
  width: 18px;
}

.contact-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.consult-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 168, 83, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consult-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--maroon);
}

.consult-form input,
.consult-form textarea {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(93, 79, 138, 0.15);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.consult-form input:focus,
.consult-form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}

.btn-submit {
  background: var(--maroon);
  color: var(--white);
  border: none;
  cursor: pointer;
  justify-content: center;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-submit:hover {
  background: var(--maroon-dark);
}

.footer-logo {
  margin-bottom: 0.75rem;
  height: 40px;
  width: auto;
}

.chat-hint {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  background: var(--maroon);
  color: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 998;
  pointer-events: none;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(93, 79, 138, 0.8) 0%, rgba(93, 79, 138, 0.4) 100%);
    align-items: flex-end;
  }

  .hero-carousel {
    min-height: 75vh;
  }
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-nav {
    display: none;
  }
}

/* Sponsored landing page (Google Ads) */
.sponsored-intro {
  padding: 2rem 0;
  background: var(--white);
  border-bottom: 1px solid rgba(212, 168, 83, 0.2);
}

.sponsored-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--saffron);
  margin-bottom: 0.5rem;
}

.sponsored-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 820px;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.keyword-tag {
  font-size: 0.72rem;
  padding: 0.3rem 0.65rem;
  background: rgba(93, 79, 138, 0.06);
  color: var(--maroon);
  border-radius: 999px;
  border: 1px solid rgba(212, 168, 83, 0.35);
}

.before-call-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.before-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.before-card i {
  color: var(--maroon);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.before-card h3 {
  font-size: 0.95rem;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

.before-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  border: 1px solid rgba(93, 79, 138, 0.1);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--maroon);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.form-disclaimer a {
  color: var(--maroon);
  text-decoration: underline;
}

.disclaimer-bar {
  background: #f3f0fa;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(93, 79, 138, 0.08);
}

.disclaimer-bar p {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
}

.policy-page .policy-content {
  padding: 3rem 0 4rem;
  max-width: 720px;
}

.policy-content h1 {
  font-family: var(--font-display);
  color: var(--maroon);
  margin-bottom: 1rem;
}

.policy-content h2 {
  font-size: 1.1rem;
  color: var(--maroon);
  margin: 1.5rem 0 0.5rem;
}

.policy-content p,
.policy-content li {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.policy-content ul {
  padding-left: 1.25rem;
}

@media (max-width: 992px) {
  .before-call-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .before-call-grid {
    grid-template-columns: 1fr;
  }
}
