﻿:root {
  --blue-700: #2a5f8f;
  --blue-600: #2f6ea9;
  --blue-500: #3a82c3;
  --blue-300: #79aeda;
  --blue-100: #eaf2fb;
  --accent: #b57b45;
  --text-dark: #1f334a;
  --text-muted: #5b718a;
  --shadow: 0 16px 36px rgba(17, 35, 54, 0.12);
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1120px;
  --section-pad: 90px;
  --font-body: "Manrope", sans-serif;
  --font-heading: "Montserrat", sans-serif;
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-base: 700ms;
  --duration-fast: 350ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 20%);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), 100% - 48px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(18, 33, 48, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

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

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
}

.site-nav a {
  color: var(--blue-600);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--accent);
}

.site-nav a.active {
  color: var(--accent);
  border-color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform var(--duration-fast) var(--ease-smooth), box-shadow var(--duration-fast) var(--ease-smooth), background var(--duration-fast) var(--ease-smooth);
}

.btn-primary {
  background: var(--blue-500);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(58, 130, 195, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--blue-600);
  transform: translateY(-1px);
}

.site-header .btn-primary:hover,
.site-header .btn-primary:focus {
  background: var(--accent);
  box-shadow: 0 10px 20px rgba(181, 123, 69, 0.35);
}

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

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(255, 255, 255, 0.15);
}

.section {
  padding: var(--section-pad) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition-property: opacity, transform, box-shadow;
  transition-duration: var(--duration-base);
  transition-timing-function: var(--ease-smooth);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-reveal="left"] {
  transform: translateX(-28px);
}

.reveal[data-reveal="right"] {
  transform: translateX(28px);
}

.reveal[data-reveal="fade"] {
  transform: none;
}

.reveal[data-reveal="scale"] {
  transform: scale(0.97);
}

.hero-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(17, 35, 54, 0.2);
}

.fleet-card:hover img,
.fleet-entry-image:hover img,
.about-office-image:hover,
.service-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(17, 35, 54, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--blue-600);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 auto;
  max-width: 640px;
}

.hero {
  position: relative;
  min-height: 620px;
  background: url("../img/hero.svg") center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 26, 38, 0.25), rgba(12, 24, 34, 0.55));
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 120px 0 90px;
  z-index: 2;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 54px;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: 0.2px;
}

.hero p {
  margin: 0 auto 24px;
  max-width: 560px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cards {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hero-card {
  background: rgba(20, 34, 48, 0.55);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 24px rgba(9, 18, 26, 0.2);
}

.hero-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 18px;
}

.hero-card p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

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

.about-grid p {
  margin: 0 0 24px;
  color: var(--text-muted);
}

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

.stat h3 {
  margin: 0;
  font-size: 34px;
  color: var(--blue-600);
  font-family: var(--font-heading);
}

.stat p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--blue-600);
}

.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

.service-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

.service-list {
  display: grid;
  gap: 26px;
}

.service-item h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--blue-600);
}

.service-item p {
  margin: 0;
  color: var(--text-muted);
}

.fleet-header {
  text-align: center;
  margin-bottom: 40px;
}

.fleet-pill {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 999px;
  background: var(--blue-500);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 14px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.fleet-card img {
  border-radius: 16px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.team-header {
  text-align: center;
  margin-bottom: 40px;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.team-card {
  text-align: center;
  flex: 0 1 320px;
  max-width: 320px;
}

.team-card img {
  border-radius: 10px;
  box-shadow: none;
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center top;
}

.team-card h3 {
  margin: 14px 0 6px;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--blue-600);
}

.team-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.contact {
  position: relative;
  color: #ffffff;
  background: url("../img/contact-bg.svg") center/cover no-repeat;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 26, 36, 0.6);
  z-index: 1;
}

.contact-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.contact h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 32px;
}

.contact-details p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-info {
  margin-top: 30px;
  font-weight: 600;
}

.contact-info span {
  display: block;
  font-weight: 400;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-info a {
  color: #ffffff;
  text-decoration: underline;
}

.contact-or {
  align-self: center;
  font-family: var(--font-heading);
  font-size: 28px;
  color: rgba(255, 255, 255, 0.9);
}

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

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-body);
}

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

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  justify-self: start;
}

.page-hero {
  background: linear-gradient(120deg, #f1f6fb 0%, #ffffff 70%);
  padding: 70px 0;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--blue-600);
}

.page-hero p {
  margin: 0;
  max-width: 640px;
  color: var(--text-muted);
}

.site-footer {
  background: #4d8fc4;
  color: #ffffff;
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 0 0 8px;
}

.footer-text {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-quote {
  margin: 0;
  font-weight: 600;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.about-intro {
  padding: 80px 0 40px;
  text-align: center;
}

.about-intro h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--blue-600);
}

.about-intro p {
  margin: 0 auto 26px;
  max-width: 900px;
  color: var(--blue-600);
}

.about-vision {
  margin-top: 28px;
}

.about-vision h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--blue-600);
}

.about-vision p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--blue-600);
}

.about-split {
  padding-top: 40px;
  padding-bottom: 40px;
}

.about-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.about-split h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--blue-600);
}

.about-split p {
  margin: 0;
  color: var(--blue-600);
}

.about-office {
  padding-top: 10px;
}

.about-office-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-detail {
  text-align: center;
}

.about-detail h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--blue-600);
}

.about-detail p {
  margin: 0 auto 18px;
  max-width: 960px;
  color: var(--blue-600);
}

.about-testimonials {
  position: relative;
  padding: 70px 0 80px;
  background: url("../img/office.jpg") center/cover no-repeat;
  color: #ffffff;
}

.about-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 25, 0.68);
}

.about-testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  text-align: center;
}

.testimonial-stars {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card p {
  margin: 0 auto 20px;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: linear-gradient(135deg, #4ea3d8, #1f4f73);
}

.testimonial-name {
  display: block;
  font-weight: 600;
}

.about-locations {
  padding-top: 80px;
  padding-bottom: 90px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
}

.locations-text p {
  color: var(--blue-600);
}

.locations-block h3 {
  margin: 24px 0 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--blue-600);
}

.locations-block p {
  margin: 0;
  color: var(--blue-600);
}

.locations-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.services-intro {
  padding: 70px 0 30px;
  text-align: center;
}

.services-intro h1 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 34px;
  color: var(--blue-600);
}

.services-intro h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--blue-600);
}

.services-intro p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--blue-600);
}

.services-showcase {
  padding: 30px 0 50px;
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  border-radius: 18px;
  overflow: hidden;
  background: #3a82c3;
  color: #ffffff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-card-body {
  padding: 22px 24px 26px;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.service-card-body h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 20px;
}

.service-card-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.services-detail {
  padding: 40px 0 70px;
  text-align: center;
}

.services-detail p {
  margin: 0 auto 24px;
  max-width: 920px;
  color: var(--blue-600);
}

.services-bullets {
  margin: 0 auto;
  max-width: 820px;
  padding: 0;
  list-style: disc;
  list-style-position: inside;
  display: grid;
  gap: 12px;
  color: var(--blue-600);
}

.services-contact {
  padding: 70px 0 90px;
}

.services-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
}

.services-contact-info h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--blue-600);
}

.services-contact-info p {
  margin: 0 0 18px;
  color: var(--blue-600);
}

.services-contact-block {
  margin-bottom: 18px;
}

.services-contact-block h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--blue-600);
}

.services-contact-block a {
  display: block;
  color: var(--blue-600);
  text-decoration: underline;
  margin-bottom: 6px;
}

.services-contact-logo img {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

.fleet-page-intro {
  padding: 70px 0 20px;
  text-align: center;
}

.fleet-page-intro h1 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 40px;
  color: var(--blue-600);
}

.fleet-page-intro p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--blue-600);
}

.fleet-page-list {
  padding: 20px 0 90px;
}

.fleet-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.fleet-entry-text {
  text-align: center;
}

.fleet-entry-text h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--blue-600);
}

.fleet-entry-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  color: var(--blue-600);
  font-size: 15px;
}

.fleet-entry-text strong {
  font-weight: 700;
}

.fleet-entry-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 46px;
  }

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

  .about-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-or {
    display: none;
  }

  .about-split-grid,
  .testimonial-grid,
  .locations-grid,
  .services-contact-grid {
    grid-template-columns: 1fr;
  }

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

  .about-intro h1 {
    font-size: 36px;
  }

  .fleet-entry {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .fleet-entry-image img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

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

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

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

  .fleet-page-intro h1 {
    font-size: 32px;
  }
}
