/* ===========================
   FAQ PAGE
=========================== */

/* HERO */
.faq-hero-section {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background:
    radial-gradient(circle at 75% 35%, rgba(255,200,0,.10), transparent 35%),
    linear-gradient(to bottom, #050505, #090909);
}

.faq-grid-bg,
.faq-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.faq-grid-bg {
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: .18;
}

.faq-glow {
  background: radial-gradient(circle at 75% 40%, rgba(255,255,255,.08), transparent 25%);
}

.faq-question {
  position: absolute;
  font-family: "Playfair Display", serif;
  font-size: 180px;
  color: rgba(255,200,0,.06);
  pointer-events: none;
}

.question-one { right: 8%; top: 10%; }
.question-two { right: 18%; bottom: 15%; font-size: 120px; }
.question-three { right: 35%; top: 40%; font-size: 90px; }

.faq-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 80px;
  align-items: center;
}

.faq-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(60px, 7vw, 105px);
  line-height: .95;
  margin: 28px 0;
}

.faq-hero-content h1::first-line {
  color: var(--primary);
}

.faq-subtitle {
  font-size: 24px;
  color: rgba(255,255,255,.88);
  margin-bottom: 18px;
}

.faq-copy {
  max-width: 700px;
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  font-size: 17px;
}

.faq-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 42px;
}

/* HERO VISUAL */
.knowledge-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.knowledge-folder {
  width: 240px;
  height: 240px;
  border-radius: 40px;
  background: linear-gradient(145deg, #ffd54a, #f5be18);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 35px 80px rgba(255,200,0,.22);
}

.knowledge-folder i {
  font-size: 110px;
  color: #111;
}

.knowledge-icons {
  display: grid;
  grid-template-columns: repeat(2, 90px);
  gap: 26px;
}

.knowledge-icons i {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  color: var(--primary);
}

/* SEARCH */
.faq-search-section {
  background: #090909;
  padding: 80px 0 40px;
}

.faq-search-box {
  max-width: 850px;
  margin: auto;
  height: 74px;
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 30px;
  box-shadow: var(--shadow);
}

.faq-search-box i {
  color: var(--primary);
  font-size: 22px;
}

.faq-search-box input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 17px;
}

.faq-search-box input::placeholder {
  color: rgba(255,255,255,.45);
}

/* CONTENT */
.faq-content-section {
  background:
    radial-gradient(circle at 50% 15%, rgba(255,200,0,.08), transparent 34%),
    linear-gradient(to bottom, #090909, #050505);
  overflow: visible;
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
}

/* SIDEBAR */
.faq-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}

.faq-sidebar a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  color: rgba(255,255,255,.72);
  border: 1px solid transparent;
  font-weight: 800;
  transition: .3s ease;
}

.faq-sidebar a:hover,
.faq-sidebar a.active {
  color: var(--primary);
  background: rgba(255,200,0,.08);
  border-color: rgba(255,200,0,.25);
}

/* MAIN FAQ */
.faq-main {
  display: grid;
  gap: 70px;
}

.faq-category {
  scroll-margin-top: 130px;
}

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.faq-category-title i {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--primary);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.faq-category-title h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

/* ACCORDION */
.faq-item {
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  margin-bottom: 16px;
  transition: .35s ease;
}

.faq-item.active {
  border-color: rgba(255,200,0,.28);
  background: rgba(255,200,0,.06);
}

.faq-question-btn {
  width: 100%;
  padding: 26px 30px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.faq-question-btn i {
  color: var(--primary);
  transition: .35s ease;
}

.faq-item.active .faq-question-btn i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  opacity: 1;
}

.faq-answer p {
  padding: 0 30px 28px;
  color: rgba(255,255,255,.72);
  line-height: 1.85;
}

/* SEARCH HIDDEN */
.faq-item[style*="display: none"],
.faq-category[style*="display: none"],
.faq-sidebar a[style*="display: none"] {
  display: none !important;
}

/* CTA */
.faq-cta-section {
  background:
    radial-gradient(circle at 50% 35%, rgba(255,200,0,.16), transparent 35%),
    linear-gradient(to bottom, #050505, #030303);
  text-align: center;
}

.faq-cta-content {
  max-width: 900px;
  margin: auto;
}

.faq-cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.05;
  margin: 26px 0;
}

.faq-cta-content h2::first-line {
  color: var(--primary);
}

.faq-cta-content p {
  max-width: 720px;
  margin: 0 auto 42px;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.8;
}

.faq-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .faq-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-buttons {
    justify-content: center;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: relative;
    top: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .faq-hero-section {
    min-height: auto;
    padding: 130px 0 90px;
  }

  .faq-hero-content h1 {
    font-size: 54px;
  }

  .faq-buttons,
  .faq-cta-buttons {
    flex-direction: column;
  }

  .faq-search-box {
    height: auto;
    min-height: 68px;
    border-radius: 24px;
  }

  .faq-sidebar {
    grid-template-columns: 1fr;
  }

  .faq-category-title {
    flex-direction: column;
    text-align: center;
  }

  .faq-question-btn {
    font-size: 17px;
    padding: 24px;
  }

  .faq-answer p {
    padding: 0 24px 24px;
  }
}


.breadcrumb{
    display:flex;
    gap:10px;
    align-items:center;
    margin-bottom:30px;
    color:rgba(255,255,255,.55);
    font-size:14px;
}
.breadcrumb a{ color:rgba(255,255,255,.7); transition:.3s ease; }
.breadcrumb a:hover{ color:var(--contact-gold); }

/*======================================================
RESPONSIVE - HERO
======================================================*/

@media (max-width:992px){

.contact-hero-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:60px;
}

.breadcrumb{
    justify-content:center;
}


}