html {
  scroll-behavior: smooth;
}


.stats {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 60px 0 40px;
  background: transparent;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background: rgba(10,14,22,0.78);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 24px;

  overflow: hidden;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.45);
}

.stats-grid div {
  padding: 42px 20px;

  text-align: center;

  border-right: 1px solid rgba(255,255,255,0.05);
}

.stats-grid div:last-child {
  border-right: none;
}

.stats-grid strong {
  display: block;
  color: #e50914;
  font-size: 34px;
  font-weight: 900;
}

.stats-grid span {
  color: #cbd5e1;
  font-size: 14px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #0b0f17;
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: rgba(8, 12, 18, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo span {
  color: #e50914;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

nav a:hover {
  color: #e50914;
}

.nav-btn {
  background: #e50914;
  padding: 13px 22px;
  border-radius: 6px;
  font-weight: 800;
}

.hero {
  position: relative;

  background:
    linear-gradient(
      90deg,
      rgba(5,8,13,0.96) 0%,
      rgba(5,8,13,0.82) 40%,
      rgba(5,8,13,0.35) 100%
    ),
    url("van.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;

  padding-top: 140px;
  padding-bottom: 30px;

  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, transparent 0%, rgba(0,0,0,0.6) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 620px;
}

.hero h1 {
  font-size: 76px;
  line-height: 0.95;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #e50914;
  display: block;
}

.subtitle {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
}

.description {
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.check-list {
  list-style: none;
  margin-bottom: 34px;
}

.check-list li {
  margin-bottom: 10px;
  color: #f3f4f6;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  color: #e50914;
  font-weight: 900;
  margin-right: 10px;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 26px;
  border-radius: 8px;
  font-weight: 900;
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.red {
  background: #e50914;
  color: white;
}

.btn.dark {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn.light {
  background: white;
  color: #111827;
}

.services {
  padding: 30px 0 80px;
  background: #070a0f;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 0;
  position: relative;
  z-index: 5;
}

.final-cta {
  padding: 70px 0;
  background: #070a0f;
}

.final-cta-box {
  background: rgba(14,20,31,0.82);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.final-cta h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.final-cta p {
  color: #cbd5e1;
  font-size: 18px;
  margin-bottom: 28px;
}

.service-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card .icon {
  color: #e50914;
}



.service-card {
  background: #0e141f;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 24px;
  border-radius: 14px;
  text-align: center;
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #e50914;
}

.icon {
  font-size: 38px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p {
  color: #cbd5e1;
  font-size: 15px;
}

.about {
  padding: 90px 0;
  background: #0b0f17;
}

.about-box {
  background: linear-gradient(135deg, #111827, #070a0f);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 50px;
}

.about h2,
.contact h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.about p,
.contact p {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
  max-width: 760px;
}

.trust {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust div {
  background: rgba(255,255,255,0.05);
  padding: 18px;
  border-radius: 12px;
  font-weight: 700;
}

.contact {
  padding: 90px 0;
  background:
    linear-gradient(90deg, rgba(5,8,13,0.96), rgba(5,8,13,0.8)),
    url("van.jpg") center / cover no-repeat;
}

.contact-box {
  text-align: center;
}

.contact-box p {
  margin: 0 auto 30px;
}

.contact-buttons {
  justify-content: center;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 100;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.footer {
  background: #05070b;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9ca3af;
}

.footer a {
  margin-left: 18px;
}

.footer a:hover {
  color: white;
}

@media (max-width: 950px) {
  nav {
    display: none;
  }

  .hero h1 {
    font-size: 52px;
  }

  .service-grid,
  .trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(5,8,13,0.95), rgba(5,8,13,0.75)),
      url("van.jpg") center / cover no-repeat;
  }

  .hero h1 {
    font-size: 42px;
  }

  .service-grid,
  .trust {
    grid-template-columns: 1fr;
  }

  .about-box {
    padding: 30px;
  }

  .footer-content {
    flex-direction: column;
  }
}

.request-section {
  padding: 50px 0 100px;
  background: #070a0f;
}

.request-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.section-kicker {
  color: #e50914;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.request-text h2 {
  font-size: 46px;
  line-height: 1.1;
  margin: 16px 0 20px;
}

.request-text p {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
}

.request-form {
  background: #0e141f;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  background: #111827;
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 16px;
  font-size: 15px;
  outline: none;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: #e50914;
}

.request-form textarea {
  min-height: 140px;
  resize: vertical;
}

.privacy-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
}

.privacy-check input {
  width: auto;
  margin-top: 4px;
}

.request-form button {
  border: none;
  cursor: pointer;
  font-size: 16px;
}

@media (max-width: 850px) {
  .request-box,
  .form-row {
    grid-template-columns: 1fr;
  }

  .request-text h2 {
    font-size: 34px;
  }
}




@media (max-width: 700px) {
  .stats-grid {
    margin-top: 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid div {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .final-cta-box {
    padding: 32px 20px;
  }

  .final-cta h2 {
    font-size: 32px;
  }
}

.stats {
  position: relative !important;
  z-index: 10 !important;
  margin-top: 0 !important;
  padding: 10px 0 10px !important;
  background: #070a0f !important;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #070a0f;
  z-index: -1;
}

.services {
  background: #070a0f !important;
  padding-top: 10px !important;
}

.service-card,
.stats-grid,
.about-box,
.request-form {
  animation: fadeUp 0.7s ease both;
}


.service-card {
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);

  border-color: rgba(229,9,20,0.7);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.45);
}

.btn.red {
  background: #e50914;

  box-shadow:
    0 10px 30px rgba(229,9,20,0.35);

  transition: 0.3s ease;
}



.request-section {
  position: relative;
  padding: 90px 0;
  background: #070a0f;
  overflow: hidden;
}

.request-section::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  right: -250px;
  top: -200px;

  background:
    radial-gradient(
      circle,
      rgba(229,9,20,0.12),
      transparent 70%
    );

  filter: blur(80px);

  pointer-events: none;
}