/* ── FAQ PAGE STYLES ── */

/* FAQ Hero Section */
.faq-hero {
  background: linear-gradient(135deg, var(--color-pale-rose) 0%, var(--color-blush-bg) 100%);
  padding: 4rem 0;
  text-align: center;
  margin-top: 2rem;
}

.faq-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-heading);
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-subtitle {
  font-size: 1.2rem;
  color: var(--color-text);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

/* FAQ Content */
.faq-content {
  padding: 4rem 0;
  background: var(--color-bg);
}

.faq-content .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* FAQ Categories */
.faq-category {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(162, 79, 114, 0.1);
  border: 1px solid rgba(162, 79, 114, 0.1);
}

.faq-category h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-heading);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.faq-category h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-dusky-pink);
  border-radius: 2px;
}

/* FAQ Items */
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(162, 79, 114, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 10px rgba(162, 79, 114, 0.15);
}

.faq-question {
  width: 100%;
  background: var(--color-bg);
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.faq-question:hover {
  background: var(--color-pale-rose);
  color: var(--color-heading);
}

.faq-question.active {
  background: var(--color-dusky-pink);
  color: white;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--color-dusky-pink);
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--color-blush-bg);
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
  line-height: 1.7;
  color: var(--color-text);
  font-size: 1rem;
}

/* Contact Section */
.faq-contact {
  background: linear-gradient(135deg, var(--color-heading) 0%, var(--color-dusky-pink) 100%);
  color: white;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
}

.faq-contact h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: white;
}

.faq-contact p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item strong {
  color: var(--color-pale-rose);
}

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

.cta-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  display: inline-block;
}

.cta-btn.primary {
  background: white;
  color: var(--color-heading);
}

.cta-btn.primary:hover {
  background: var(--color-pale-rose);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn.secondary:hover {
  background: white;
  color: var(--color-heading);
  transform: translateY(-2px);
}

/* Active Navigation Link */
.menu li a.active {
  color: var(--color-dusky-pink);
  font-weight: 600;
  position: relative;
}

.menu li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-dusky-pink);
  border-radius: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-hero h1 {
    font-size: 2.2rem;
  }
  
  .faq-subtitle {
    font-size: 1rem;
  }
  
  .faq-category {
    padding: 1.5rem;
  }
  
  .faq-category h2 {
    font-size: 1.5rem;
  }
  
  .faq-question {
    padding: 1.2rem;
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 1.2rem;
    font-size: 0.95rem;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .faq-hero {
    padding: 2rem 0;
  }
  
  .faq-content {
    padding: 2rem 0;
  }
  
  .faq-category {
    padding: 1rem;
  }
  
  .faq-contact {
    padding: 2rem 1.5rem;
  }
  
  .faq-contact h2 {
    font-size: 1.8rem;
  }
}
