:root {
  --color-bg: #050505;
  --color-bg-alt: #111111;
  --color-bg-soft: #181818;
  --color-primary: #e02424;
  --color-primary-soft: rgba(224, 36, 36, 0.1);
  --color-text: #f5f5f5;
  --color-text-muted: #b3b3b3;
  --color-border: #2a2a2a;
  --color-card-bg: #151515;
  --color-focus: #ffffff;
  --spacing: 1rem;
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-base);
  background: radial-gradient(circle at top left, #1a1a1a 0, var(--color-bg) 40%, #000 100%);
  color: var(--color-text);
}

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

a:hover {
  text-decoration: none;
}

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

button,
input,
textarea {
  font-family: inherit;
}

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

.section {
  padding: 4rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #1d1d1d, #050505 55%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: 1.9rem;
}

.section-header p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease, border-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(224, 36, 36, 0.5);
}

.btn-primary:hover {
  background: #ff3636;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(224, 36, 36, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.03);
}

.btn-light {
  background: #ffffff;
  color: #000000;
}

.btn-light:hover {
  background: #f3f3f3;
}

.btn-full {
  width: 100%;
}

.btn:focus-visible,
.nav-toggle:focus-visible,
.scroll-top:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0.25rem;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

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

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.main-nav a:hover {
  color: #ffffff;
}

.nav-cta {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: #ffffff;
  border: 1px solid rgba(224, 36, 36, 0.6);
}

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

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 1.4rem;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  background-image: radial-gradient(circle at top, rgba(224, 36, 36, 0.25), transparent 50%),
    url("https://images.pexels.com/photos/4613274/pexels-photo-4613274.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.85));
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: 2.1rem;
}

.hero-subtitle {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.hero-bullets li::before {
  content: "•";
  color: var(--color-primary);
  margin-right: 0.25rem;
}

.hero-side {
  max-width: 340px;
}

.hero-card {
  background: rgba(10, 10, 10, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-card-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin: 0 0 0.5rem;
}

.hero-card-text {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.hero-card-link {
  font-size: 0.9rem;
  color: #ffffff;
}

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

.about {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(to bottom, #050505, #050505);
}

.about-inner {
  display: grid;
  gap: 2.5rem;
}

.about-text h2 {
  margin: 0 0 0.9rem;
  font-size: 1.7rem;
}

.about-text p {
  margin: 0 0 0.9rem;
  color: var(--color-text-muted);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  padding: 1rem 0.9rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.stat-value {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
}

.stat-label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.25rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0 0 0.9rem;
  color: var(--color-text-muted);
  font-size: 0.93rem;
}

.card-cta {
  background: none;
  border: none;
  padding: 0;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.card-cta:hover {
  text-decoration: none;
}

.section-cta {
  margin-top: 2rem;
  text-align: center;
  color: var(--color-text-muted);
}

.section-cta p {
  margin: 0 0 0.75rem;
}

.fleet-grid {
  align-items: stretch;
}

.fleet-card {
  position: relative;
  padding-top: 2.2rem;
}

.fleet-badge {
  position: absolute;
  top: 0.6rem;
  right: 1.15rem;
  background: var(--color-primary);
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.fleet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.fleet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.fleet-list li::before {
  content: "";
  margin-top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-primary);
}

.testimonials-grid {
  align-items: stretch;
}

.testimonial-text {
  font-style: italic;
}

.testimonial-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.contact {
  padding: 0 0 4rem;
}

.contact-strip {
  background: var(--color-primary);
}

.contact-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
}

.contact-inner {
  padding-top: 3rem;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-form-wrapper,
.contact-info {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.75);
  color: var(--color-text);
  font-size: 0.9rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}

.form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  cursor: pointer;
}

.form-consent label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-box h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.contact-name {
  margin: 0 0 0.5rem;
}

.contact-box p {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact-box a {
  color: #ffffff;
}

.map-placeholder {
  border-radius: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0 1.75rem;
  background: #020202;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  margin: 0 0 0.25rem;
}

.footer-brand span {
  color: var(--color-primary);
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-col-right p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-col-right a {
  color: #ffffff;
}

.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  z-index: 30;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgba(0, 0, 0, 0.95);
}

@media (max-width: 767px) {
  .main-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: rgba(0, 0, 0, 0.96);
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.75rem 1.5rem 1.1rem;
    gap: 0.9rem;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

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

  .hero-inner {
    gap: 2.5rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-strip-inner {
    align-items: flex-start;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0 5rem;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .about-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .section {
    padding: 4.5rem 0;
  }
}
