/* ==========================================================================
   PAGE-SPECIFIC STYLES (index.css)
   ========================================================================== */

/* Page Padding for Sticky Header */
main {
  margin-top: 0;
}

/* Section Common Styles */
section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-bg-alt {
  background-color: var(--surface);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.75rem;
  background: rgba(255, 122, 0, 0.08);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--muted);
  font-size: 1.1rem;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 5rem 0 7rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(244, 183, 64, 0.12) 0%, rgba(252, 250, 247, 0) 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--success);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

.badge-verified svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

/* Quick Question Input Card */
.quick-ask-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(30, 41, 59, 0.05);
  margin-top: 0.5rem;
}

.quick-ask-card p {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.quick-ask-form {
  display: flex;
  gap: 0.5rem;
}

.quick-ask-input {
  flex-grow: 1;
  background-color: var(--bg);
  border: 1px solid rgba(30, 41, 59, 0.1);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
}

.quick-ask-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
  background-color: var(--surface);
}

.quick-ask-form .btn-submit {
  background: var(--gradient-primary);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.2);
  transition: var(--transition);
  flex-shrink: 0;
}

.quick-ask-form .btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(255, 122, 0, 0.3);
}

.quick-ask-form .btn-submit svg {
  width: 20px;
  height: 20px;
  transform: translateX(1px);
}

.hero-ctas-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Trust Badges Bar */
.trust-badges-inline {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(30, 41, 59, 0.08);
  padding-top: 1.5rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.trust-badge-item svg {
  color: var(--accent);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Hero Image Section */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, rgba(244, 183, 64, 0.05) 50%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-image-container {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--surface);
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  background-color: var(--secondary);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
  animation: zoomInOut 8s ease-in-out infinite;
}
@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
    100% {
        transform: scale(1);
    }
}

.hero-image-container:hover img {
  transform: scale(1.05);
}

.hero-card-floating {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero-card-floating .floating-name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1rem;
}

.hero-card-floating .floating-desc {
  font-size: 0.8rem;
  color: var(--muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-image-wrapper {
    /* order: -1; */
  }
  .hero-card-floating {
    left: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .trust-badges-inline {
    flex-direction: column;
    gap: 0.75rem;
  }
  .hero-ctas-group .btn {
    width: 100%;
  }
}

/* ==========================================================================
   2. TRUST BAR
   ========================================================================== */
.trust-bar {
  background: var(--gradient-dark);
  color: white;
  padding: 2.5rem 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-bar-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-bar-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.trust-bar-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .trust-bar-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   3. ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 6px solid var(--surface);
}

.about-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about-experience-tag {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--gradient-primary);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--surface);
  line-height: 1.1;
  font-weight: 700;
}

.about-experience-tag span {
  font-size: 1.5rem;
}

.about-experience-tag label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  color: var(--secondary);
}

.about-story {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  background: rgba(255, 122, 0, 0.08);
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
}

.about-feature-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.about-feature-text p {
  font-size: 0.85rem;
  color: var(--muted);
}

.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-top: 1px solid rgba(30, 41, 59, 0.08);
  padding-top: 1.5rem;
}

.credential-tag {
  background-color: var(--surface);
  border: 1px solid rgba(30, 41, 59, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   4. SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(255, 122, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 122, 0, 0.3);
}

.service-img-wrapper {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 122, 0, 0.1);
  position: relative;
}

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

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

.service-icon-box {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 122, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.service-icon-box svg {
  width: 22px;
  height: 22px;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.service-desc {
  color: var(--muted);
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: auto;
}

.service-cta-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.service-card:hover .service-cta-link svg {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   5. FEATURED OFFER / CALL TO ACTION BANNER
   ========================================================================== */
.offer-banner {
  background: var(--gradient-dark);
  color: white;
  border-radius: var(--radius-xl);
  padding: 4.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

/* Add cosmic background patterns */
.offer-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 183, 64, 0.1) 0%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}

.offer-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.offer-badge {
  background: rgba(244, 183, 64, 0.15);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(244, 183, 64, 0.3);
}

.offer-title {
  color: white;
  font-size: 2.25rem;
  line-height: 1.25;
}

.offer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 650px;
  margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
  .offer-banner {
    padding: 3rem 2rem;
  }
  .offer-title {
    font-size: 1.75rem;
  }
  .offer-ctas {
    width: 100%;
    flex-direction: column;
  }
  .offer-ctas .btn {
    width: 100%;
  }
}

/* ==========================================================================
   6. TESTIMONIALS SECTION
   ========================================================================== */
/* Testimonials Slider Layout */
.testimonials-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.testimonial-slide {
  width: 33.333%;
  flex-shrink: 0;
  padding: 0 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

@media (max-width: 991px) {
  .testimonial-slide {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .testimonial-slide {
    width: 100%;
  }
}

.testimonial-card {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(255, 122, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(255, 122, 0, 0.02) 100%);
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 1rem;
  right: 2.5rem;
  font-size: 6rem;
  line-height: 1;
  color: rgba(255, 122, 0, 0.08);
  font-family: var(--font-heading);
  font-weight: 900;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

/* Transformation framework styles */
.testimonial-journey {
  margin-bottom: 1.75rem;
  text-align: left;
}

.journey-step {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.journey-label {
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.journey-label.problem { color: #EF4444; }
.journey-label.guidance { color: var(--primary); }
.journey-label.outcome { color: var(--success); }

.journey-text {
  color: var(--text);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(30, 41, 59, 0.08);
  padding-top: 1.5rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.author-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
}

.author-info p {
  font-size: 0.825rem;
  color: var(--muted);
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background-color: var(--surface);
  border: 1.5px solid rgba(255, 122, 0, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.slider-btn:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 122, 0, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary);
  width: 24px;
}

/* ==========================================================================
   7. HOW IT WORKS SECTION
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

/* Dotted connector lines for desktop */
@media (min-width: 992px) {
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: repeating-linear-gradient(to right, rgba(255, 122, 0, 0.2) 0px, rgba(255, 122, 0, 0.2) 4px, transparent 4px, transparent 8px);
    z-index: 1;
  }
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.step-number {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 2px solid rgba(255, 122, 0, 0.2);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.step-item:hover .step-number {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(255, 122, 0, 0.3);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
}

.step-desc {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 280px;
}

@media (max-width: 991px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .step-item {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
  }
  .step-number {
    flex-shrink: 0;
  }
  .step-desc {
    max-width: 100%;
  }
}

/* ==========================================================================
   8. HOROSCOPE PREVIEW SECTION
   ========================================================================== */
/* ==========================================================================
   8. GEMSTONES & REMEDIES SECTION
   ========================================================================== */
.remedies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.remedy-card {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(255, 122, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.remedy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 122, 0, 0.3);
}

.remedy-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid rgba(255, 122, 0, 0.15);
}

.remedy-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.remedy-card:hover .remedy-img-wrapper img {
  transform: scale(1.08);
}

.remedy-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.remedy-content {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.remedy-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.remedy-desc {
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.remedy-list {
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.remedy-list-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}

.remedy-list-item svg {
  color: var(--primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.remedy-btn {
  margin-top: auto;
  width: 100%;
  padding: 0.75rem;
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .remedies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   9. FAQ SECTION
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30, 41, 59, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 122, 0, 0.15);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  transition: var(--transition);
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.975rem;
  line-height: 1.6;
}

/* ==========================================================================
   10. FINAL CTA SECTION
   ========================================================================== */
.final-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

/* Astrological details */
.final-cta::before {
  /* content: '✨'; */
  position: absolute;
  top: 15%;
  left: 10%;
  font-size: 2rem;
  opacity: 0.5;
  animation: pulse 3s infinite alternate;
}

.final-cta::after {
  /* content: '⭐'; */
  position: absolute;
  bottom: 20%;
  right: 15%;
  font-size: 1.5rem;
  opacity: 0.5;
  animation: pulse 4s infinite alternate;
}

@keyframes pulse {
  0% { opacity: 0.2; transform: scale(0.9); }
  100% { opacity: 0.8; transform: scale(1.1); }
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.final-cta-title {
  color: white;
  font-size: 2.75rem;
  line-height: 1.2;
}

.final-cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.final-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.final-cta-group .btn-secondary {
  border-color: rgba(255,255,255,0.3);
}

.final-cta-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
}

.status-dot {
  width: 10px;
  height: 10px;
  background-color: var(--success);
  border-radius: var(--radius-full);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (max-width: 576px) {
  .final-cta-title {
    font-size: 2rem;
  }
  .final-cta-group {
    width: 100%;
    flex-direction: column;
  }
  .final-cta-group .btn {
    width: 100%;
  }
}

/* ==========================================================================
   11. FLOATING ACTION ELEMENTS
   ========================================================================== */
.floating-elements {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition);
  color: white;
}

.float-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 48%;
  border-radius: var(--radius-full);
  background-color: #25D366;
  opacity: 0.3;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

.float-top {
  background-color: var(--secondary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.float-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.3; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Sticky Bottom Bar for Mobile Device aggressive conversions */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--surface);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 1rem;
  z-index: 998;
  border-top: 1px solid rgba(30, 41, 59, 0.05);
}

.mobile-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mobile-cta-grid .btn {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }
  .floating-elements {
    bottom: 5.5rem;
    right: 1.5rem;
  }
  /* Push footer up to not hide content behind sticky bottom cta */
  footer {
    padding-bottom: 5rem;
  }
}

/* ==========================================================================
   10. CONTACT SECTION & FORM
   ========================================================================== */
.contact-section {
  background-color: var(--bg);
  position: relative;
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(255, 122, 0, 0.08);
}

.contact-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  color: var(--secondary);
  position: relative;
  padding-bottom: 0.75rem;
}

.contact-info-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.contact-intro {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.method-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.method-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 122, 0, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon svg {
  width: 22px;
  height: 22px;
}

.method-details {
  display: flex;
  flex-direction: column;
}

.method-details span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.method-details a, .method-details address {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
  font-style: normal;
}

.method-details a:hover {
  color: var(--primary);
}

.working-hours {
  border-top: 1px solid rgba(30, 41, 59, 0.08);
  padding-top: 2rem;
}

.working-hours h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.working-hours p {
  font-size: 0.925rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.availability-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 600;
}

.availability-status .status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: var(--radius-full);
  animation: pulse-dot-anim 1.5s infinite;
}

@keyframes pulse-dot-anim {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(255, 122, 0, 0.08);
}

.contact-form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--secondary);
  position: relative;
  padding-bottom: 0.75rem;
}

.contact-form-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(30, 41, 59, 0.1);
  background-color: var(--bg);
  color: var(--secondary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' width='16' height='16' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.submit-form-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  margin-top: 1rem;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .contact-info-card, .contact-form-card {
    padding: 2rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
