/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
  background-color: #fff;
  color: #1c1c1e;
  font-size: 16px;
  line-height: 1.6;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #111;
  border-radius: 3px;
  transition: all 0.3s;
}

/* Default Nav (Desktop) */
header nav {
  display: flex;
  align-items: center;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  header nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  header nav.mobile-active {
    display: flex;
  }

  header nav a {
    margin: 15px 0;
    font-size: 1.2em;
  }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* Header */
header {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e0e0e0;
  z-index: 999;
}

header .logo {
  font-weight: 800;
  font-size: 1.9em;
  letter-spacing: 2px;
  color: #111;
}

header nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  font-size: 1em;
  transition: color 0.3s, transform 0.3s;
}

header nav a:hover {
  color: #0071e3;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 0 8%;
  background: linear-gradient(135deg, #f0f4f8 0%, #fff 100%);
}

.hero-content h1 {
  font-size: 3em;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.25em;
  color: #555;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content .btn {
  background: #0071e3;
  color: #fff;
  padding: 16px 50px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1em;
  text-decoration: none;
  transition: all 0.3s;
}

.hero-content .btn:hover {
  background: #005bb5;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,113,227,0.3);
}

/* Brand Highlight */
.brands {
  text-align: center;
  padding: 100px 8%;
  background: #f8f9fa;
}

.brands h2 {
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 50px;
}

.brand-logos span {
  display: inline-block;
  margin: 20px 40px;
  font-weight: 600;
  font-size: 1.1em;
  color: #111;
  transition: color 0.3s;
}

.brand-logos span:hover {
  color: #0071e3;
}

/* Services Section */
.services {
  text-align: center;
  padding: 100px 8%;
}

.service-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.service {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service h3 {
  font-size: 1.4em;
  margin-bottom: 20px;
}

/* About Section */
.about {
  text-align: center;
  padding: 100px 8%;
  max-width: 900px;
  margin: 0 auto;
}

/* Fleet Page Styles */
.fleet-page {
  text-align: center;
  padding: 100px 8%;
  background: #f8f9fa;
}

.fleet-page h1 {
  font-size: 2.8em;
  font-weight: 800;
  margin-bottom: 15px;
}

.fleet-page p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Fleet Grid */
.fleet-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Fleet Card */
.fleet-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.fleet-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.fleet-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fleet-item h3 {
  font-size: 1.4em;
  font-weight: 700;
  margin: 20px;
  color: #111;
}
.fleet-item p {
  font-size: 1em;
  color: #555;
  margin: 0 20px 20px;
}

/* Contact Section */
.contact {
  text-align: center;
  padding: 100px 8%;
  background: #f8f9fa;
}

/* --- Gallery --- */
.fleet-gallery {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}

.fleet-gallery h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111;
}

.gallery-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  padding-bottom: 10px;
}

.gallery {
  display: inline-flex;
  gap: 30px;
  animation: scrollGallery 30s linear infinite;
}

.gallery img {
  width: 350px;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Auto-scroll animation */
@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .gallery img {
    width: 280px;
    height: 180px;
  }
  .fleet-grid {
    padding: 0 10px;
    gap: 25px;
  }
}

.contact h2 {
  font-size: 2.5em;
  font-weight: 800;
  margin-bottom: 50px;
  color: #111;
}

/* Form Styling */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.contact form:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* Form Inputs */
.contact input,
.contact select,
.contact textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1em;
  color: #111;
  outline: none;
  transition: all 0.3s;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border-color: #0071e3;
  box-shadow: 0 0 10px rgba(0,113,227,0.2);
}

/* Placeholder */
.contact input::placeholder,
.contact select::placeholder,
.contact textarea::placeholder {
  color: #999;
  font-weight: 500;
}

/* Error Message Styling */
.error {
  color: #ff4d4f;
  font-size: 0.9em;
  margin-top: 5px;
  min-height: 18px;
  text-align: left;
}

/* Button Styling */
.contact button {
  background: #0071e3;
  color: #fff;
  padding: 16px;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  font-size: 1.05em;
  cursor: pointer;
  transition: all 0.3s;
}

.contact button:hover {
  background: #005bb5;
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,113,227,0.3);
}

/* Responsive Form */
@media (max-width: 768px) {
  .contact form {
    padding: 40px 20px;
  }

  .contact h2 {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .contact form {
    padding: 30px 15px;
  }

  .contact h2 {
    font-size: 1.8em;
  }
}

/* Footer */
footer {
  background: #f5f5f7;
  padding: 50px 8%;
  color: #333;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-content h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-content a {
  display: block;
  color: #333;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-content a:hover {
  color: #0071e3;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9em;
  color: #666;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}
