*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #e8001c; /* DTDC logo red   */
  --dark: #002d72; /* DTDC logo navy  */
  --mid: #1a4fa8; /* DTDC mid blue   */
  --yellow: #ffc107; /* accent / stars  */
  --light: #f0f4ff; /* tinted page bg  */
  --grey: #6c757d;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  color: #333;
  background: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
}

/* ─── NAV ─────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 45, 114, 0.97);
  backdrop-filter: blur(10px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-brand span {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  display: block;
}
.nav-brand small {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 600;
  display: block;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--yellow);
}

.nav-cta {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
}
.nav-cta:hover {
  background: #c50018;
  transform: translateY(-1px);
}

/* ─── HAMBURGER ───────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1100;
}
.hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition:
    transform 0.35s ease,
    opacity 0.25s ease,
    width 0.3s ease;
}
.hamburger span:nth-child(3) {
  width: 65%;
}

/* animated → X */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  width: 100%;
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE DRAWER ───────────────────── */
.mobile-menu {
  position: fixed;
  top: 70px;
  right: 0;
  height: calc(100vh - 70px);
  width: 280px;
  background: var(--dark);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.3);
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 20px 0;
  flex: 1;
}
.mob-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 28px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.mob-link i {
  width: 18px;
  text-align: center;
  color: var(--yellow);
  font-size: 0.9rem;
}
.mob-link:hover,
.mob-link.active-link {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--red);
}

.mob-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mob-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}
.mob-call:hover {
  background: #c50018;
}
.mob-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
}
.mob-wa:hover {
  background: #1ebe5d;
}

/* overlay behind drawer */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  backdrop-filter: blur(2px);
}
.mob-overlay.show {
  display: block;
}

/* ─── HERO ────────────────────────────── */
.hero {
  min-height: 100vh;
  background: #002d72;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5% 80px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* dark gradient overlay sits above slider images */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      135deg,
      rgba(0, 45, 114, 0.88) 0%,
      rgba(26, 79, 168, 0.78) 100%
    ),
    radial-gradient(
      ellipse 60% 50% at 70% 50%,
      rgba(232, 0, 28, 0.18) 0%,
      transparent 70%
    );
}

/* ── Slider ───────────────────────────── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active {
  opacity: 1;
}

/* ── Arrows ───────────────────────────── */
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    transform 0.25s;
  backdrop-filter: blur(6px);
}
.slider-arrow:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.08);
}
.slider-arrow.prev {
  left: 22px;
}
.slider-arrow.next {
  right: 22px;
}

/* ── Dots ─────────────────────────────── */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: var(--red);
  width: 28px;
  border-radius: 5px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 0, 28, 0.15);
  border: 1px solid rgba(232, 0, 28, 0.4);
  color: #ff6b6b;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge i {
  font-size: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--red);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  margin-inline: auto;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(232, 0, 28, 0.4);
}
.btn-primary:hover {
  background: #c50018;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 0, 28, 0.5);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat {
}
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* floating cards */
.hero-visual {
  display: none;
}
.float-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 24px;
  color: #fff;
  min-width: 220px;
  animation: float 4s ease-in-out infinite;
}
.float-card:nth-child(2) {
  animation-delay: 1.5s;
  margin-left: 30px;
}
.float-card:nth-child(3) {
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-card .fc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.fc-red {
  background: rgba(232, 0, 28, 0.2);
  color: #ff6b6b;
}
.fc-yellow {
  background: rgba(255, 193, 7, 0.2);
  color: var(--yellow);
}
.fc-green {
  background: rgba(40, 167, 69, 0.2);
  color: #5dde7c;
}

.float-card strong {
  font-size: 0.95rem;
  font-weight: 700;
  display: block;
}
.float-card span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ─── TRACK BANNER ───────────────────── */
.track-banner {
  background: var(--red);
  padding: 28px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.track-banner h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}
.track-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 2px;
}
.track-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 520px;
}
.track-form input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.track-form button {
  background: var(--dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.track-form button:hover {
  background: #1a4fa8;
}

/* ─── SECTION COMMON ─────────────────── */
section {
  padding: 90px 5%;
}

.section-tag {
  display: inline-block;
  background: rgba(232, 0, 28, 0.1);
  color: var(--red);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 14px;
}
.section-title span {
  color: var(--red);
}

.section-sub {
  font-size: 1rem;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}
.text-center {
  text-align: center;
}
.text-center .section-sub {
  margin-inline: auto;
}

/* ─── SERVICES ───────────────────────── */
.services {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}
.service-card:hover::after {
  transform: scaleX(1);
}

.s-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.bg-red {
  background: rgba(232, 0, 28, 0.1);
  color: var(--red);
}
.bg-blue {
  background: rgba(0, 45, 114, 0.12);
  color: #002d72;
}
.bg-yellow {
  background: rgba(255, 193, 7, 0.15);
  color: #d4a000;
}
.bg-green {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.bg-purple {
  background: rgba(111, 66, 193, 0.1);
  color: #6f42c1;
}
.bg-teal {
  background: rgba(32, 201, 151, 0.1);
  color: #20c997;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ─── WHY US ─────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}
.why-text p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
}

.why-visual {
  background: linear-gradient(135deg, var(--dark) 0%, #1a4fa8 100%);
  border-radius: 24px;
  padding: 48px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(232, 0, 28, 0.15);
}
.why-visual h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.why-visual p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cov-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
}
.cov-item i {
  color: var(--yellow);
  font-size: 1rem;
}
.cov-item span {
  font-size: 0.9rem;
}

/* ─── HOW IT WORKS ───────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 36px 28px;
  position: relative;
}

.step-num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(232, 0, 28, 0.08);
  line-height: 1;
  margin-bottom: -10px;
  font-family: "Inter", sans-serif;
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(232, 0, 28, 0.3);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 92px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  z-index: 0;
}

/* ─── STATS COUNTER ──────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a4fa8 100%);
  padding: 60px 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stat-box {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-box:last-child {
  border-right: none;
}

.stat-box i {
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 14px;
  display: block;
}

.counter {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─── TESTIMONIALS ───────────────────── */
.testimonials {
  background: var(--light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  position: relative;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.review-card.featured {
  background: linear-gradient(135deg, var(--dark) 0%, #1a4fa8 100%);
  border-color: transparent;
  color: #fff;
}
.review-card.featured .review-text {
  color: rgba(255, 255, 255, 0.85);
}
.review-card.featured .reviewer strong {
  color: #fff;
}
.review-card.featured .reviewer span {
  color: rgba(255, 255, 255, 0.55);
}

.review-stars {
  color: var(--yellow);
  font-size: 0.95rem;
  margin-bottom: 16px;
  gap: 3px;
  display: flex;
}

.review-text {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark), var(--red));
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 0.92rem;
  color: var(--dark);
  font-weight: 700;
}
.reviewer span {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ─── CTA BANNER ─────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #c50018 100%);
  padding: 56px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.cta-content h2 span {
  color: var(--yellow);
}
.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn-white {
  background: #fff;
  color: var(--red);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.cta-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-btn-green {
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.cta-btn-green:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* ─── FAQ ────────────────────────────── */
#faq {
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.active {
  border-color: var(--red);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  transition: color 0.2s;
}
.faq-item.active .faq-q {
  color: var(--red);
}

.faq-q i {
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--grey);
}
.faq-item.active .faq-q i {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.active .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}
.faq-a a {
  color: var(--red);
  font-weight: 600;
}

/* ─── CONTACT ────────────────────────── */
.contact {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.2s;
}
.info-card:hover {
  transform: translateX(4px);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-card h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.info-card p,
.info-card a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.5;
}
.info-card a:hover {
  color: var(--red);
}

.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-form-wrap p {
  font-size: 0.88rem;
  color: var(--grey);
  margin-bottom: 28px;
}

.form-status {
  display: none;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-status.show {
  display: block;
}
.form-status.success {
  color: #19692c;
  background: #d4edda;
  border: 1px solid #c3e6cb;
}
.form-status.error {
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover {
  background: #c50018;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 0, 28, 0.4);
}
.btn-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ─── MAP ────────────────────────────── */
.map-section {
  padding: 0;
}
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  filter: grayscale(20%);
}

/* ─── FOOTER ─────────────────────────── */
footer {
  background: var(--dark);
  padding: 60px 5% 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 10px;
}

.footer-col h5 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-links a:hover {
  background: var(--red);
  color: #fff;
}

/* ─── FLOATING CALL BUTTON ───────────── */
.float-call {
  position: fixed;
  bottom: 88px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  overflow: hidden;
  max-width: 54px;
  flex-direction: row-reverse;
}
.float-call i {
  font-size: 1.2rem;
  flex-shrink: 0;
  animation: ring 2s ease-in-out infinite;
}
.float-call-label {
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  transition:
    opacity 0.3s ease,
    max-width 0.3s ease;
  overflow: hidden;
}
.float-call:hover {
  max-width: 160px;
  padding-left: 22px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
}
.float-call:hover .float-call-label {
  opacity: 1;
  max-width: 120px;
}

/* pulse ring animation */
.float-call::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25d366;
  animation: pulse-ring 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-20deg);
  }
  20% {
    transform: rotate(20deg);
  }
  30% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

/* ─── SCROLL TO TOP ──────────────────── */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 0, 28, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  text-decoration: none;
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  transform: translateY(-3px);
}

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 900px) {
  .hero-visual {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .step-connector {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-box:nth-child(3) {
    border-right: none;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }

  /* show hamburger, hide desktop nav & cta */
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 24px;
  }
  .track-form {
    flex-direction: column;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .stat-box:last-child {
    border-bottom: none;
  }

  /* prevent any section from overflowing */
  section,
  footer,
  nav,
  .track-banner,
  .cta-banner,
  .stats-section,
  .map-section {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* clamp paddings so content doesn't push width */
  section {
    padding: 60px 4%;
  }
  .why-visual {
    padding: 32px 20px;
  }
  .contact-form-wrap {
    padding: 24px 18px;
  }
  .cta-banner {
    padding: 40px 5%;
  }
  .stats-section {
    padding: 40px 4%;
  }
  .float-call {
    bottom: 80px;
    right: 16px;
  }
  .scroll-top {
    bottom: 28px;
    right: 16px;
  }
}
