:root {
  --bg-dark: #0b0b0c;
  --bg-darker: #050505;
  --bg-light: #f7f7f7;
  --text: #101010;
  --muted: #666;
  --white: #fff;
  --accent: #111;
  --green: #22c55e;
  --radius-xl: 32px;
  --radius-lg: 20px;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.icon {
  width: 20px;
  height: 20px;
}

.site-header {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--white);
  overflow: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 24px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  background: var(--white);
  color: var(--text);
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 10px;
  letter-spacing: -0.04em;
}

.navbar.scrolled .brand-badge {
  background: var(--text);
  color: var(--white);
}

.brand-text {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.62rem;
  gap: 2px;
}

.brand-title {
  font-size: 1rem;
  text-transform: none;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--white);
  transition: opacity 0.2s ease;
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-links .cta {
  background: var(--white);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.navbar.scrolled .nav-links .cta {
  background: var(--text);
  color: var(--white);
}

.nav-toggle {
  background: transparent;
  border: none;
  color: var(--white);
  display: none;
}

.navbar.scrolled .nav-toggle {
  color: var(--text);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 20px 24px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.nav-mobile a {
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.nav-mobile .cta {
  background: var(--text);
  color: var(--white);
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  border-bottom: none;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.1) 100%),
    url("images/hero.jpg") center/cover no-repeat;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 620px;
  animation: fadeInLeft 0.9s ease;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: #9ca3af;
}

.hero-text p {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 26px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: var(--white);
  color: var(--text);
}

.btn.primary:hover {
  background: #e5e5e5;
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn.full {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 60px 0 36px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 100%);
}

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

.stat-value {
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.6rem;
  color: #6b7280;
}

section {
  padding: 100px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: #9ca3af;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-head h2,
.about-content h2,
.fleet-head h2,
.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.services {
  background: #f5f5f5;
}

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

.service-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.service-image {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.service-body {
  padding: 28px;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f4f4f4;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--text);
}

.service-body h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-body p {
  color: #6b7280;
  margin-bottom: 20px;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  border-radius: 40px;
  box-shadow: var(--shadow-lg);
}

.about-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  background: #f2f2f2;
  border-radius: 50%;
  right: -40px;
  bottom: -40px;
  z-index: -1;
}

.about-content p {
  color: #6b7280;
  margin: 20px 0 32px;
  font-size: 1rem;
}

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

.about-pillars h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.about-pillars p {
  font-size: 0.9rem;
  color: #6b7280;
}

.fleet {
  background: var(--white);
}

.fleet-head {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.fleet-head p {
  max-width: 360px;
  color: #6b7280;
}

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

.fleet-card {
  background: #f8f8f8;
  border-radius: 32px;
  padding: 32px;
  border: 1px solid #eee;
}

.fleet-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.fleet-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  color: #4b5563;
  font-weight: 600;
}

.fleet-card li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--text);
}

.fleet-image {
  margin-top: 28px;
  height: 180px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.fleet-video {
  display: block;
  width: 100%;
  max-width: 848px;
  aspect-ratio: 848 / 478;
  height: auto;
  margin: 0 auto;
  border-radius: 20px;
  background: #000;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.fleet-video-section {
  background: #f5f5f5;
}

.fleet-video-card {
  background: var(--white);
  border-radius: 32px;
  padding: 20px;
  border: 1px solid #eee;
  box-shadow: var(--shadow-md);
}

.contact {
  position: relative;
  background: #0d0d0f;
  color: var(--white);
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
  transform: skewX(-8deg) translateX(40%);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  margin: 12px 0 20px;
}

.contact-info h2 span {
  color: #9ca3af;
  font-style: italic;
}

.contact-items {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
}

.contact-item span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #9ca3af;
  font-weight: 700;
}

.contact-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 4px;
}

.contact-form {
  background: var(--white);
  color: var(--text);
  border-radius: 36px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.contact-form form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #9ca3af;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  background: #fafafa;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.site-footer {
  background: var(--white);
  border-top: 1px solid #eee;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #6b7280;
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: #9ca3af;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--text);
}

.whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  z-index: 40;
  transition: transform 0.2s ease;
}

.whatsapp:hover {
  transform: scale(1.06);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-stats {
    padding-top: 40px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }

  section {
    padding: 80px 0;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 120px;
  }

  .hero-content {
    padding-bottom: 32px;
  }

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

  .brand-text {
    display: none;
  }

  .hero-stats {
    position: relative;
    width: 100%;
    padding: 32px 0 28px;
  }

  .hero-stats .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
