:root {
  --navy: #0b1c2c;
  --navy-2: #10263b;
  --red: #e0332e;
  --red-dark: #b8231f;
  --green: #25d366;
  --ink: #0b1c2c;
  --muted: #5a6b7a;
  --line: #e6ebef;
  --bg: #ffffff;
  --bg-alt: #f5f7f9;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 28, 44, 0.08);
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--red);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.eyebrow-light {
  color: #ff8f8c;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(224, 51, 46, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1fb959;
}

.btn-nav {
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
}

/* Top bar */
.topbar {
  background: var(--navy);
  color: #cfd9e2;
  font-size: 0.85rem;
}

.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge-24h {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #fff;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.topbar-phones a {
  color: #cfd9e2;
  font-weight: 600;
}

.topbar-phones a:hover {
  color: #fff;
}

.sep {
  margin: 0 0.6rem;
  opacity: 0.4;
}

/* Navbar */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 68px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, #16324a 100%);
  color: #fff;
  padding: 5.5rem 1.5rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(224, 51, 46, 0.35), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(37, 211, 102, 0.15), transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  color: #ff8f8c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.3rem;
}

.hero h1 span {
  color: #ff8f8c;
}

.hero-sub {
  font-size: 1.1rem;
  color: #c3d0da;
  max-width: 560px;
  margin: 0 auto 2.2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.stat span {
  font-size: 0.85rem;
  color: #9fb0bd;
}

/* Section shared */
.section-head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
  padding: 0 1.5rem;
}

.section-head h2,
.about-text h2,
.trucks-content h2,
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.9rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Services */
.services {
  padding: 5.5rem 1.5rem;
  background: var(--bg-alt);
}

.services-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(224, 51, 46, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Trucks */
.trucks {
  background: var(--navy);
  color: #fff;
  padding: 5.5rem 1.5rem;
}

.trucks-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.trucks-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.trucks-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  
  
}

.trucks-content p {
  color: #c3d0da;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.trucks-list {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.trucks-list li {
  padding-left: 1.8rem;
  position: relative;
  color: #e5edf2;
}

.trucks-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Gallery */
.gallery {
  padding: 5.5rem 1.5rem;
  background: var(--bg-alt);
}

.gallery-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item.span-full {
  grid-column: 1 / -1;
  height: 260px;
}

.gallery-item.span-full img {
  object-position: center 40%;
}

@media (max-width: 860px) {
  .trucks-inner {
    grid-template-columns: 1fr;
  }

  .trucks-media {
    order: -1;
    max-height: 320px;
  }
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item.span-full {
    height: 200px;
  }
}

/* Coverage */
.coverage {
  padding: 5.5rem 1.5rem;
}

.coverage-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.coverage-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
}

.coverage-card span {
  display: block;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* About */
.about {
  background: var(--bg-alt);
  padding: 5.5rem 1.5rem;
}

.about-inner {
  max-width: 780px;
  margin: 0 auto;
}

.about-text p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.about-highlights strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--navy);
}

.about-highlights span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Contact */
.contact {
  background: linear-gradient(160deg, var(--navy) 0%, #16324a 100%);
  color: #fff;
  padding: 6rem 1.5rem;
  text-align: center;
}

.contact-sub {
  color: #c3d0da;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.contact-cards {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.3rem 2rem;
  min-width: 240px;
  transition: background 0.2s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9fb0bd;
  margin-bottom: 0.4rem;
}

.contact-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Footer */
.footer {
  background: #081522;
  color: #8fa1af;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem 0.9rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer p {
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto 0.8rem;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-credit {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.3rem;
}

.footer-credit a {
  color: #cfd9e2;
  font-weight: 600;
  text-decoration: underline;
}

.footer-credit a:hover {
  color: #fff;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float span {
  display: none;
}

/* Responsive */
@media (min-width: 640px) {
  .whatsapp-float span {
    display: inline;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .btn-nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .topbar-inner {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .hero {
    padding: 4rem 1.2rem 4.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }
}