/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
  }
  
  a {
    text-decoration: none;
    color: #c0392b;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  /* Optional container helper (used in book.html) */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Navbar */
.navbar {
    display: flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c0392b;
  }
  
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links li a {
    font-weight: 500;
  }
  
  /* Mobile Menu */
  .menu-toggle {
    display: none;
    background: none;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      gap: 1rem;
      background-color: #fff;
      padding: 1rem;
      position: absolute;
      top: 70px;
      right: 20px;
      width: 200px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  
  /* Hero */
  .hero {
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    background-color: #c0392b;
    color: white;
    text-align: center;
    padding: 5rem 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn {
    background-color: #e74c3c;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background-color: #c0392b;
  }
  
  /* Sections */
  section {
    padding: 4rem 1rem;
  }
  
  .how-it-works,
  .features,
  .owner-highlight {
    text-align: center;
  }
  
  .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .step {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 220px;
    font-weight: bold;
  }
  
  /* Features */
  .features ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-left: 0;
  }
  
  .features li {
    background-color: #f4f4f4;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    font-weight: 500;
  }
  
  /* Owner CTA */
  .owner-highlight .btn {
    margin-top: 1.5rem;
  }
  
  /* Footer */
  footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
  }
  
  /* ===== Booking Page Styles (updated & responsive) ===== */
  .booking-content {
    padding: 3rem 1rem;
    text-align: center;
  }
  
  .car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .car-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
  }
  
  .car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }
  
  .car-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .car-details {
    padding: 1rem;
    text-align: left;
    font-size: 0.95rem;
    color: #333;
  }
  
  .car-details p:first-child {
    font-weight: bold;
    font-size: 1.1rem;
    color: #c0392b;
    margin-bottom: 0.3rem;
  }
  
  .car-details p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
  }
  
  /* Mobile-first tweaks */
  @media (max-width: 600px) {
    .car-card img {
      height: 180px;
    }
    .car-details {
      text-align: center;
    }
  }
  