/* ============================================================================
   HOMEPAGE SECTIONS
   ----------------------------------------------------------------------------
   Hero (split + booking card), trust bar, services, why-choose-us, industries,
   stats band, process, testimonials, FAQ and the pre-footer CTA band.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   HERO SLIDER — full-width Swiper hero (replaces the split hero + form).
   Reuses the same navy overlay, typography tokens and button styles so the
   design language is unchanged.
   -------------------------------------------------------------------------- */
.hero-slider {
  position: relative;
  background-color: var(--color-navy);
  overflow-x: hidden;
}

.hero-swiper {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-color: var(--color-navy);
  overflow: hidden;
}

/* Background image + dark overlay (identical gradient to the original hero). */
.hero-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(16, 48, 74, 0.94) 0%,
    rgba(16, 48, 74, 0.86) 45%,
    rgba(11, 35, 53, 0.7) 100%
  );
}

.hero-slide__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 60px 0;
}
.hero-slide__content .eyebrow {
  color: var(--color-accent);
  margin-bottom: 18px;
}
.hero-slide__content h1 {
  color: #fff;
  margin-bottom: 20px;
}
.hero-slide__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  max-width: 600px;
  margin-bottom: 32px;
}
.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* Outline + ghost buttons get a light treatment on the dark slide. */
.hero-slide .btn-outline-pci {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.hero-slide .btn-outline-pci:hover,
.hero-slide .btn-outline-pci:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.hero-slide .btn-ghost-pci {
  color: #fff;
}

/* Navigation arrows. */
.hero-swiper__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base),
    transform var(--transition-base);
}
.hero-swiper__nav:hover,
.hero-swiper__nav:focus-visible {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-navy);
}
.hero-swiper__prev {
  left: 28px;
}
.hero-swiper__next {
  right: 28px;
}

/* Navigation dots. */
.hero-swiper__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  z-index: 6;
  text-align: center;
}
.hero-swiper__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.45;
  transition:
    opacity var(--transition-base),
    width var(--transition-base),
    background-color var(--transition-base);
}
.hero-swiper__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  border-radius: 6px;
  background: var(--color-accent);
}

/* Responsive: redesign heights and stack actions on smaller screens. */
@media (max-width: 991.98px) {
  .hero-slide {
    min-height: 520px;
  }
  .hero-slide__content {
    padding: 48px 0;
    max-width: 620px;
  }
}
@media (max-width: 767.98px) {
  .hero-slide {
    min-height: 500px;
  }
  /* Extra bottom padding keeps copy clear of the navigation dots. */
  .hero-slide__content {
    padding: 52px 0 72px;
  }
  .hero-slide__content h1 {
    margin-bottom: 16px;
  }
  .hero-slide__content p {
    font-size: 1rem;
    margin-bottom: 26px;
  }
  .hero-slide__actions {
    gap: 12px;
  }
  /* Full-width, thumb-friendly stacked buttons. */
  .hero-slide__actions .btn-pci {
    width: 100%;
  }
  /* Arrows overlap the copy on narrow screens — dots + swipe remain. */
  .hero-swiper__nav {
    display: none;
  }
  .hero-swiper__pagination {
    bottom: 26px;
  }
}
@media (max-width: 575.98px) {
  .hero-slide {
    min-height: 460px;
  }
  .hero-slide__content {
    padding: 44px 0 64px;
  }
}

/* ----------------------------------------------------------------------------
   PAGE HERO — shared static hero for interior pages (About, Contact, ...).
   Mirrors the site's navy overlay hero; reuses tokens and button styles.
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background-color: var(--color-navy);
  overflow: hidden;
  padding: 112px 0 88px;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(16, 48, 74, 0.95) 0%,
    rgba(16, 48, 74, 0.88) 45%,
    rgba(11, 35, 53, 0.72) 100%
  );
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.page-hero__content .eyebrow {
  color: var(--color-accent);
  margin-bottom: 16px;
}
.page-hero__content h1 {
  color: #fff;
  margin-bottom: 18px;
}
.page-hero__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  max-width: 660px;
  margin-bottom: 30px;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.page-hero .btn-outline-pci {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.page-hero .btn-outline-pci:hover,
.page-hero .btn-outline-pci:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
@media (max-width: 991.98px) {
  .page-hero {
    padding: 84px 0 64px;
  }
}
@media (max-width: 767.98px) {
  .page-hero {
    padding: 64px 0 52px;
  }
  .page-hero__content p {
    font-size: 1rem;
  }
  .page-hero__actions .btn-pci {
    width: 100%;
  }
}

/* ----------------------------------------------------------------------------
   TRUST / CLIENTS BAR
   -------------------------------------------------------------------------- */
.trustbar {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 30px 0;
}
.trustbar__label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}
.trustbar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 40px;
}
.trustbar__logos .chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  opacity: 0.62;
  transition: opacity var(--transition-base);
}
.trustbar__logos .chip i {
  color: var(--color-primary);
  font-size: 1.2rem;
}
.trustbar__logos .chip:hover {
  opacity: 1;
}

/* ----------------------------------------------------------------------------
   ABOUT / WHY-CHOOSE-US split
   -------------------------------------------------------------------------- */
.about__media {
  position: relative;
  border-radius: var(--radius-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-md);
  aspect-ratio: 4 / 3.4;
  background: linear-gradient(135deg, var(--color-primary), var(--color-navy));
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow-card-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about__badge .num {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 2rem;
  color: var(--color-primary);
  line-height: 1;
}
.about__badge .lbl {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}

/* ----------------------------------------------------------------------------
   STATISTICS BAND
   -------------------------------------------------------------------------- */
.stats-band {
  background-color: var(--color-navy);
  background-image:
    radial-gradient(
      circle at 12% 20%,
      rgba(0, 90, 169, 0.5) 0%,
      transparent 42%
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(156, 212, 78, 0.16) 0%,
      transparent 40%
    );
  color: #fff;
}

/* ----------------------------------------------------------------------------
   PROCESS / HOW IT WORKS
   -------------------------------------------------------------------------- */
.process-step {
  position: relative;
  padding: 32px 26px;
  text-align: center;
}
.process-step .step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-navy));
}
.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.92rem;
  margin: 0;
}
.process-row {
  position: relative;
}
.process-row::before {
  content: "";
  position: absolute;
  top: 85px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-border) 0 10px,
    transparent 10px 20px
  );
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------------------
   TESTIMONIALS (Swiper)
   -------------------------------------------------------------------------- */
.testi-swiper {
  padding: 10px 6px 60px;
}
.testi-swiper .swiper-slide {
  height: auto;
}
.swiper-pagination-bullet {
  background: var(--color-primary);
  opacity: 0.25;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-accent);
}

/* ----------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}
.faq-item.is-open {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-card-sm);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: 1.05rem;
  color: var(--color-navy);
}
.faq-trigger .faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition:
    transform var(--transition-base),
    background-color var(--transition-base),
    color var(--transition-base);
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-primary);
  color: #fff;
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}
.faq-panel__inner {
  padding: 0 24px 22px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ----------------------------------------------------------------------------
   PRE-FOOTER CTA BAND  ("Ready to Protect Your Business?")
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: linear-gradient(
    120deg,
    var(--color-navy) 0%,
    var(--color-primary) 120%
  );
  color: #fff;
  border-radius: var(--radius-card-lg);
  padding: 64px 56px;
  overflow: hidden;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  /* subtle abstract pattern, no distraction */
}
.cta-band::before {
  width: 360px;
  height: 360px;
  right: -120px;
  top: -160px;
  background: rgba(255, 255, 255, 0.05);
}
.cta-band::after {
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: -150px;
  background: rgba(156, 212, 78, 0.1);
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0;
}
.cta-band__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
