:root {
  --bg-dark: #0f1115;
  --primary: #e21f26;
  --primary-dark: #b7171d;
  --logo-blue: #2f6fe4;
  --logo-navy: #1b2b4b;
  --logo-red: #e12731;
  --text-dark: #10131a;
  --muted: #5c6470;
  --surface: #f4f6f9;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: #ffffff;
}

.site-header {
  background: transparent;
}

.header-shell {
  min-height: 154px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 28px rgba(16, 19, 26, 0.08);
  border: 1px solid #eaedf3;
}

.brand-logo {
  max-height: 130px;
  width: auto;
}

.header-nav .nav-link {
  color: #1d232f;
  font-size: 0.97rem;
  font-weight: 600;
  padding: 0.5rem 0.7rem;
}

.header-nav .nav-item + .nav-item .nav-link::before {
  content: "\2022";
  color: #afb6c2;
  margin-right: 12px;
}

.header-actions {
  display: flex;
  flex-direction: column;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d8dfec;
  border-radius: 999px;
  padding: 9px 14px;
  color: #1b2b4b;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(120deg, rgba(47, 111, 228, 0.1), rgba(27, 43, 75, 0.06));
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.header-phone:hover {
  color: #16233c;
  border-color: rgba(47, 111, 228, 0.45);
  box-shadow: 0 8px 18px rgba(27, 43, 75, 0.12);
}

.phone-icon {
  font-size: 14px;
  line-height: 1;
}

.header-cta {
  border-radius: 999px;
  padding-left: 20px;
  padding-right: 20px;
  font-weight: 700;
}

.header-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #e1e6ef;
  border-radius: 999px;
  padding: 9px 16px;
  color: #222a35;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  background: #fff;
}

.header-map-link:hover {
  color: #111827;
  border-color: #cfd6e2;
}

.icon-swap-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-label {
  line-height: 1;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  line-height: 1;
  transform: translateX(0);
}

.nav-link {
  color: #20242c;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary);
}

.hero-section {
  min-height: 90vh;
  background:
    linear-gradient(135deg, rgba(10, 15, 23, 0.92), rgba(12, 22, 35, 0.75)),
    url("assets/hero-slider.png") center/cover no-repeat;
  color: #fff;
  margin-top: -186px;
  padding-top: 258px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
}

.hero-text {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 24px;
  backdrop-filter: blur(6px);
}

.hero-card li {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.92);
}

.btn-danger {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--logo-blue), var(--logo-navy) 55%, var(--logo-red));
  border: none;
  color: #fff;
  box-shadow: 0 10px 24px rgba(27, 43, 75, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-danger:hover {
  color: #fff;
  filter: brightness(1.06);
  box-shadow: 0 14px 32px rgba(27, 43, 75, 0.35);
}

.btn-danger::before {
  content: "";
  position: absolute;
  top: -130%;
  left: -30%;
  width: 44%;
  height: 360%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  transform: rotate(22deg);
  transition: left 0.6s ease;
}

.btn-danger:hover::before {
  left: 112%;
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(3px);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.btn-outline-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
}

.section-space {
  padding: 90px 0;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.8rem;
}

.service-card {
  background: #fff;
  border: 1px solid #e8ebf0;
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(16, 19, 26, 0.08);
}

.service-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.process-item {
  background: #fff;
  border: 1px solid #ebedf2;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
}

.process-item span {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  color: #d0d4dc;
}

.process-item h6 {
  margin-top: 6px;
  margin-bottom: 8px;
  font-weight: 700;
}

.process-item p {
  color: var(--muted);
  margin: 0;
}

.dark-section {
  background: var(--bg-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.stat-box h3 {
  color: #fff;
  margin-bottom: 5px;
  font-weight: 800;
}

.stat-box p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-section {
  background: #f8f9fb;
}

.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-widget:hover {
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.whatsapp-widget:focus-visible {
  outline: 2px solid #128c7e;
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .header-shell {
    border-radius: 16px;
    min-height: auto;
  }

  .brand-logo {
    max-height: 103px;
  }

  .header-nav {
    padding-top: 8px;
  }

  .header-nav .nav-item + .nav-item .nav-link::before {
    content: "";
    margin: 0;
  }

  .header-actions {
    align-items: stretch;
    gap: 10px;
  }

  .header-phone {
    justify-content: center;
  }

  .header-map-link {
    width: 100%;
  }

  .header-cta {
    width: 100%;
  }

  .hero-section {
    min-height: auto;
    margin-top: -168px;
    padding-top: 236px;
    padding-bottom: 50px;
  }
}
