/* FAQ Page Styles */

/* Hero Section */
.faq-hero {
  padding: 180px 40px 100px;
  text-align: center;
  background: #fafafa;
}

.faq-hero-title {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.faq-hero-subtitle {
  font-size: 18px;
  color: #666;
}

/* Quick Links */
.quick-links-section {
  padding: 40px 0;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 60px;
  background: white;
  z-index: 10;
}

.quick-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.quick-link {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
  padding: 8px 16px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.quick-link:hover {
  color: #000;
  border-bottom-color: #000;
}

/* FAQ Sections */
.faq-section {
  padding: 100px 0;
}

.faq-section:nth-child(even) {
  background: #fafafa;
}

.faq-section-title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
  text-align: center;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #666;
}

.faq-question span {
  flex: 1;
  padding-right: 24px;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 32px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

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

.faq-answer ul,
.faq-answer ol {
  margin: 16px 0;
  padding-left: 24px;
}

.faq-answer li {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}

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

.faq-answer strong {
  font-weight: 500;
  color: #000;
}

.faq-answer a {
  color: #000;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.faq-answer a:hover {
  opacity: 0.6;
}

/* Personalization Feature Section */
.personalization-feature {
  padding: 120px 0;
  background: #f5f5f5;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content {
  padding: 0 40px;
}

.feature-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 24px;
}

.feature-title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.feature-description {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 32px;
}

.feature-link {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}

.feature-link:hover {
  opacity: 0.6;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 120px 0;
  background: #000;
  color: white;
}

.contact-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-cta-title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.contact-cta-description {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 40px;
}

.contact-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 16px 40px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button.primary {
  background: white;
  color: black;
  border: 1px solid white;
}

.cta-button.primary:hover {
  background: transparent;
  color: white;
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cta-button.secondary:hover {
  background: white;
  color: black;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .feature-grid {
    gap: 60px;
  }

  .feature-content {
    padding: 0 20px;
  }

  .quick-links {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    padding: 140px 24px 80px;
  }

  .faq-hero-title {
    font-size: 40px;
  }

  .quick-links-section {
    padding: 24px 0;
  }

  .quick-links {
    gap: 16px;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px;
  }

  .quick-link {
    flex-shrink: 0;
    font-size: 11px;
    padding: 6px 12px;
  }

  .faq-section {
    padding: 80px 0;
  }

  .faq-section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 24px 0;
    font-size: 16px;
  }

  .faq-question span {
    padding-right: 16px;
  }

  .faq-answer p,
  .faq-answer li {
    font-size: 14px;
  }

  .personalization-feature {
    padding: 80px 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-image {
    height: 400px;
  }

  .feature-content {
    padding: 0;
  }

  .feature-title {
    font-size: 32px;
  }

  .contact-cta-section {
    padding: 80px 0;
  }

  .contact-cta-title {
    font-size: 32px;
  }

  .contact-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .faq-hero-title {
    font-size: 32px;
  }

  .faq-section-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 15px;
  }

  .feature-title {
    font-size: 28px;
  }

  .contact-cta-title {
    font-size: 28px;
  }
}
