/* ============================================================
   ON TIME INTERNATIONAL — Design System
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --red: #E30613;
  --red-dark: #B8050F;
  --green: #39B54A;
  --green-dark: #2E9A3D;
  --dark: #1D1D1B;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray: #E0E0E0;
  --gray-mid: #999;
  --font: 'Chakra Petch', sans-serif;
  --nav-height: 80px;
  --hex-point: 14px;
  --container: 1200px;
  --transition: .3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: .5em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-mid);
  max-width: 700px;
  margin-bottom: 2em;
}

.text-red {
  color: var(--red);
}

.text-green {
  color: var(--green);
}

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

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

.bg-gray {
  background: var(--gray-light);
}

.bg-red {
  background: var(--red);
}

.bg-dark {
  background: var(--dark);
}

/* ---------- Hexagon Arrow Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 38px;
  text-transform: capitalize;
  letter-spacing: .5px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), filter var(--transition);
  /* Horizontal hexagon: flat top/bottom, pointed left/right like an arrow */
  clip-path: polygon(var(--hex-point) 0%,
      calc(100% - var(--hex-point)) 0%,
      100% 50%,
      calc(100% - var(--hex-point)) 100%,
      var(--hex-point) 100%,
      0% 50%);
  position: relative;
  text-align: center;
  line-height: 1.3;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

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

.btn-red:hover {
  background: var(--red-dark);
}

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

.btn-green:hover {
  background: var(--green-dark);
}

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

.btn-white:hover {
  background: var(--gray-light);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  clip-path: polygon(var(--hex-point) 0%,
      calc(100% - var(--hex-point)) 0%,
      100% 50%,
      calc(100% - var(--hex-point)) 100%,
      var(--hex-point) 100%,
      0% 50%);
}

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

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 34px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-weight: 600;
  font-size: .9rem;
  text-transform: capitalize;
  letter-spacing: .5px;
  position: relative;
  padding: 6px 1;
  transition: color var(--transition);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--red);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__cta {
  margin-left: 16px;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  margin-top: var(--nav-height);
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.45);
  transition: transform 8s ease;
}

.hero:hover .hero__bg {
  transform: scale(1.03);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 700px;
}

.hero__content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  text-transform: capitalize;
  line-height: 1.15;
  margin-bottom: .3em;
}

.hero__content h1 span {
  color: var(--red);
}

.hero__content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 1.5em;
  max-width: 550px;
}

.hero--small {
  min-height: 45vh;
}

/* ---------- Services Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .15);
}

.service-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card__body {
  padding: 28px;
}

.service-card__body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: .5em;
}

.service-card__body p {
  color: var(--gray-mid);
  margin-bottom: 1.2em;
  font-size: .95rem;
}

/* ---------- Solution Detail Cards ---------- */
.solutions-detail {
  padding: 60px 0;
}

.solutions-group {
  margin-bottom: 60px;
}

.solutions-group h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: .3em;
}

.solutions-group>p {
  color: var(--gray-mid);
  margin-bottom: 2em;
  max-width: 600px;
}

.solutions-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.solution-item {
  background: var(--white);
  border-left: 4px solid var(--red);
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.solution-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.solution-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: .4em;
}

.solution-item p {
  font-size: .9rem;
  color: var(--gray-mid);
}

/* ---------- Fleet Carousel ---------- */
.fleet {
  background: var(--gray-light);
  padding: 80px 0;
}

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

.fleet-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.fleet-carousel__track {
  display: flex;
  transition: transform .5s ease;
}

.fleet-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 20px;
}

.fleet-slide__img {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-slide__img img {
  max-height: 280px;
  width: 100%;
  object-fit: contain;
}

.fleet-slide__info {
  padding: 20px 0;
}

.fleet-slide__info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--red);
  margin-bottom: .5em;
}

.fleet-slide__info p {
  color: var(--gray-mid);
  margin-bottom: 1.2em;
  font-size: .95rem;
  line-height: 1.7;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fleet-spec {
  background: var(--white);
  padding: 14px 16px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.fleet-spec__label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--gray-mid);
  margin-bottom: 2px;
}

.fleet-spec__value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.fleet-carousel__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.fleet-carousel__btn {
  width: 50px;
  height: 50px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  clip-path: polygon(var(--hex-point) 0%,
      calc(100% - var(--hex-point)) 0%,
      100% 50%,
      calc(100% - var(--hex-point)) 100%,
      var(--hex-point) 100%,
      0% 50%);
}

.fleet-carousel__btn:hover {
  background: var(--red-dark);
  transform: scale(1.1);
}

.fleet-carousel__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.fleet-carousel__dots {
  display: flex;
  gap: 8px;
}

.fleet-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.fleet-carousel__dot.active {
  background: var(--red);
}

/* ---------- Coverage Section ---------- */
.coverage {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.coverage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.coverage__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: .5em;
}

.coverage__text p {
  color: var(--gray-mid);
  margin-bottom: 1.5em;
  line-height: 1.8;
}

.coverage__map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
}

.coverage__map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.coverage-levels {
  display: flex;
  gap: 24px;
  margin-top: 1.5em;
}

.coverage-level {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
}

.coverage-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.coverage-dot--high {
  background: var(--red);
}

.coverage-dot--medium {
  background: #FF8C42;
}

.coverage-dot--low {
  background: #FFD166;
}

/* ---------- About Sections ---------- */
.about-hero {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: capitalize;
  margin-bottom: .3em;
}

.about-hero p {
  font-size: 1.1rem;
  opacity: .9;
  max-width: 650px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 60px 0;
}

.value-card {
  text-align: center;
  padding: 40px 30px;
}

.value-card__icon {
  width: 70px;
  height: 70px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  clip-path: polygon(var(--hex-point) 0%,
      calc(100% - var(--hex-point)) 0%,
      100% 50%,
      calc(100% - var(--hex-point)) 100%,
      var(--hex-point) 100%,
      0% 50%);
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: .5em;
}

.value-card p {
  color: var(--gray-mid);
  font-size: .95rem;
}

/* ---------- Work With Us ---------- */
.work-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  padding: 60px 0;
}

.work-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.work-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.4);
  transition: transform var(--transition);
}

.work-card:hover .work-card__bg {
  transform: scale(1.05);
}

.work-card__content {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: var(--white);
}

.work-card__content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: .5em;
}

.work-card__content p {
  font-size: .95rem;
  opacity: .9;
  margin-bottom: 1.5em;
}

/* ---------- Contact / Forms ---------- */
.form-section {
  padding: 80px 0;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .08);
  border-top: 4px solid var(--red);
}

.form-wrapper h2 {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: .3em;
}

.form-wrapper>p {
  color: var(--gray-mid);
  margin-bottom: 2em;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-info-card {
  text-align: center;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.contact-info-card__icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  clip-path: polygon(var(--hex-point) 0%,
      calc(100% - var(--hex-point)) 0%,
      100% 50%,
      calc(100% - var(--hex-point)) 100%,
      var(--hex-point) 100%,
      0% 50%);
}

.contact-info-card h4 {
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: .3em;
}

.contact-info-card p {
  color: var(--gray-mid);
  font-size: .9rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--red);
  color: var(--white);
  padding: 50px 0 30px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer__logo img {
  height: 50px;
  filter: brightness(0) invert(1);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: background var(--transition), border-color var(--transition);
}

.footer__social a:hover {
  background: rgba(255, 255, 255, .2);
  border-color: var(--white);
}

.footer__bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .25);
  font-size: .85rem;
  opacity: .8;
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* ---------- Scroll Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: .1em;
}

.stat-item p {
  font-size: .9rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  opacity: .8;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 40px 40px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, .1);
    transition: right var(--transition);
    gap: 20px;
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__cta {
    margin-left: 0;
  }

  .navbar__toggle {
    display: flex;
  }

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

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

  .hero__content h1 {
    font-size: 2.2rem;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

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

  .hero {
    min-height: 65vh;
  }

  .hero--small {
    min-height: 35vh;
  }

  .form-wrapper {
    padding: 30px 20px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }

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

  .coverage__map iframe {
    height: 300px;
  }

  .coverage__map {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .coverage-levels {
    flex-direction: column;
    gap: 12px;
  }

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