/* ===================================
   FAQ PAGINA - FAUTE BENDT STIJL
   =================================== */

/* FAQ HERO SECTIE */
.faq-hero-fullwidth {
  background: var(--decade-gradient);
  color: var(--white);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.faq-hero-fullwidth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(125, 44, 64, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.faq-hero-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 2rem 0 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.faq-hero-container h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  line-height: 1.1;
}

.faq-hero-container .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
}

.faq-stat {
  text-align: center;
  padding: 1.5rem;
  border-radius: 15px;
  background: rgba(218, 165, 32, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-stat.gold-bright {
  border-color: var(--gold-bright);
}

.faq-stat.gold-warm {
  border-color: var(--gold-warm);
}

.faq-stat.gold-deep {
  border-color: var(--gold-deep);
}

.faq-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(218, 165, 32, 0.2);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-warm);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* FAQ INTRO SECTIE */
.faq-intro-section {
  background: rgba(218, 165, 32, 0.05);
  padding: 4rem 0;
}

.intro-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-lead {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  border-color: var(--gold-warm);
  transform: translateX(10px);
}

.highlight-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.highlight-item p {
  margin: 0;
  line-height: 1.4;
}

.highlight-item strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

/* FAQ SEARCH SECTIE */
.faq-search-section {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
}

.search-controls {
  max-width: 800px;
  margin: 0 auto;
}

.search-bar {
  display: flex;
  margin-bottom: 2rem;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-bar input {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border: none;
  font-size: 1.1rem;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Montserrat', Arial, sans-serif;
}

.search-bar input:focus {
  outline: none;
}

.search-bar button {
  padding: 1.25rem 2rem;
  background: var(--gold-gradient);
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-bar button:hover {
  background: var(--bordeaux-gradient);
}

.search-icon {
  font-size: 1.2rem;
}

.category-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 25px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.filter-btn:hover {
  border-color: var(--gold-warm);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--gold-gradient);
  border-color: var(--gold-warm);
  color: var(--white);
  box-shadow: var(--gold-shadow);
}

.filter-icon {
  font-size: 1.1rem;
}

/* FAQ CATEGORIES SECTIE */
.faq-categories-section {
  background: var(--white);
  padding: 5rem 0;
}

.categories-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.category-card {
  background: var(--white);
  border-radius: 20px;
  border: 2px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
  border-color: var(--gold-warm);
  box-shadow: 0 10px 30px rgba(218, 165, 32, 0.15);
  transform: translateY(-5px);
}

.category-header {
  padding: 2rem;
  background: rgba(218, 165, 32, 0.05);
  border-bottom: 1px solid var(--border-color);
}

.category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.category-icon {
  font-size: 2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.category-title h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
}

.category-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.category-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-count {
  background: var(--gold-warm);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.category-faqs {
  padding: 0;
}

/* ===================================
   FAQ ACCORDION FUNCTIONALITEIT
   =================================== */

.faq-item {
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  background: var(--white);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item:hover {
  background: rgba(218, 165, 32, 0.02);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(218, 165, 32, 0.05);
}

.faq-question.active {
  background: rgba(218, 165, 32, 0.08);
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
  line-height: 1.4;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-warm);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
  user-select: none;
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--bordeaux-warm);
}

/* FAQ ANSWER - STANDAARD VERBORGEN */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: transparent;
}

/* ACTIEVE STAAT - ANTWOORD ZICHTBAAR */
.faq-answer.active {
  background: rgba(218, 165, 32, 0.03);
  max-height: 2000px;
  transition: max-height 0.4s ease-in;
}

/* ANSWER CONTENT STYLING */
.answer-content {
  padding: 0 2rem 0 2rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease 0.1s;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-answer.active .answer-content {
  padding: 2rem 2rem 2rem 2rem;
  opacity: 1;
  transform: translateY(0);
}

.answer-content p {
  margin-bottom: 1rem;
}

.answer-content p:last-child {
  margin-bottom: 0;
}

.answer-content strong {
  color: var(--text-primary);
}

.answer-content ul,
.answer-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.answer-content li {
  margin-bottom: 0.5rem;
}

/* NO FAQS MESSAGE */
.no-faqs-message {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(218, 165, 32, 0.05);
  border-radius: 20px;
  border: 2px dashed var(--gold-warm);
}

.no-faqs-message h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.no-faqs-message p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.no-faqs-message a {
  color: var(--bordeaux-warm);
  text-decoration: underline;
  font-weight: 600;
}

/* SEARCH HIGHLIGHT STYLING */
.search-highlight {
  background: var(--gold-warm);
  color: var(--white);
  padding: 0.1em 0.3em;
  border-radius: 3px;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* NO RESULTS STYLING */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(218, 165, 32, 0.05);
  border-radius: 20px;
  border: 2px dashed var(--gold-warm);
  margin: 2rem 0;
}

.no-results-content {
  max-width: 400px;
  margin: 0 auto;
}

.no-results-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.no-results h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.no-results p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.no-results a {
  color: var(--bordeaux-warm);
  text-decoration: underline;
  font-weight: 600;
}

/* HIGHLIGHT EFFECT VOOR DIRECTE LINKS */
.faq-item.highlight {
  background: rgba(218, 165, 32, 0.1);
  border-left: 4px solid var(--gold-warm);
  animation: highlightPulse 3s ease-in-out;
}

@keyframes highlightPulse {
  0%, 100% { 
    background: rgba(218, 165, 32, 0.1); 
    transform: scale(1);
  }
  50% { 
    background: rgba(218, 165, 32, 0.2); 
    transform: scale(1.01);
  }
}

/* FAQ CONTACT SECTIE */
.faq-contact-section {
  background: rgba(218, 165, 32, 0.05);
  padding: 4rem 0;
}

.contact-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cards {
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid var(--gold-warm);
  box-shadow: 0 10px 30px rgba(218, 165, 32, 0.15);
  margin-bottom: 2rem;
}

.contact-avatar {
  font-size: 3rem;
  background: var(--gold-gradient);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-role {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-methods {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(218, 165, 32, 0.1);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  font-weight: 600;
}

.contact-method:hover {
  background: var(--gold-warm);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-method.primary {
  background: var(--gold-gradient);
  color: var(--white);
}

.contact-method.primary:hover {
  background: var(--bordeaux-gradient);
}

.method-icon {
  font-size: 1.2rem;
}

.method-text {
  font-weight: 700;
}

.method-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.contact-availability {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.availability-icon {
  color: var(--gold-warm);
}

.contact-note {
  background: rgba(125, 44, 64, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  border-left: 4px solid var(--bordeaux-warm);
}

.note-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.note-icon {
  font-size: 1.5rem;
  color: var(--bordeaux-warm);
}

.note-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.contact-note p {
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.contact-note a {
  color: var(--bordeaux-warm);
  text-decoration: underline;
  font-weight: 600;
}

.contact-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* FAQ RELATED SECTIE */
.faq-related-section {
  background: var(--white);
  padding: 4rem 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
}

.related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  position: relative;
}

.related-card:hover {
  border-color: var(--gold-warm);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(218, 165, 32, 0.15);
}

.related-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.related-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.related-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.card-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--gold-warm);
  opacity: 0;
  transition: all 0.3s ease;
}

.related-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(5px);
}

.related-tip {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(218, 165, 32, 0.1);
  border-radius: 15px;
  padding: 2rem;
  border-left: 4px solid var(--gold-warm);
}

.tip-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.tip-icon {
  font-size: 2rem;
  color: var(--gold-warm);
  flex-shrink: 0;
}

.tip-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.tip-content a {
  color: var(--bordeaux-warm);
  text-decoration: underline;
  font-weight: 600;
}

/* FAQ CTA SECTIE */
.faq-cta-section {
  background: rgba(218, 165, 32, 0.05);
  padding: 4rem 0;
}

.cta-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
}

.cta-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: 15px;
  border: 2px solid var(--gold-warm);
  font-weight: 600;
  color: var(--text-primary);
}

.cta-stat .stat-icon {
  font-size: 1.5rem;
  color: var(--gold-warm);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-large {
  padding: 1.5rem 2.5rem;
  font-size: 1.1rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.btn-main {
  font-weight: 700;
  font-size: 1.1rem;
}

.btn-sub {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

/* FAQ SLOGAN SECTIE */
.faq-slogan-section {
  background: var(--white);
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
}

.slogan-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.slogan-quote {
  position: relative;
}

.quote-mark {
  font-size: 4rem;
  color: var(--gold-warm);
  font-weight: 900;
  line-height: 1;
  opacity: 0.3;
}

.slogan-quote h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.slogan-emoji {
  font-size: 3rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* JAVASCRIPT INTERACTIE CLASSES */
.faq-item[data-hidden="true"] {
  display: none;
}

.category-card[data-hidden="true"] {
  display: none;
}

.category-card.filtered {
  opacity: 0.3;
  pointer-events: none;
}

/* LOADING STATES */
.faq-loading {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
}

.faq-loading::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  border-top-color: var(--gold-warm);
  animation: spin 1s linear infinite;
  margin-left: 1rem;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* SECTION BADGES STYLING */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-badge.professional {
  background: var(--gold-gradient);
  color: var(--white);
}

.section-badge.search {
  background: var(--bordeaux-gradient);
  color: var(--white);
}

.section-badge.categories {
  background: linear-gradient(135deg, var(--gold-warm), var(--gold-bright));
  color: var(--white);
}

.section-badge.help {
  background: linear-gradient(135deg, var(--bordeaux-warm), var(--bordeaux-deep));
  color: var(--white);
}

.section-badge.links {
  background: linear-gradient(135deg, var(--dusty-pink), var(--gold-warm));
  color: var(--white);
}

.section-badge.booking {
  background: var(--gold-gradient);
  color: var(--white);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* CONTAINER & SECTION CONSISTENCY */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* BUTTON CONSISTENCY */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--gold-shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--gold-warm);
  color: var(--gold-warm);
  transform: translateY(-2px);
}

.btn-icon {
  font-size: 1.1rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .faq-hero-stats {
    gap: 2rem;
  }
  
  .intro-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .intro-highlights {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .highlight-item {
    flex: 1;
    padding: 1rem;
  }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .contact-methods {
    justify-content: center;
  }
  
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .faq-hero-fullwidth {
    padding: 4rem 0 3rem 0;
  }
  
  .faq-hero-container {
    padding: 1.5rem 1rem 0 1rem;
  }
  
  .faq-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-intro-section,
  .faq-search-section,
  .faq-categories-section,
  .faq-contact-section,
  .faq-related-section,
  .faq-cta-section {
    padding: 3rem 0;
  }
  
  .search-bar {
    flex-direction: column;
  }
  
  .search-bar input,
  .search-bar button {
    padding: 1rem 1.5rem;
  }
  
  .category-filters {
    justify-content: center;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .category-header {
    padding: 1.5rem;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .answer-content {
    padding: 0 1.5rem 0 1.5rem;
  }
  
  .faq-answer.active .answer-content {
    padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  }
  
  .intro-highlights {
    flex-direction: column;
  }
  
  .highlight-item:hover {
    transform: translateY(-5px);
  }
  
  .contact-methods {
    flex-direction: column;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .slogan-content {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-hero-fullwidth {
    padding: 3.5rem 0 3rem 0;
  }
  
  .faq-hero-container {
    padding: 1rem 0.5rem 0 0.5rem;
  }

  .faq-hero-container h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .category-header {
    padding: 1.5rem;
  }
  
  .category-title h3 {
    font-size: 1.3rem;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-question h4 {
    font-size: 1rem;
  }
  
  .answer-content {
    padding: 0 1rem 0 1rem;
  }
  
  .faq-answer.active .answer-content {
    padding: 1rem 1rem 1rem 1rem;
  }
  
  .faq-toggle {
    font-size: 1.2rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-avatar {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .related-card {
    padding: 1.5rem;
  }
  
  .related-icon {
    font-size: 2rem;
  }
  
  .btn-large {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }
  
  .btn-text {
    align-items: center;
  }
  
  .slogan-quote h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 360px) {
  .faq-hero-container {
    padding: 0 0.5rem;
  }
  
  .category-header,
  .faq-question,
  .answer-content {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .faq-answer.active .answer-content {
    padding: 0 0.75rem 0.75rem 0.75rem;
  }
  
  .contact-card {
    padding: 1rem;
  }
  
  .related-card {
    padding: 1rem;
  }
}

/* ACCESSIBILITY & FOCUS STATES */
.faq-question:focus,
.filter-btn:focus,
.contact-method:focus,
.related-card:focus {
  outline: 3px solid var(--gold-warm);
  outline-offset: 2px;
}

.faq-question:focus-visible,
.filter-btn:focus-visible,
.contact-method:focus-visible,
.related-card:focus-visible {
  outline: 3px solid var(--gold-warm);
  outline-offset: 2px;
}

.search-bar input:focus {
  outline: 3px solid var(--gold-warm);
  outline-offset: -3px;
}

/* PRINT STYLES */
@media print {
  .faq-hero-fullwidth::before,
  .search-controls,
  .contact-cta,
  .cta-buttons,
  .slogan-emoji {
    display: none !important;
  }
  
  .faq-answer {
    max-height: none !important;
    overflow: visible !important;
  }
  
  .answer-content {
    padding: 1rem 2rem !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .faq-toggle {
    display: none;
  }
  
  .category-card,
  .contact-card,
  .related-card {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
  }
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .category-card,
  .contact-card,
  .related-card,
  .faq-item {
    border-width: 3px;
  }
  
  .filter-btn,
  .contact-method {
    border-width: 3px;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .category-card,
  .contact-card,
  .related-card,
  .faq-item,
  .filter-btn,
  .contact-method,
  .slogan-emoji,
  .faq-answer,
  .faq-question,
  .faq-toggle,
  .answer-content {
    transition: none;
  }
  
  .category-card:hover,
  .contact-card:hover,
  .related-card:hover,
  .highlight-item:hover {
    transform: none;
  }
  
  .slogan-emoji {
    animation: none;
  }
  
  .faq-item.highlight {
    animation: none;
  }
}

/* DARK MODE SUPPORT */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-color: #333333;
  }
  
  .faq-hero-fullwidth::before {
    background: 
      radial-gradient(circle at 25% 25%, rgba(218, 165, 32, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(125, 44, 64, 0.05) 0%, transparent 50%);
  }
  
  .category-card,
  .contact-card,
  .related-card {
    background: #2a2a2a;
  }
  
  .search-bar input {
    background: #2a2a2a;
    color: var(--text-primary);
  }
}

/* CUSTOM SCROLLBAR */
.category-faqs::-webkit-scrollbar {
  width: 8px;
}

.category-faqs::-webkit-scrollbar-track {
  background: var(--border-color);
  border-radius: 4px;
}

.category-faqs::-webkit-scrollbar-thumb {
  background: var(--gold-warm);
  border-radius: 4px;
}

.category-faqs::-webkit-scrollbar-thumb:hover {
  background: var(--gold-deep);
}

/* SELECTION STYLING */
::selection {
  background: var(--gold-warm);
  color: var(--white);
}

::-moz-selection {
  background: var(--gold-warm);
  color: var(--white);
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* FAQ ITEM ANIMATIONS */
.faq-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CATEGORY CARD ANIMATIONS */
.category-card {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.8s ease forwards;
}

.category-card:nth-child(1) { animation-delay: 0.2s; }
.category-card:nth-child(2) { animation-delay: 0.4s; }
.category-card:nth-child(3) { animation-delay: 0.6s; }
.category-card:nth-child(4) { animation-delay: 0.8s; }
.category-card:nth-child(5) { animation-delay: 1.0s; }

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
