/* ============================================ */
/* FAQ HERO SECTION */
/* ============================================ */

.faq-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #f8f6f2 0%, #ffffff 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.faq-hero-bg-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(194, 65, 12, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.faq-hero-bg-shape-1 {
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(44, 110, 158, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

.faq-hero-bg-shape-2 {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 124, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
}

.faq-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.faq-hero-content {
  max-width: 800px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  animation: faqFadeInUp 0.8s ease forwards;
}

@keyframes faqFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.faq-hero-dot {
  width: 7px;
  height: 7px;
  background: var(--deluxe-red);
  border-radius: 50%;
}

.faq-hero-badge {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-text);
}

.faq-hero-title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--soft-black);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.faq-hero-title span {
  color: var(--deluxe-red);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.faq-hero-title span::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(194, 65, 12, 0.15);
  z-index: -1;
}

.faq-hero-divider {
  width: 60px;
  height: 2px;
  background: var(--deluxe-red);
  margin: 0 auto 1.2rem;
  border-radius: 2px;
}

.faq-hero-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 1.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.faq-hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  justify-content: center;
}

.faq-hero-stat {
  text-align: center;
}

.faq-hero-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deluxe-red);
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
}

.faq-hero-stat-label {
  font-size: 0.7rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Search Bar */
.faq-hero-search {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 60px;
  padding: 0.5rem 0.5rem 0.5rem 1.2rem;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-medium);
  transition: all 0.3s ease;
}

.faq-hero-search:focus-within {
  border-color: var(--deluxe-red);
  box-shadow: 0 10px 30px -12px rgba(194, 65, 12, 0.2);
}

.faq-hero-search i {
  color: var(--gray-text);
  font-size: 1rem;
}

.faq-hero-search input {
  flex: 1;
  border: none;
  padding: 0.8rem 1rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  background: transparent;
  outline: none;
}

.faq-hero-search button {
  background: var(--deluxe-red);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-hero-search button:hover {
  background: #a3340a;
  transform: translateY(-2px);
}

/* ============================================ */
/* FAQ CATEGORIES SECTION */
/* ============================================ */

.faq-categories {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 80px 2rem 4rem;
}

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

.faq-categories-header {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-categories-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.faq-categories-dot {
  width: 7px;
  height: 7px;
  background: var(--deluxe-red);
  border-radius: 50%;
}

.faq-categories-badge {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-text);
}

.faq-categories-title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--soft-black);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.faq-categories-title span {
  color: var(--deluxe-red);
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.faq-categories-title span::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(194, 65, 12, 0.15);
  z-index: -1;
}

.faq-categories-divider {
  width: 50px;
  height: 2px;
  background: var(--deluxe-red);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.faq-categories-subtitle {
  font-size: 0.9rem;
  color: var(--gray-text);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Category Filter Buttons */
.faq-category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.faq-category-btn {
  padding: 0.6rem 1.2rem;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid var(--gray-medium);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--gray-text);
}

.faq-category-btn:hover {
  border-color: var(--deluxe-red);
  color: var(--deluxe-red);
}

.faq-category-btn.active {
  background: var(--deluxe-red);
  border-color: transparent;
  color: white;
}

/* FAQ Accordion Grid */
.faq-accordion-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-category-group {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-category-group.hidden {
  display: none;
}

.faq-category-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deluxe-red);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--deluxe-red);
  display: inline-block;
}

/* FAQ Accordion Items */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--gray-medium);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(194, 65, 12, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--soft-black);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-question i {
  color: var(--deluxe-red);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

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

.faq-item.active .faq-question {
  background: rgba(194, 65, 12, 0.03);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.2rem 1.5rem;
}

.faq-answer p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 0.8rem;
}

.faq-answer ul {
  margin: 0.5rem 0 0 1.5rem;
}

.faq-answer li {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gray-text);
  margin-bottom: 0.3rem;
}

/* No Results */
.faq-no-results {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 24px;
  margin-top: 1rem;
}

.faq-no-results i {
  font-size: 3rem;
  color: var(--gray-text);
  margin-bottom: 1rem;
}

.faq-no-results h3 {
  font-size: 1.3rem;
  color: var(--soft-black);
  margin-bottom: 0.5rem;
}

.faq-no-results p {
  color: var(--gray-text);
  margin-bottom: 1rem;
}

.faq-reset-btn {
  padding: 0.6rem 1.5rem;
  background: var(--deluxe-red);
  color: white;
  border: none;
  border-radius: 40px;
  font-family: var(--font-primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-reset-btn:hover {
  background: #a3340a;
  transform: translateY(-2px);
}

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

.faq-cta {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.faq-cta::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(194, 65, 12, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.faq-cta::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 40%;
  height: 50%;
  background: radial-gradient(
    circle,
    rgba(44, 110, 158, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

.faq-cta-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.faq-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease forwards;
}

.faq-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.faq-cta-dot {
  width: 7px;
  height: 7px;
  background: var(--deluxe-red);
  border-radius: 50%;
}

.faq-cta-badge {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-text);
}

.faq-cta-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--soft-black);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.faq-cta-title span {
  color: var(--deluxe-red);
}

.faq-cta-divider {
  width: 60px;
  height: 2px;
  background: var(--deluxe-red);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.faq-cta-subtitle {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.faq-cta-btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--deluxe-red);
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 2px;
  border: 1px solid transparent;
}

.faq-cta-btn-primary:hover {
  background: #a3340a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(194, 65, 12, 0.3);
}

.faq-cta-btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: var(--soft-black);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1.5px solid var(--gray-medium);
  border-radius: 2px;
}

.faq-cta-btn-secondary:hover {
  border-color: var(--deluxe-red);
  color: var(--deluxe-red);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .faq-hero,
  .faq-cta {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .faq-hero-container {
    padding: 2rem 1rem;
    width: 100%;
  }

  .faq-cta-container {
    padding: 0 1rem;
    width: 100%;
  }

  .faq-hero-title {
    font-size: 1.8rem;
  }

  .faq-hero-title span::before {
    bottom: 4px;
    height: 5px;
  }

  .faq-hero-description {
    font-size: 0.85rem;
  }

  .faq-hero-stats {
    gap: 1rem;
  }

  .faq-hero-stat-number {
    font-size: 1.3rem;
  }

  .faq-hero-search {
    flex-direction: column;
    background: transparent;
    box-shadow: none;
    gap: 0.5rem;
    padding: 0;
  }

  .faq-hero-search input {
    background: white;
    border-radius: 40px;
    padding: 0.8rem 1rem;
    width: 100%;
    border: 1px solid var(--gray-medium);
  }

  .faq-hero-search button {
    width: 100%;
  }

  .faq-categories {
    padding: 60px 1rem 3rem;
  }

  .faq-categories-title {
    font-size: 1.5rem;
  }

  .faq-category-filters {
    gap: 0.5rem;
  }

  .faq-category-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }

  .faq-category-group {
    padding: 1rem;
  }

  .faq-category-title {
    font-size: 1.1rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .faq-answer p,
  .faq-answer li {
    font-size: 0.75rem;
  }

  .faq-cta-title {
    font-size: 1.4rem;
  }

  .faq-cta-subtitle {
    font-size: 0.8rem;
  }

  .faq-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .faq-cta-btn-primary,
  .faq-cta-btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .faq-hero-title {
    font-size: 2.5rem;
  }

  .faq-categories-title {
    font-size: 1.8rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ Category Groups - Initially Hidden */
.faq-category-group {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: none;
}

.faq-category-group.active {
  display: block;
  animation: faqFadeIn 0.4s ease forwards;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Category Filter Buttons - Update active state */
.faq-category-btn {
  padding: 0.6rem 1.2rem;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid var(--gray-medium);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--gray-text);
}

.faq-category-btn:hover {
  border-color: var(--deluxe-red);
  color: var(--deluxe-red);
}

.faq-category-btn.active {
  background: var(--deluxe-red);
  border-color: transparent;
  color: white;
}

/* ============================================ */
/* FAQ CATEGORIES SECTION - MOBILE ADJUSTMENTS */
/* ============================================ */

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .faq-categories {
    padding: 100px 1rem 3rem;
    overflow-x: hidden;
    max-width: 100vw;
  }

  .faq-categories-container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .faq-categories-header {
    margin-bottom: 2rem;
    padding-top: 1rem;
  }

  .faq-categories-badge {
    margin-bottom: 1rem;
  }

  .faq-categories-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .faq-categories-divider {
    margin-bottom: 1.2rem;
  }

  .faq-categories-subtitle {
    font-size: 0.8rem;
    padding: 0 0.5rem;
  }

  /* Category filter buttons - wrap and spacing */
  .faq-category-filters {
    gap: 0.6rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .faq-category-btn {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .faq-categories {
    padding: 110px 0.8rem 2rem;
  }

  .faq-categories-header {
    margin-bottom: 2.5rem;
    padding-top: 1.5rem;
  }

  .faq-categories-title {
    font-size: 1.3rem;
  }

  .faq-categories-subtitle {
    font-size: 0.75rem;
  }

  .faq-category-filters {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }

  .faq-category-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.65rem;
  }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
  .faq-categories {
    padding: 120px 0.6rem 1.5rem;
  }

  .faq-categories-header {
    margin-bottom: 2rem;
    padding-top: 1rem;
  }

  .faq-categories-title {
    font-size: 1.2rem;
  }

  .faq-categories-badge {
    font-size: 0.55rem;
  }

  .faq-category-filters {
    gap: 0.4rem;
  }

  .faq-category-btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.6rem;
  }
}

/* ============================================ */
/* FAQ HERO SECTION - SOLID BACKGROUND */
/* ============================================ */

.faq-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: var(--bg-white);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Remove gradient backgrounds - keep solid */
.faq-hero-bg-gradient,
.faq-hero-bg-shape-1,
.faq-hero-bg-shape-2 {
  display: none;
}

/* Container */
.faq-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
}

/* ============================================ */
/* FAQ HERO - BOTTOM IMAGE WAVE LAYOUT */
/* ============================================ */

.faq-hero-wave {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 3rem;
  position: relative;
}

/* Top Text Content - Centered */
.faq-hero-top {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faq-hero-top .faq-hero-content {
  max-width: 800px;
  width: 100%;
}

.faq-hero-top .faq-hero-badge {
  justify-content: center;
}

.faq-hero-top .faq-hero-divider {
  margin-left: auto;
  margin-right: auto;
}

.faq-hero-top .faq-hero-description {
  margin-left: auto;
  margin-right: auto;
}

.faq-hero-top .faq-hero-stats {
  justify-content: center;
}

.faq-hero-top .faq-hero-search {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Search Bar - Desktop (row layout) */
.faq-hero-search {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border-radius: 60px;
  padding: 0.5rem 0.5rem 0.5rem 1.2rem;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-medium);
  transition: all 0.3s ease;
  position: relative;
}

.faq-hero-search i {
  color: var(--gray-text);
  font-size: 1rem;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.faq-hero-search input {
  flex: 1;
  border: none;
  padding: 0.8rem 1rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  background: transparent;
  outline: none;
  position: relative;
  z-index: 2;
}

.faq-hero-search button {
  background: var(--deluxe-red);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.faq-hero-search button:hover {
  background: #a3340a;
  transform: translateY(-2px);
}

/* Bottom Banner Section */
.faq-hero-bottom {
  position: relative;
  margin-top: auto;
  width: 100%;
}

/* Wave Curve - Matching solid background */
.faq-hero-wave-curve {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
}

.faq-hero-wave-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Banner Container - Solid background matching section */
.faq-hero-banner {
  background: var(--bg-white);
  border-radius: 24px 24px 0 0;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--gray-medium);
}

.faq-hero-banner-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-hero-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-hero-banner-item:hover {
  transform: translateY(-5px);
}

.faq-hero-banner-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.faq-hero-banner-item:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 12px 24px rgba(194, 65, 12, 0.2));
}

.faq-hero-banner-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.faq-hero-banner-item:hover .faq-hero-banner-label {
  color: var(--deluxe-red);
}

/* ============================================ */
/* RESPONSIVE - BOTTOM WAVE LAYOUT */
/* ============================================ */

@media (max-width: 1024px) {
  .faq-hero-wave {
    padding: 2rem 2rem 0;
  }

  .faq-hero-banner-container {
    gap: 1.5rem;
  }

  .faq-hero-banner-item img {
    width: 65px;
    height: 65px;
  }

  .faq-hero-banner-label {
    font-size: 0.65rem;
  }

  .faq-hero-wave-curve {
    top: -40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100vw;
  }

  .faq-hero-container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .faq-hero-wave {
    padding: 1rem 1rem 0;
    justify-content: flex-start;
  }

  .faq-hero-top {
    margin-top: 1rem;
  }

  .faq-hero-top .faq-hero-title {
    font-size: 1.8rem;
  }

  .faq-hero-top .faq-hero-description {
    font-size: 0.85rem;
  }

  .faq-hero-top .faq-hero-stats {
    gap: 1rem;
  }

  .faq-hero-top .faq-hero-stat-number {
    font-size: 1.3rem;
  }

  .faq-hero-top .faq-hero-stat-label {
    font-size: 0.6rem;
  }

  /* Search Bar - Mobile (column layout - button under input) */
  .faq-hero-search {
    flex-direction: column;
    background: white;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.1);
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid var(--gray-medium);
    max-width: 400px;
  }

  .faq-hero-search i {
    display: none;
  }

  .faq-hero-search input {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    border: 1px solid var(--gray-medium);
    border-radius: 40px;
    background: var(--bg-white);
  }

  .faq-hero-search button {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }

  /* Bottom banner - reduced margin and padding */
  .faq-hero-bottom {
    margin-top: 1rem;
    margin-bottom: 0;
  }

  .faq-hero-banner {
    padding: 0.8rem 0.5rem;
  }

  /* Only show 4 images on tablet/mobile */
  .faq-hero-banner-item:nth-child(5) {
    display: none;
  }

  .faq-hero-banner-container {
    gap: 1rem;
    justify-content: center;
  }

  .faq-hero-banner-item img {
    width: 60px;
    height: 60px;
  }

  .faq-hero-banner-label {
    font-size: 0.6rem;
  }

  .faq-hero-wave-curve {
    top: -30px;
    height: 30px;
  }
}

@media (max-width: 550px) {
  .faq-hero-wave {
    padding: 0.8rem 0.8rem 0;
  }

  .faq-hero-top {
    margin-top: 0.5rem;
  }

  .faq-hero-bottom {
    margin-top: 0.8rem;
  }

  .faq-hero-banner {
    padding: 0.6rem 0.3rem;
  }

  /* Only show 4 images - slightly larger */
  .faq-hero-banner-item:nth-child(5) {
    display: none;
  }

  .faq-hero-banner-container {
    gap: 0.8rem;
  }

  .faq-hero-banner-item img {
    width: 55px;
    height: 55px;
  }

  .faq-hero-banner-label {
    font-size: 0.55rem;
  }

  .faq-hero-search {
    padding: 0.8rem;
    gap: 0.6rem;
  }

  .faq-hero-search input {
    padding: 0.7rem 0.8rem;
    font-size: 0.8rem;
  }

  .faq-hero-search button {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .faq-hero-wave {
    padding: 0.5rem 0.8rem 0;
  }

  .faq-hero-top .faq-hero-title {
    font-size: 1.5rem;
  }

  .faq-hero-top .faq-hero-description {
    font-size: 0.75rem;
  }

  .faq-hero-bottom {
    margin-top: 0.5rem;
  }

  .faq-hero-banner {
    padding: 0.5rem 0.2rem;
  }

  /* Only show 4 images - larger size on small screens */
  .faq-hero-banner-item:nth-child(5) {
    display: none;
  }

  .faq-hero-banner-container {
    gap: 0.6rem;
  }

  .faq-hero-banner-item img {
    width: 50px;
    height: 50px;
  }

  .faq-hero-wave-curve {
    top: -25px;
    height: 25px;
  }

  .faq-hero-search {
    padding: 0.7rem;
    gap: 0.5rem;
  }

  .faq-hero-search input {
    padding: 0.6rem 0.7rem;
    font-size: 0.75rem;
  }

  .faq-hero-search button {
    padding: 0.5rem 0.7rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 380px) {
  .faq-hero-bottom {
    margin-top: 0.3rem;
  }

  .faq-hero-banner-item img {
    width: 45px;
    height: 45px;
  }

  .faq-hero-banner-label {
    font-size: 0.5rem;
  }

  .faq-hero-banner {
    padding: 0.4rem 0.2rem;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .faq-hero-banner-item,
  .faq-hero-banner-item img {
    transition: none;
  }

  .faq-hero-banner-item:hover {
    transform: none;
  }

  .faq-hero-banner-item:hover img {
    transform: none;
  }
}

@media (max-width: 768px) {
  .faq-hero {
    height: auto;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 100vw;
  }

  .faq-hero-wave {
    padding: 1rem 1rem 0;
    justify-content: flex-start;
  }

  .faq-hero-top {
    margin-top: 1rem;
    margin-bottom: 0;
  }

  .faq-hero-top .faq-hero-title {
    font-size: 1.8rem;
  }

  .faq-hero-top .faq-hero-description {
    font-size: 0.85rem;
  }

  .faq-hero-top .faq-hero-stats {
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .faq-hero-top .faq-hero-stat-number {
    font-size: 1.3rem;
  }

  .faq-hero-top .faq-hero-stat-label {
    font-size: 0.6rem;
  }

  /* Search Bar - Mobile (column layout - button under input) */
  .faq-hero-search {
    flex-direction: column;
    background: white;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.1);
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid var(--gray-medium);
    max-width: 400px;
    margin-bottom: 1rem;
  }

  .faq-hero-search i {
    display: none;
  }

  .faq-hero-search input {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    border: 1px solid var(--gray-medium);
    border-radius: 40px;
    background: var(--bg-white);
  }

  .faq-hero-search button {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }

  /* Bottom banner - moved DOWN, reduced white space */
  .faq-hero-bottom {
    position: relative;
    margin-top: 2rem;
    margin-bottom: 0;
    width: 100%;
  }

  /* Wave curve - adjust positioning */
  .faq-hero-wave-curve {
    top: -30px;
    height: 30px;
  }

  /* Banner container - compact */
  .faq-hero-banner {
    padding: 0.5rem 0.5rem;
    border-top: 1px solid var(--gray-medium);
  }

  /* Only show 4 images on tablet/mobile */
  .faq-hero-banner-item:nth-child(5) {
    display: none;
  }

  .faq-hero-banner-container {
    gap: 1rem;
    justify-content: center;
    padding: 0.5rem 0;
  }

  .faq-hero-banner-item img {
    width: 65px;
    height: 65px;
  }

  .faq-hero-banner-label {
    font-size: 0.6rem;
    margin-top: 0.25rem;
  }
}

@media (max-width: 550px) {
  .faq-hero-wave {
    padding: 0.5rem 0.8rem 0;
  }

  .faq-hero-top {
    margin-top: 0.5rem;
  }

  .faq-hero-bottom {
    margin-top: 1.5rem;
  }

  .faq-hero-banner {
    padding: 0.3rem 0.3rem;
  }

  /* Only show 4 images - slightly larger */
  .faq-hero-banner-item:nth-child(5) {
    display: none;
  }

  .faq-hero-banner-container {
    gap: 0.8rem;
    padding: 0.3rem 0;
  }

  .faq-hero-banner-item img {
    width: 58px;
    height: 58px;
  }

  .faq-hero-banner-label {
    font-size: 0.55rem;
  }

  .faq-hero-search {
    padding: 0.8rem;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
  }

  .faq-hero-search input {
    padding: 0.7rem 0.8rem;
    font-size: 0.8rem;
  }

  .faq-hero-search button {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }

  .faq-hero-wave-curve {
    top: -25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .faq-hero-wave {
    padding: 0.3rem 0.8rem 0;
  }

  .faq-hero-top .faq-hero-title {
    font-size: 1.5rem;
  }

  .faq-hero-top .faq-hero-description {
    font-size: 0.75rem;
  }

  .faq-hero-bottom {
    margin-top: 1rem;
  }

  .faq-hero-banner {
    padding: 0.2rem 0.2rem;
  }

  /* Only show 4 images - larger size on small screens */
  .faq-hero-banner-item:nth-child(5) {
    display: none;
  }

  .faq-hero-banner-container {
    gap: 0.6rem;
    padding: 0.2rem 0;
  }

  .faq-hero-banner-item img {
    width: 52px;
    height: 52px;
  }

  .faq-hero-wave-curve {
    top: -20px;
    height: 20px;
  }

  .faq-hero-search {
    padding: 0.7rem;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .faq-hero-search input {
    padding: 0.6rem 0.7rem;
    font-size: 0.75rem;
  }

  .faq-hero-search button {
    padding: 0.5rem 0.7rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 380px) {
  .faq-hero-bottom {
    margin-top: 0.8rem;
  }

  .faq-hero-banner {
    padding: 0.15rem 0.15rem;
  }

  .faq-hero-banner-item img {
    width: 48px;
    height: 48px;
  }

  .faq-hero-banner-label {
    font-size: 0.5rem;
  }

  .faq-hero-banner-container {
    gap: 0.5rem;
    padding: 0.15rem 0;
  }
}
