/* 
        * DRIVEEASY KENYA STYLES
        * Clean, responsive design with Kenyan context
        * Color scheme: Blue and orange maintained for brand consistency
        */

/* Base styles and variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #003366; /* Deep blue - professional and trustworthy */
  --accent-color: #ff8c00; /* Vibrant orange - energy and warmth */
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --gray-900: #212529;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--primary-color);
  color: var(--white);
}

.mobile-menu-header .logo {
  color: var(--white);
}

.close-menu {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
}

.mobile-nav {
  list-style: none;
  padding: 1rem;
}

.mobile-nav li {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 0.5rem;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 1.1rem;
}

.mobile-nav a:hover {
  color: var(--accent-color);
}

/* Page Sections */
.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

.section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #004080 100%);
  color: var(--white);
  padding: 6rem 0 4rem;
  text-align: center;
  margin-top: 80px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.hero-content {
  max-width: 100%;
  padding: 0 1rem;
}

.hero-image-card {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.hero-image-card .card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  border-radius: 12px;
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-align: center;
  min-width: 160px;
}

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

.btn-primary:hover {
  background-color: #e67c00;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Grid System */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

/* Car Cards */
.car-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
  max-width: 400px;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.car-card-content {
  padding: 1.25rem;
}

.car-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.car-type {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.car-price {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* Benefits Section */
.benefits {
  background-color: var(--gray-100);
}

.benefit-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.benefit-item p {
  font-size: 0.95rem;
}

/* Fleet Section */
.fleet-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 1rem;
  text-align: center;
  margin-top: 80px;
}

.fleet-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.filters {
  background: var(--gray-100);
  padding: 1.5rem 0;
  text-align: center;
}

.filter-btn {
  background: var(--white);
  border: 2px solid var(--gray-300);
  padding: 0.6rem 1.2rem;
  margin: 0 0.25rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* About Section */
.about-story {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-story img {
  width: 100%;
  border-radius: 12px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stars {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.testimonial-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 1rem;
}

.testimonial-author h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* Contact/Booking Section */
.booking-section {
  background: var(--gray-100);
}

.booking-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-card,
.contact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.25rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-color);
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--white);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-item div h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-item div p {
  font-size: 0.95rem;
}

.emergency-contact {
  background: var(--accent-color);
  color: var(--white);
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
}

.emergency-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 2.5rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gray-300);
  font-size: 0.9rem;
}

/* Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design - Tablet */
@media (min-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

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

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

  .form-row {
    flex-direction: row;
  }

  .form-row .form-group {
    flex: 1;
  }
}

/* Responsive Design - Desktop */
@media (min-width: 992px) {
  .hero {
    padding: 8rem 0 6rem;
  }

  .hero .container {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-content {
    max-width: 50%;
    padding: 0;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    justify-content: flex-start;
  }

  .section {
    padding: 5rem 0;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-story {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

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

  .booking-grid {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Responsive Design - Large Desktop */
@media (min-width: 1200px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }
}

/* Mobile menu button adjustment for larger screens */
@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

/* Mobile menu adjustment for smaller screens */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .fleet-header h2 {
    font-size: 2rem;
  }

  .mobile-nav a {
    font-size: 1.1rem;
  }
}

/* Very small devices */
@media (max-width: 360px) {
  .logo {
    font-size: 1.25rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.75rem 1rem;
    min-width: 140px;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
} /* 
        * DRIVEEASY KENYA STYLES
        * Clean, responsive design with Kenyan context
        * Color scheme: Blue and orange maintained for brand consistency
        */

/* Base styles and variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #003366; /* Deep blue - professional and trustworthy */
  --accent-color: #ff8c00; /* Vibrant orange - energy and warmth */
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --gray-900: #212529;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--white);
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1001;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
  background: var(--primary-color);
  color: var(--white);
}

.mobile-menu-header .logo {
  color: var(--white);
}

.close-menu {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
}

.mobile-nav {
  list-style: none;
  padding: 1rem;
}

.mobile-nav li {
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 0.5rem;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 1.1rem;
}

.mobile-nav a:hover {
  color: var(--accent-color);
}

/* Page Sections */
.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

.section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #004080 100%);
  color: var(--white);
  padding: 6rem 0 4rem;
  text-align: center;
  margin-top: 80px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.hero-content {
  max-width: 100%;
  padding: 0 1rem;
}

.hero-image-card {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.hero-image-card .card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  border-radius: 12px;
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-align: center;
  min-width: 160px;
}

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

.btn-primary:hover {
  background-color: #e67c00;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Grid System */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

/* Car Cards */
.car-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
  max-width: 400px;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.car-card-content {
  padding: 1.25rem;
}

.car-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.car-type {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.car-price {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* Benefits Section */
.benefits {
  background-color: var(--gray-100);
}

.benefit-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.benefit-item p {
  font-size: 0.95rem;
}

/* Fleet Section */
.fleet-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 1rem;
  text-align: center;
  margin-top: 80px;
}

.fleet-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.filters {
  background: var(--gray-100);
  padding: 1.5rem 0;
  text-align: center;
}

.filter-btn {
  background: var(--white);
  border: 2px solid var(--gray-300);
  padding: 0.6rem 1.2rem;
  margin: 0 0.25rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* About Section */
.about-story {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-story img {
  width: 100%;
  border-radius: 12px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stars {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.testimonial-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 1rem;
}

.testimonial-author h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-author p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* Contact/Booking Section */
.booking-section {
  background: var(--gray-100);
}

.booking-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-card,
.contact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.25rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-color);
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--white);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-item div h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-item div p {
  font-size: 0.95rem;
}

.emergency-contact {
  background: var(--accent-color);
  color: var(--white);
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
}

.emergency-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 2.5rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gray-300);
  font-size: 0.9rem;
}

/* Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design - Tablet */
@media (min-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

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

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

  .form-row {
    flex-direction: row;
  }

  .form-row .form-group {
    flex: 1;
  }
}

/* Responsive Design - Desktop */
@media (min-width: 992px) {
  .hero {
    padding: 8rem 0 6rem;
  }

  .hero .container {
    flex-direction: row;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-content {
    max-width: 50%;
    padding: 0;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    justify-content: flex-start;
  }

  .section {
    padding: 5rem 0;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-story {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

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

  .booking-grid {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Responsive Design - Large Desktop */
@media (min-width: 1200px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }
}

/* Mobile menu button adjustment for larger screens */
@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

/* Mobile menu adjustment for smaller screens */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .fleet-header h2 {
    font-size: 2rem;
  }

  .mobile-nav a {
    font-size: 1.1rem;
  }
}

/* Very small devices */
@media (max-width: 360px) {
  .logo {
    font-size: 1.25rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.75rem 1rem;
    min-width: 140px;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}
