/* Custom styles — complements Tailwind light spiritual theme */

:root {
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --deep-purple: #2d1b4e;
  --cosmic-blue: #1a2744;
  --cream: #faf8f5;
  --saffron: #e67e22;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  background-color: var(--cream);
  color: #1f2937;
  overflow-x: hidden;
}

.font-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Hero cosmic light gradient */
.hero-bg {
  background: linear-gradient(135deg, #faf8f5 0%, #f3eef8 35%, #ebe4f5 70%, #faf8f5 100%);
  position: relative;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(201, 162, 39, 0.4), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(45, 27, 78, 0.15), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(201, 162, 39, 0.3), transparent),
    radial-gradient(1px 1px at 40% 80%, rgba(45, 27, 78, 0.2), transparent);
  background-size: 200px 200px;
  pointer-events: none;
  opacity: 0.6;
}

.zodiac-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

/* Gold accent line */
.gold-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Service cards */
.service-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(45, 27, 78, 0.12);
}

/* Trust icon circle */
.trust-icon {
  background: linear-gradient(135deg, #f8f4e8, #fff);
  border: 1px solid rgba(201, 162, 39, 0.35);
}

/* Process step connector */
.process-step::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(50% + 2rem);
  width: calc(100% - 4rem);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0.2));
}

@media (max-width: 768px) {
  .process-step::after {
    display: none;
  }
}

/* Problem cards */
.problem-card {
  border-left: 4px solid var(--gold);
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--deep-purple) 0%, #4a2c7a 50%, var(--cosmic-blue) 100%);
}

/* Sticky WhatsApp */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* Owl carousel overrides */
.owl-carousel .owl-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid rgba(201, 162, 39, 0.4) !important;
  color: var(--deep-purple) !important;
  font-size: 24px !important;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
  background: var(--gold) !important;
  color: #fff !important;
}

.owl-carousel .owl-dots .owl-dot span {
  background: rgba(45, 27, 78, 0.2) !important;
  width: 10px;
  height: 10px;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--gold) !important;
}

/* FAQ accordion */
.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-top: 1rem;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

/* Navbar scroll */
.nav-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(45, 27, 78, 0.08);
}

/* GSAP reveal initial state */
.gsap-reveal {
  opacity: 0;
  transform: translateY(40px);
}

.gsap-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.gsap-reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

/* Map embed */
.map-embed iframe {
  border-radius: 12px;
  min-height: 280px;
}

/* Form focus */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}
