/* ====================================================================
   Home AV Solutions (India) — page-specific styles
   ==================================================================== */

/* Two-column checklist */
.auto-checklist--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
@media (max-width: 575px) {
  .auto-checklist--2col {
    grid-template-columns: 1fr;
  }
}

/* ---------- Installation process slider ---------- */
.av-slider {
  max-width: 1200px;
  margin: 0 auto;
}

.av-slider-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.av-slider-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.av-slide {
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
}
@media (max-width: 991px) {
  .av-slide {
    flex-basis: calc((100% - 22px) / 2);
  }
}
@media (max-width: 640px) {
  .av-slide {
    flex-basis: 100%;
  }
}

/* Step card */
.av-step {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 26px;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.av-step:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.45),
    0 0 22px rgba(201, 168, 76, 0.08);
}
.av-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.av-step-num {
  font-family: var(--font-primary);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 168, 76, 0.25);
}
.av-step-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 38, 18, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #c9a84c;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.av-step-title {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
}
.av-step-desc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0 0 18px;
}
.av-step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.av-step-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  /* font-size: 0.88rem; */
  line-height: 1.4;
}
.av-step-list li i {
  color: #c9a84c;
  font-size: 0.72rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Slider controls */
.av-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}
.av-slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #c9a84c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.av-slider-btn:hover:not(:disabled) {
  background: #c9a84c;
  color: #080808;
  border-color: #c9a84c;
}
.av-slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.av-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.av-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.av-dot.active {
  background: #c9a84c;
  width: 26px;
  border-radius: 100px;
}

/* ---------- Brand pills ---------- */
.av-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}
.av-brand {
  padding: 12px 26px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}
.av-brand:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: #c9a84c;
  color: #c9a84c;
}

/* ---------- FAQ accordion ---------- */
.av-faq {
  /* max-width: 860px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.av-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.av-faq-item.open {
  border-color: rgba(201, 168, 76, 0.45);
}
.av-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.av-faq-q i {
  color: #c9a84c;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.av-faq-item.open .av-faq-q i {
  transform: rotate(180deg);
}
.av-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.av-faq-a p {
  margin: 0;
  padding: 0 22px 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ---------- Final CTA ---------- */
.av-final-cta {
  position: relative;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.av-final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.av-final-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.av-final-cta-inner .auto-hero-title {
  white-space: normal;
}
.av-final-cta-inner .auto-hero-actions {
  justify-content: center;
}
.av-final-cta-inner .auto-hero-desc {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .av-final-cta {
    background-attachment: scroll;
    padding: 4rem 0;
  }
  .av-final-cta-inner .auto-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
