/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #1E293B;
    background-color: #fff;
  }
  
  /* Root Variables */
  :root {
    --primary-color: #2F5C7A;
    --secondary-color: #F59E0B;
    --accent-color: #1F4A63;
    --light-bg: #F8FAFC;
    --border-color: #E2E8F0;
  }
  
  /* Utility Classes */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  .text-center {
    text-align: center;
  }
  /* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0rem 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.navbar .logo {
  width: 220px;
  transition: transform 0.3s ease;
}

/* Nav Menu Container */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Nav Links */
.navbar .nav-links {
  display: flex;
  gap: 2rem;
}
.navbar .nav-links a {
  color: #1E293B;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar .nav-links a:hover {
  color: var(--primary-color);
}

/* Nav Buttons */
.nav-buttons {
  display: flex;
  gap: 1rem;
}
.nav-buttons a {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-quote {
  background: var(--primary-color);
  color: #fff;
}
.btn-quote:hover {
  background: #2563EB;
  transform: translateY(-2px);
}
.btn-contact {
  background: var(--secondary-color);
  color: #fff;
}
.btn-contact:hover {
  background: #0E9B74;
  transform: translateY(-2px);
}

/* Hamburger Icon */
.hamburger {
  display: none; /* Hidden by default on larger screens */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #1E293B;
  border-radius: 3px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Hide nav links/buttons on mobile */
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0rem 0;
  }
  
  /* Show nav menu when active */
  .navbar.nav-active .nav-menu {
    display: flex;
  }
  
  .hamburger {
    display: flex; /* Show hamburger on mobile */
  }
  
  .nav-links,
  .nav-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .nav-links a, .nav-buttons a {
    margin: 0.5rem 0;
  }
  .navbar {
    margin-top: -2rem; /* Adjust navbar position */
  }
}
  
 /* Hero Section */
.hero {
    position: relative;
    height: 80vh; /* Full viewport height */
    background: url('../images/hero-background.webp') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.421); /* Dark overlay for clarity */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  }
  
  .hero p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  }
  
  .hero  {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  }
  
  .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    
  }
  
  .cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    font-size: 16px;
  }
  
  .cta-buttons .btn-primary {
    background: var(--primary-color);
    color: #fff;
  }
  
  .cta-buttons .btn-primary:hover {
    background: #2563EB;
    transform: translateY(-3px);
  }
  
  .cta-buttons .btn-secondary {
    background: var(--secondary-color);
    color: #fff;
  }
  
  .cta-buttons .btn-secondary:hover {
    background: #0E9B74;
    transform: translateY(-3px);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero {
      height: 80vh;
    }
    .hero h1 {
      font-size: 2.5rem;
    }
    .hero h2 {
      font-size: 1.5rem;
    }
    .hero .tagline {
      font-size: 1rem;
    }
    .cta-buttons {
      flex-direction: column;
    }
  }
  
 /* Services Section */
.services-section {
    position: relative;
    padding: 6rem 2rem;
    background: url('../images/Frame\ 11.png') center/cover no-repeat;
    overflow: hidden;
    color: #fff;
    margin-top: -2rem;
  }
  
  /* Overlay for readability */
  .services-section .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
  }
  
  /* Container for content */
  .services-section .section-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Section Title & Description */
  .section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--accent-color);
  }
  .section-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
  }
  
  /* Cards Grid */
  .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  /* Individual Service Card */
  .service-card {
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Icon Styling */
  .service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  /* Card Headings & Lists */
  .service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
  }
  .service-card ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    .section-description {
      font-size: 1rem;
    }
  }
  
  /* Free Quote Form Section */
.quote-form {
    background: #fff;
    padding: 4rem 5%;
  }
  
  .quote-form .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .quote-form h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1E293B;
  }
  
  /* Form Grid Layout */
  .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
  }
  
  /* Form Controls */
  .form-control {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(47, 92, 122, 0.2);
  }
  
  /* Button Styles */
  .btn {
    display: inline-block;
    text-align: center;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .btn-primary {
    background: var(--primary-color);
    color: #fff;
  }
  
  .btn-primary:hover {
    background: #2563EB;
    transform: translateY(-2px);
  }
  
  .full-width {
    width: 100%;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 480px) {
    .quote-form {
      padding: 3rem 2%;
    }
    
    .quote-form h2 {
      font-size: 1.75rem;
    }
    
    .form-grid {
      padding: 1.5rem;
      gap: 1rem;
    }
    
    .form-control {
      padding: 0.8rem;
      font-size: 0.9rem;
    }
    
    .btn {
      padding: 0.8rem;
      font-size: 0.9rem;
    }
  }
  /* Gallery Section */
.gallery-section {
  padding: 4rem 2%;
  background: #fff;
}

.gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.5rem;
  color: #1E293B;
  margin-bottom: 0.5rem;
}

.gallery-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 300px; /* Fixed height for uniform image display */
  object-fit: cover; /* Ensures images cover the container without distortion */
  border-radius: 8px;
  display: block;
}

/* Mobile Horizontal Scrolling */
@media (max-width: 480px) {
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .gallery-grid img {
    flex: 0 0 100%;
    scroll-snap-align: start;
    height: 250px; /* Adjust height if needed for mobile */
  }
}
  /* Mobile Wash Section */
  .mobile-wash {
    background: var(--light-bg);
    padding: 4rem 5%;
    text-align: center;
    border-radius: 16px;
    margin: 2rem 5%;
    border: 1px solid var(--border-color);
  }
  
/* Testimonials Section */
.testimonials {
    padding: 4rem 2%;
    background: #f8fafc;
  }
  
  .testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
  }
  
  /* Testimonial Grid */
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
  }
  
  /* Testimonial Card */
  .testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Review Header */
  .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  .client-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--primary-color);
  }
  .client-info h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #1e293b;
  }
  .rating {
    margin-top: 0.25rem;
  }
  .rating i {
    color: #f59e0b;
    margin-right: 0.1rem;
  }
  
  /* Review Text & Source */
  .review-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-style: italic;
  }
  .review-source {
    font-size: 0.875rem;
    color: #888;
    text-transform: uppercase;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 480px) {
    .testimonials h2 {
      font-size: 2rem;
    }
    .client-photo {
      width: 50px;
      height: 50px;
    }
    .client-info h3 {
      font-size: 1.1rem;
    }
    .review-text {
      font-size: 0.9rem;
    }
  }
  /* Shared Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
    text-align: center;
  }
  
  /* Mobile Car Wash Section */
  .mobile-wash {
    background: #F8FAFC;
    padding: 4rem 2%;
    text-align: center;
  }
  .mobile-wash h2 {
    font-size: 2.5rem;
    color: #1E293B;
    margin-bottom: 1rem;
  }
  .mobile-wash p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
  }
  .mobile-wash .btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  .mobile-wash .btn-secondary {
    background: var(--secondary-color);
    color: #fff;
  }
  .mobile-wash .btn-secondary:hover {
    background: #0E9B74;
    transform: translateY(-2px);
  }
  
  /* About Us Section */
  .about-us {
    background: #fff;
    padding: 4rem 2%;
  }
  .about-us h2 {
    font-size: 2.5rem;
    color: #1E293B;
    margin-bottom: 1rem;
  }
  .about-us p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Contact Section */
  .contact-section {
    background: #F8FAFC;
    padding: 4rem 2%;
  }
  .contact-section h2 {
    font-size: 2.5rem;
    color: #1E293B;
    margin-bottom: 1rem;
  }
  .contact-section p {
    font-size: 1rem;
    color: #555;
    margin: 0.5rem 0;
  }
  .map-container {
    margin-top: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
  }
  
  /* Footer */
  footer {
    background: #1E293B;
    color: #fff;
    padding: 2rem 2%;
    text-align: center;
  }
  footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .social-links {
    margin: 1rem 0;
  }
  .social-links a {
    color: #fff;
    margin: 0 0.5rem;
    font-size: 1.25rem;
    transition: color 0.3s ease;
  }
  .social-links a:hover {
    color: var(--secondary-color);
  }
  .developer-credit {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 1rem;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 480px) {
    .mobile-wash h2,
    .about-us h2,
    .contact-section h2 {
      font-size: 2rem;
    }
    .mobile-wash p,
    .about-us p,
    .contact-section p {
      font-size: 0.95rem;
    }
    footer p {
      font-size: 0.8rem;
    }
  }