*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #e02020;
  --dark-red: #b01010;
  --orange: #ff6b35;
  --navy: #0a1628;
  --dark: #0d1b2a;
  --light: #f4f7fc;
  --white: #ffffff;
  --gray: #6b7280;
  --card-bg: #ffffff;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(
    90deg,
    rgba(7, 14, 30, 0.98) 0%,
    rgba(15, 26, 50, 0.98) 100%
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  border-bottom: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}

/* animated glowing top accent line */
nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--red));
  background-size: 200% 100%;
  animation: nav-glow-move 3s linear infinite;
}
@keyframes nav-glow-move {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

/* subtle glowing bottom separator */
nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 32, 32, 0.5),
    transparent
  );
}

/* -- Logo -- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--red), #ff4444);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  animation: logo-pulse 2.5s ease-in-out infinite;
  position: relative;
  transition: transform 0.3s;
}
.nav-logo:hover .logo-icon {
  transform: scale(1.08) rotate(-4deg);
}

@keyframes logo-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(224, 32, 32, 0.55);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(224, 32, 32, 0);
  }
}
.nav-logo .logo-text {
  line-height: 1.2;
}
.nav-logo .logo-text span:first-child {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.3px;
}
.nav-logo .logo-text span:last-child {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: #e0c47a;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* -- Nav links -- */
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  align-items: center;
}
.nav-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  transition:
    color 0.3s,
    background 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
}
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-links li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}
.nav-links li a:hover::after {
  transform: scaleX(1);
}

.nav-links li a.active {
  color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
}
.nav-links li a.active::after {
  transform: scaleX(1);
}

/* -- Right actions -- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0 4px;
}
.nav-phone i {
  color: var(--orange);
}

.nav-wa {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-wa:hover {
  background: #25d366;
  color: #fff;
  transform: translateY(-2px);
}

.nav-cta {
  background: linear-gradient(135deg, var(--red), #ff4444);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(224, 32, 32, 0.45);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent);
  border-radius: 50px;
}
.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(224, 32, 32, 0.55);
}
.nav-cta i {
  animation: ring-shake 2s ease-in-out infinite;
}

@keyframes ring-shake {
  0%,
  90%,
  100% {
    transform: rotate(0);
  }
  92% {
    transform: rotate(-15deg);
  }
  96% {
    transform: rotate(15deg);
  }
}

/* -- Hamburger -- */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}
.hamburger:hover {
  background: rgba(224, 32, 32, 0.4);
}

/* ════════════════════════════════════════
   HERO SLIDER
════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 76px;
  padding: 0;
}
.slides {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.slide:nth-child(1) .slide-bg {
  background: linear-gradient(135deg, #e02020 0%, #0a1628 60%), url("");
  background-blend-mode: multiply;
}
.slide:nth-child(2) .slide-bg {
  background: linear-gradient(135deg, #0a1628 0%, #e02020 60%);
}
.slide:nth-child(3) .slide-bg {
  background: linear-gradient(135deg, #1a2a4a 0%, #b01010 60%);
}
.slide:nth-child(4) .slide-bg {
  background: linear-gradient(135deg, #071525 0%, #ff6b35 60%);
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 50%,
    rgba(224, 32, 32, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 860px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-badge {
  display: inline-block;
  background: rgba(224, 32, 32, 0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.slide-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
}
.slide-title span {
  color: var(--orange);
}

.slide-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.slide-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(224, 32, 32, 0.45);
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--dark-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(224, 32, 32, 0.55);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Slider controls */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(224, 32, 32, 0.75);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    transform 0.3s;
  backdrop-filter: blur(4px);
}
.slider-prev {
  left: 24px;
}
.slider-next {
  right: 24px;
}
.slider-prev:hover,
.slider-next:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.dot.active {
  background: var(--red);
  border-color: #fff;
  transform: scale(1.25);
}

/* ════════════════════════════════════════
   TICKER
════════════════════════════════════════ */
.ticker-wrap {
  background: var(--red);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
  border-bottom: 3px solid var(--dark-red);
}
.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-item {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ticker-item i {
  color: #ffe0b2;
}

/* ════════════════════════════════════════
   SECTION COMMON
════════════════════════════════════════ */
section {
  padding: 90px 6%;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(224, 32, 32, 0.12);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(224, 32, 32, 0.25);
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-title span {
  color: var(--red);
}
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
#services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(224, 32, 32, 0.15);
  border-color: rgba(224, 32, 32, 0.2);
}
.service-card:hover .svc-icon {
  background: var(--red);
  color: #fff;
  transform: rotateY(180deg);
}

.svc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(224, 32, 32, 0.1);
  color: var(--red);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  box-shadow: 0 4px 12px rgba(224, 32, 32, 0.15);
}
.svc-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(224, 32, 32, 0.06);
  line-height: 1;
}
.svc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.svc-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}
.svc-link:hover {
  gap: 14px;
}

.badge-urgent {
  position: absolute;
  top: 14px;
  left: 20px;
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ════════════════════════════════════════
   STATS
════════════════════════════════════════ */
#stats {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2a4a 100%);
  padding: 70px 6%;
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(224, 32, 32, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
}
.stat-card {
  text-align: center;
}
.stat-num {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ════════════════════════════════════════
   WHY US
════════════════════════════════════════ */
#why {
  background: var(--light);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), #1a3a6a);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.why-visual > div:first-child {
  position: absolute;
  inset: 0;
}
.why-visual > div:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-visual .big-icon {
  font-size: 9rem;
  color: rgba(224, 32, 32, 0.25);
}
.why-visual .pulse-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 3px solid rgba(224, 32, 32, 0.25);
  animation: pulse-ring 2.5s ease-out infinite;
}
.why-visual .pulse-ring:nth-child(2) {
  animation-delay: 0.8s;
}
.why-visual .pulse-ring:nth-child(3) {
  animation-delay: 1.6s;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.why-floater {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 12px 18px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-floater i {
  color: var(--orange);
  font-size: 1.1rem;
}
.why-floater.f1 {
  top: 24px;
  left: 24px;
}
.why-floater.f2 {
  bottom: 24px;
  right: 24px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-point .wp-icon {
  min-width: 52px;
  height: 52px;
  background: rgba(224, 32, 32, 0.1);
  color: var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.wp-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.wp-text p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   COVERAGE
════════════════════════════════════════ */
#coverage {
  background: var(--white);
  text-align: center;
}
.coverage-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}
.cov-card {
  background: var(--light);
  border: 2px solid rgba(224, 32, 32, 0.18);
  border-radius: 14px;
  padding: 14px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.cov-card i {
  color: var(--red);
}
.cov-card:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-4px);
}
.cov-card:hover i {
  color: #fff;
}

/* ════════════════════════════════════════
   PROCESS
════════════════════════════════════════ */
#process {
  background: var(--light);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
  border-radius: 2px;
  z-index: 0;
}
.step-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(224, 32, 32, 0.12);
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(224, 32, 32, 0.35);
}
.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
#testimonials {
  background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border-left: 4px solid var(--red);
  transition: all 0.3s;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(224, 32, 32, 0.12);
}
.testi-stars {
  color: #f59e0b;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.testi-text {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}
.testi-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}
.testi-loc {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
#contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-form-wrap {
  background: #fff;
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-wrap .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.97rem;
  font-family: inherit;
  outline: none;
  transition: border 0.2s;
  box-sizing: border-box;
}
.contact-form-wrap .form-control:focus {
  border-color: #e63946;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-info p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}
.cinfo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cinfo-icon {
  min-width: 50px;
  height: 50px;
  background: rgba(224, 32, 32, 0.1);
  color: var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.cinfo-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 3px;
}
.cinfo-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.emergency-box {
  background: linear-gradient(135deg, var(--red), var(--dark-red));
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}
.emergency-box h4 {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.85;
  margin-bottom: 6px;
}
.emergency-box .phone-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--light);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(224, 32, 32, 0.1);
}
.btn-submit {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(224, 32, 32, 0.35);
  transition: all 0.3s;
  width: 100%;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(224, 32, 32, 0.45);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 6% 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-text span:first-child {
  color: #fff;
  font-size: 1.1rem;
}
.footer-brand .logo-text span:last-child {
  color: #e0c47a;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(224, 32, 32, 0.4);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover {
  color: var(--orange);
}
.footer-col ul li a i {
  font-size: 0.7rem;
  color: var(--red);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}
.footer-bottom span {
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a {
  color: var(--orange);
  text-decoration: none;
}

/* ════════════════════════════════════════
   ONLOAD POPUP
════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(7, 14, 30, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s,
    visibility 0.4s;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px 32px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1rem;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.popup-close:hover {
  background: var(--red);
  color: #fff;
}
.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 32, 32, 0.08);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.popup-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.popup-title span {
  color: var(--red);
}
.popup-sub {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 22px;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.popup-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color 0.2s;
}
.popup-field:focus-within {
  border-color: var(--red);
  background: #fff;
}
.popup-field i {
  color: var(--red);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.popup-field input,
.popup-field textarea {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  resize: none;
}
.popup-field input::placeholder,
.popup-field textarea::placeholder {
  color: #94a3b8;
}
.popup-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    background 0.3s,
    transform 0.2s;
}
.popup-submit:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}
.popup-call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.popup-call-link:hover {
  opacity: 1;
  color: var(--red);
}

/* ════════════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════════════ */
.float-group {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.float-enquiry {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 13px 20px;
  font-family: "Poppins", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(7, 14, 30, 0.4);
  transition: all 0.3s;
  animation: float-bounce 2.5s ease-in-out infinite;
  animation-delay: 0.8s;
  white-space: nowrap;
}
.float-enquiry i {
  font-size: 1rem;
}
.float-enquiry:hover {
  background: var(--red);
  transform: translateY(-4px) scale(1.04);
}
.float-wa {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
  transition: all 0.3s;
  animation: float-bounce 2.5s ease-in-out infinite;
  animation-delay: 0.4s;
}
.float-wa:hover {
  background: #1ebe5d;
  transform: translateY(-4px) scale(1.08);
}
.float-call {
  position: relative;
  z-index: 9999;
  background: #25d366;
  color: #fff;
  padding: 16px;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  transition: all 0.3s;
  animation: float-bounce 2.5s ease-in-out infinite;
}
.float-call:hover {
  background: #1ebe5d;
  transform: translateY(-4px) scale(1.04);
}
.float-call span {
  display: none;
}
@keyframes float-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.float-call .pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 3px solid #25d366;
  animation: call-pulse 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes call-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

/* ════════════════════════════════════════
   SCROLL TO TOP
════════════════════════════════════════ */
#scrollTop {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9998;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.85);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.3s;
}
#scrollTop:hover {
  background: var(--red);
}
#scrollTop.visible {
  display: flex;
}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
════════════════════════════════════════ */
@media (max-width: 900px) {
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .why-visual {
    min-height: 280px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps::before {
    display: none;
  }

  /* hide desktop nav items */
  .nav-links {
    display: none;
  }
  .nav-phone {
    display: none;
  }
  .nav-wa {
    display: none;
  }
  .nav-cta {
    display: none;
  } /* ← hides Call CTA so hamburger is never crowded */

  /* show hamburger */
  .hamburger {
    display: flex;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
════════════════════════════════════════ */
@media (max-width: 600px) {
  section {
    padding: 64px 5%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .slider-prev,
  .slider-next {
    width: 38px;
    height: 38px;
  }
  .float-call span {
    display: none;
  }
  .float-call {
    padding: 16px;
    border-radius: 50%;
  }
}
