/* =========================================================
   🧭 Reclaim Bharosa — Contact Page Styles (excluding claim form)
   ========================================================= */

/* ---------------------------------------------
   🌿 Spiral Animation (shared across sections)
--------------------------------------------- */
.spiral-path {
  stroke-dasharray: 12;
  animation: dashmove 6s ease-in-out infinite alternate;
  will-change: stroke-dashoffset;
}

@keyframes dashmove {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -180;
  }
}

/* Crisp SVG spiral for desktop */
.spiral-svg {
  height: 850px;
  object-fit: contain;
}

/* Taller, smoother spiral on mobile */
@media (max-width: 768px) {
  .spiral-svg {
    height: 1100px;
    object-fit: fill;
    top: -20px;
  }
  .spiral-path {
    stroke-width: 2.5;
    animation-duration: 8s;
  }
}

/* ---------------------------------------------
   🧩 Step Cards (Our Process)
--------------------------------------------- */
.step-card {
  perspective: 1000px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.step-card .step-inner {
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-inner {
  transform: rotateY(10deg) rotateX(10deg) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Step card number bubble */
.step-card .step-inner span.inline-flex {
  background-image: linear-gradient(to bottom right, #0d9488, #14b8a6);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(13, 148, 136, 0.3);
}

/* ---------------------------------------------
   💡 Why Us Cards
--------------------------------------------- */
.whyus-card {
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  perspective: 1000px;
}

.whyus-card:hover {
  transform: translateY(-8px) scale(1.02) rotateX(3deg) rotateY(-3deg);
  box-shadow: 0 15px 35px rgba(234, 88, 12, 0.25);
}

.whyus-card h3 {
  color: #ea580c;
  font-weight: 600;
}

.whyus-card p {
  color: #374151;
  line-height: 1.6;
}

/* ---------------------------------------------
   ❓ FAQ Section
--------------------------------------------- */
#faq details {
  border: 1px solid #fcd34d;
  border-left: 4px solid #f97316;
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

#faq details:hover {
  box-shadow: 0 4px 8px rgba(249, 115, 22, 0.15);
}

#faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #1f2937;
  outline: none;
}

#faq summary::marker {
  color: #f97316;
}

#faq p {
  margin-top: 0.5rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ---------------------------------------------
   🧭 Section Headings
--------------------------------------------- */
section h2 {
  font-weight: 700;
  color: #ea580c;
  margin-bottom: 1rem;
  text-align: center;
}

section h3 {
  font-weight: 600;
  color: #1f2937;
}

/* ---------------------------------------------
   🪄 Animation Helpers
--------------------------------------------- */
[data-aos] {
  will-change: transform, opacity;
}

/* ---------------------------------------------
   🧱 Responsive Layout Tweaks
--------------------------------------------- */
@media (max-width: 768px) {
  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .whyus-card {
    transform: none !important;
  }

  .step-card:hover .step-inner {
    transform: none;
    box-shadow: none;
  }
}

/* ---------------------------------------------
   🧭 Scroll Margin for Anchor Links
--------------------------------------------- */
section[id] {
  scroll-margin-top: 100px;
}

/* ---------------------------------------------
   🎨 Misc Utilities
--------------------------------------------- */
.text-orange-600 {
  color: #ea580c !important;
}

.bg-gradient-orange {
  background-image: linear-gradient(to right, #fef3c7, #fed7aa, #fdba74);
}
