:root {
  --navy: #0b1f4d;
  --navy-light: #132a6b;
  --accent: #d71920;
  --accent-hover: #b0151a;
  --emerald: #16a34a;
  --emerald-hover: #15803d;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: all 0.3s;
  background: transparent;
}

.header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.header.scrolled .logo {
  color: var(--navy);
}

.logo span {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 2rem;
}
.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.header.scrolled .nav-link {
  color: var(--gray-700);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-request {
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}
.header.scrolled .hamburger span {
  background: var(--navy);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu .nav-link {
  color: var(--gray-700);
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1a3a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.02)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom;
  background-size: cover;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-text h1 span {
  color: var(--accent);
}
.hero-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image {
  border-radius: 20px;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border: none;
}

/* Section styles */
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--gray-50);
}
.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Trust Bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}
.trust-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}
.trust-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.trust-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.trust-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-card {
  text-align: center;
}
.stat-number {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
}
.stat-label {
  color: var(--gray-500);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.service-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(215, 25, 32, 0.1);
  border-radius: 12px;
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.service-card .badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--emerald);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.service-features {
  list-style: none;
  margin-top: 1rem;
}
.service-features li {
  padding: 0.4rem 0;
  color: var(--gray-600);
  font-size: 0.9rem;
}
.service-features li::before {
  content: "✓";
  color: var(--emerald);
  margin-right: 0.5rem;
  font-weight: 700;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s;
}
.team-card:hover {
  transform: translateY(-5px);
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
}
.team-card h3 {
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.team-card .title {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.team-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}
.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin: 1rem 0;
}
.team-badges span {
  padding: 0.2rem 0.6rem;
  background: var(--gray-100);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 4rem 0;
  text-align: center;
}
.cta-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background: #07112b;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-col h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  line-height: 2;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
}
.footer-col a:hover {
  color: var(--accent);
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background 0.3s;
}
.social-links a:hover {
  background: var(--accent);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* Page header */
.page-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 8rem 2rem 4rem;
  text-align: center;
}
.page-header h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  color: var(--white);
  font-weight: 900;
}
.page-header p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

/* Content page (privacy, terms) */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.content-page h2 {
  color: var(--navy);
  margin: 2rem 0 1rem;
}
.content-page p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.content-page ul {
  padding-left: 1.5rem;
  color: var(--gray-600);
  line-height: 2;
}

/* Fleet */
.fleet-grid {
  display: grid;
  gap: 3rem;
}
.fleet-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
}
.fleet-image {
  background: var(--gray-100);
  border-radius: 12px;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.fleet-info h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}
.fleet-info p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.fleet-features {
  list-style: none;
}
.fleet-features li {
  padding: 0.5rem 0;
  color: var(--gray-600);
}
.fleet-features li::before {
  content: "✓";
  color: var(--emerald);
  margin-right: 0.5rem;
  font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
  position: relative;
}
.testimonial-card .quote {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card .author {
  font-weight: 600;
  color: var(--navy);
}
.testimonial-card .role {
  color: var(--accent);
  font-size: 0.85rem;
}

/* Forms */
.form-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.9rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: var(--white);
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 31, 77, 0.1);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast.success {
  background: var(--emerald);
}
.toast.error {
  background: var(--accent);
}

/* 404 */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 2rem;
}
.not-found h1 {
  font-size: 8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  color: var(--navy);
}
.not-found p {
  color: var(--gray-500);
  margin: 1rem 0 2rem;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .btn-request {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-image {
    display: none;
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    padding: 0 1rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .fleet-card {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
