/* ═══════════════════════════════════════════════
   PATEL EVENTS — FAQ PAGE CSS
   ═══════════════════════════════════════════════ */

/* ── FAQ HERO ── */
.faq-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 5% 4rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.faq-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: -2;
  transform: scale(1.02);
  filter: grayscale(30%) blur(2px);
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.75) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.faq-hero-content {
  max-width: 800px;
  animation: fadeUp 1s ease both;
}

.faq-hero-tag {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.faq-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.faq-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.faq-hero-desc {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

/* ── FAQ ACCORDION SECTION ── */
.faq-section {
  padding: 5rem 5% 7rem;
  position: relative;
  z-index: 10;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category-section {
  margin-bottom: 4rem;
}

.faq-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-category-title::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.3), transparent);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: rgba(25, 25, 25, 0.4);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(30, 30, 30, 0.5);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(35, 35, 35, 0.6);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.03em;
  cursor: pointer;
  outline: none;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-toggle-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item.active .faq-toggle-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer-inner {
  padding: 0 2.5rem 1.75rem 2rem;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--gray);
  letter-spacing: 0.02em;
}

.faq-answer-inner p {
  margin-bottom: 1rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* ── FAQ CTA SECTION ── */
.faq-cta {
  padding: 6rem 5% 8rem;
  position: relative;
  z-index: 10;
  text-align: center;
}

.faq-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 32px;
  padding: 4rem 3rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.faq-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.faq-cta-title em {
  font-style: italic;
  color: var(--gold);
}

.faq-cta-desc {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.faq-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.4);
  color: #25d366;
}

.btn-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: var(--black);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  font-size: 1rem;
  line-height: 1;
}

/* ── RESPONSIVE RESPONSIVENESS ── */
@media (max-width: 768px) {
  .faq-hero {
    min-height: 40vh;
    padding: 7rem 5% 3rem;
  }
  
  .faq-section {
    padding: 3rem 5% 5rem;
  }
  
  .faq-category-title {
    font-size: 1.6rem;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .faq-answer-inner {
    padding: 0 1.75rem 1.5rem 1.5rem;
  }
  
  .faq-cta-inner {
    padding: 3rem 1.5rem;
  }
}
