/* ============================================
   FAQ PAGE - COMPLETE STYLES
   ============================================ */

:root {
  --bg: #f5f3f0;
  --text: #2d2d2d;
  --text-light: #6b6b6b;
  --accent: #c9a87c;
  --border: #e0ddd8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 100;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-light);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.btn-primary {
  padding: 12px 24px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  opacity: 0.8;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 1px;
  background: var(--text);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 90;
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

/* ============================================
   FAQ HEADER
   ============================================ */

.faq-header {
  text-align: center;
  padding: 140px 40px 60px;
}

.header-content {
  max-width: 700px;
  margin: 0 auto;
}

.faq-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 30px;
}

.faq-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   FAQ SECTION - ACCORDION
   ============================================ */

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

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

.faq-category {
  margin-bottom: 60px;
}

.category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text);
  transition: color 0.3s ease;
}

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

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 25px;
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 95%;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 124, 0.08));
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 15px;
}

.cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-light);
  margin-bottom: 30px;
}

.cta-btn {
  padding: 15px 35px;
  font-size: 12px;
  letter-spacing: 0.15em;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--text);
  color: white;
  padding: 70px 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.footer-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ============================================
   RESPONSIVE
   ============================================ */

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

@media (max-width: 768px) {
  .navbar {
    padding: 0 25px;
  }
  
  .nav-links,
  .btn-primary.desktop-only {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .faq-header {
    padding: 120px 25px 50px;
  }
  
  .faq-title {
    letter-spacing: 0.1em;
  }
  
  .faq-section {
    padding: 0 25px 60px;
  }
  
  .faq-category {
    margin-bottom: 45px;
  }
  
  .category-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .faq-question {
    font-size: 16px;
    padding: 18px 0;
  }
  
  .faq-icon {
    width: 20px;
    height: 20px;
  }
  
  .faq-answer p {
    font-size: 13px;
    line-height: 1.8;
  }
  
  .cta-section {
    padding: 60px 25px;
  }
  
  .footer {
    padding: 50px 25px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  
  .footer-bottom {
    margin-top: 40px;
  }
}
