*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1d24;
  background: #f4f6fb;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
}

.site-header {
  background: #0f172a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand span {
  display: block;
  font-size: 0.75rem;
  color: #b8c0d4;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ff6b00;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: #e6e9ef;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffb47a;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #2b3241;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e6e9ef;
  font-size: 0.85rem;
}

.lang-switch select {
  background: #0f172a;
  color: #fff;
  border: 1px solid #2b3241;
  border-radius: 8px;
  padding: 6px 10px;
}

.hero {
  background: linear-gradient(120deg, rgba(11, 18, 32, 0.9), rgba(15, 23, 42, 0.85)),
    radial-gradient(circle at top right, #25365a, #0f172a);
  color: #fff;
  padding: 110px 0 90px;
  position: relative;
}

.hero.slim {
  padding: 70px 0 60px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #d6dbe7;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  margin: 12px 0;
}

.hero p {
  color: #d6dbe7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: #ff6b00;
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.35);
}

.btn.ghost {
  border-color: #7d8fb8;
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
}

.hero-overlay-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(10, 20, 40, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-overlay-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10, 20, 40, 0.35);
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #ff6b00;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d6dbe7;
  font-size: 0.95rem;
}

.section {
  padding: 70px 0;
  background: #f4f6fb;
}

.section.alt {
  background: #fff;
}

.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  margin-bottom: 8px;
}

.section-title p {
  color: #525a6d;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 15px 30px rgba(10, 20, 40, 0.08);
}

.about-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 15px 30px rgba(10, 20, 40, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 20, 40, 0.12);
}

.about-stats {
  display: flex;
  gap: 20px;
  margin: 18px 0;
}

.about-stats strong {
  display: block;
  font-size: 1.4rem;
  color: #ff6b00;
}

.about-stats span {
  font-size: 0.85rem;
  color: #6b7387;
}

.about-image {
  min-height: 320px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1f2937, #334155);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.2);
  transition: transform 0.25s ease;
}

.about-image:hover {
  transform: translateY(-6px);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 107, 0, 0.7), transparent 60%);
  opacity: 0.8;
}

.image-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #ff6b00;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  z-index: 1;
}

.ceo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.ceo-photo {
  background: linear-gradient(140deg, #d1d5db, #94a3b8);
  border-radius: 20px;
  min-height: 320px;
}

.ceo-card {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ceo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.35);
}

.ceo-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.ceo-signature {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  font-size: 0.85rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(10, 20, 40, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(10, 20, 40, 0.12);
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff4ea;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-size: 1.2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card,
.fleet-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 24px rgba(10, 20, 40, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(10, 20, 40, 0.12);
}

.service-card ul {
  padding-left: 18px;
  color: #4b5366;
}

.service-card .icon-circle {
  margin: 0 0 12px;
}

.accent-orange {
  border-top: 3px solid #ff6b00;
}

.accent-blue {
  border-top: 3px solid #2f80ed;
}

.accent-purple {
  border-top: 3px solid #9b51e0;
}

.accent-green {
  border-top: 3px solid #27ae60;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.checklist li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6b00;
  font-weight: 700;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-bottom: 24px;
}

.choose-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(10, 20, 40, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.choose-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(10, 20, 40, 0.12);
}

.quote-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(10, 20, 40, 0.08);
  display: grid;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quote-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(10, 20, 40, 0.12);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.fleet-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.stats-card {
  background: #ff6b00;
  color: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 30px rgba(255, 107, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 32px rgba(255, 107, 0, 0.35);
}

.stats-card h3 {
  font-size: 2rem;
  margin: 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.image-card {
  border-radius: 14px;
  background: linear-gradient(135deg, #cbd5f5, #93a6d8);
  min-height: 120px;
  transition: transform 0.25s ease;
}

.image-card:hover {
  transform: scale(1.02);
}

.image-one {
  grid-column: span 2;
  min-height: 140px;
}

.image-two {
  background: linear-gradient(135deg, #f3c5a6, #e07b39);
}

.image-three {
  background: linear-gradient(135deg, #a4b7d0, #6b7a90);
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: #0f172a;
  color: #fff;
  padding: 30px;
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-info {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(10, 20, 40, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(10, 20, 40, 0.12);
}

.info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.info-item span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff4ea;
  display: grid;
  place-items: center;
}

.quick-links {
  margin-top: 20px;
  background: #ff6b00;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
}

.form-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(10, 20, 40, 0.08);
  display: grid;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.form-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(10, 20, 40, 0.12);
}

.text-link {
  color: #ff6b00;
  font-weight: 600;
}

.muted {
  color: #6a7286;
  font-size: 0.85rem;
}

.site-footer {
  background: #0f172a;
  color: #d6dbe7;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-grid a {
  display: block;
  color: #d6dbe7;
  margin-bottom: 8px;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-row span {
  background: #1f2937;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid #1e2535;
  margin-top: 20px;
  padding-top: 16px;
  font-size: 0.85rem;
  color: #9aa3b5;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 70px 20px auto 20px;
    background: #0f172a;
    border-radius: 12px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .lang-switch {
    margin-left: auto;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 90px 0 70px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .service-card,
  .fleet-card,
  .value-card,
  .choose-item,
  .quote-card,
  .cta,
  .form-card,
  .contact-info,
  .hero-overlay-card,
  .about-card,
  .about-image,
  .stats-card,
  .image-card {
    transition: none;
    transform: none;
  }
}

