/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
    border-radius: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="30" cy="5" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="15" r="0.8" fill="%23ffffff" opacity="0.1"/><circle cx="70" cy="8" r="0.6" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="12" r="0.4" fill="%23ffffff" opacity="0.1"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-20px); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.car-wash-animation {
    position: relative;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
}

.water-drops {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.water-drops span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #60a5fa;
    border-radius: 50%;
    animation: drop 2s ease-in-out infinite;
}

.water-drops span:nth-child(1) { left: -30px; animation-delay: 0s; }
.water-drops span:nth-child(2) { left: -15px; animation-delay: 0.2s; }
.water-drops span:nth-child(3) { left: 0px; animation-delay: 0.4s; }
.water-drops span:nth-child(4) { left: 15px; animation-delay: 0.6s; }
.water-drops span:nth-child(5) { left: 30px; animation-delay: 0.8s; }

@keyframes drop {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% { 
        transform: translateY(100px) scale(0.3);
        opacity: 0;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8fafc;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: white;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.services-cta {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: #f8fafc;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.customer .name {
    font-weight: 600;
    color: #1e293b;
}

.customer .location {
    color: #64748b;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Services Detail */
.services-detail {
    padding: 4rem 0;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
    border-bottom: 3px solid #2563eb;
    padding-bottom: 0.5rem;
}

.service-detail-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.service-detail-card.featured {
    border: 2px solid #2563eb;
}

.service-detail-card.deluxe {
    border: 2px solid #7c3aed;
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.service-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-image i {
    font-size: 2.5rem;
    color: white;
}

.service-content {
    flex: 1;
    position: relative;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.service-features i {
    color: #10b981;
    margin-right: 0.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.deluxe-price {
    color: #7c3aed;
}

.deluxe-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.feature-column h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.deluxe-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: #7c3aed;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.extra-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.extra-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.extra-service-item i {
    color: #2563eb;
    margin-right: 1rem;
}

.extra-price {
    font-weight: 600;
    color: #2563eb;
}

/* Pricing */
.pricing {
    padding: 4rem 0;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-button.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.pricing-tab-content {
    display: none;
}

.pricing-tab-content.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #64748b;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.pricing-features i {
    color: #10b981;
    margin-right: 0.5rem;
}

.pricing-duration {
    color: #64748b;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Extra Services Pricing */
.extra-pricing {
    padding: 4rem 0;
    background: #f8fafc;
}

.extra-pricing h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.extra-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.extra-service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.extra-service-card:hover {
    transform: translateY(-5px);
}

.extra-service-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.extra-service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.extra-service-card .extra-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Membership */
.membership {
    padding: 4rem 0;
}

.membership h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.membership > p {
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
}

.membership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.membership-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.membership-card.gold {
    border-color: #fbbf24;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.membership-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.membership-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.membership-card.gold .membership-price {
    color: #d97706;
}

.membership-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.membership-card li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.membership-card i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* About Page Styles */
.about-story {
    padding: 4rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.story-text p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    text-align: center;
}

.image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.mission-values {
    padding: 4rem 0;
    background: #f8fafc;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mission-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.team {
    padding: 4rem 0;
}

.team h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.member-photo i {
    font-size: 2.5rem;
    color: white;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.6;
}

.environmental {
    padding: 4rem 0;
    background: #f0fdf4;
}

.environmental h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.environmental-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.environmental-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.environmental-text p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.environmental-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.env-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.env-feature i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 0.25rem;
}

.env-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.env-feature p {
    color: #4b5563;
    font-size: 0.9rem;
    margin: 0;
}

.environmental-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4b5563;
    font-size: 0.9rem;
}

.achievements {
    padding: 4rem 0;
}

.achievements h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-card i {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.achievement-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.achievement-card p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section h2,
.booking-form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-top: 0.25rem;
}

.contact-method h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-method p {
    color: #4b5563;
    margin: 0;
}

.hours-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.map-section {
    margin-top: 2rem;
}

.map-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.map-placeholder {
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 0.5rem;
    padding: 3rem;
    text-align: center;
    color: #64748b;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

/* Form Styles */
.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.quick-contact {
    padding: 3rem 0;
    background: #f8fafc;
}

.quick-contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.quick-contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    text-decoration: none;
    color: #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 150px;
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    color: #1e293b;
}

.quick-contact-item i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.faq {
    padding: 4rem 0;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.faq-item p {
    color: #4b5563;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #60a5fa;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item i {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 1rem 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .car-wash-animation {
        font-size: 4rem;
        margin-top: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        flex-direction: column;
        text-align: center;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .environmental-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .deluxe-features {
        grid-template-columns: 1fr;
    }

    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }

    .quick-contact-methods {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .features h2,
    .services-preview h2,
    .testimonials h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .service-card,
    .pricing-card {
        padding: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Enhanced Booking Form Styles */
.booking-form-section {
    width: 100%;
    max-width: none;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.booking-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.booking-steps {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #2563eb;
    color: white;
}

.step span {
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
}

.step.active span {
    color: #1e293b;
    font-weight: 500;
}

.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.booking-form {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

.form-step {
    display: none;
    padding: 2rem;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

/* Vehicle Selection */
.vehicle-selection {
    margin-bottom: 3rem;
}

.vehicle-selection label {
    display: block;
    margin-bottom: 1rem;
    color: #374151;
    font-weight: 600;
}

.vehicle-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.vehicle-option {
    cursor: pointer;
}

.vehicle-option input[type="radio"] {
    display: none;
}

.vehicle-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vehicle-card:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.vehicle-option input[type="radio"]:checked + .vehicle-card {
    border-color: #2563eb;
    background: #2563eb;
    color: white;
}

.vehicle-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: inherit;
}

.vehicle-card span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Service Selection */
.service-selection {
    margin-bottom: 3rem;
}

.service-selection label {
    display: block;
    margin-bottom: 1rem;
    color: #374151;
    font-weight: 600;
}

.service-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-package {
    cursor: pointer;
    position: relative;
}

.service-package.popular .package-card {
    border-color: #fbbf24;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.service-package input[type="radio"] {
    display: none;
}

.package-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-card:hover {
    border-color: #2563eb;
    background: #eff6ff;
    transform: translateY(-2px);
}

.service-package input[type="radio"]:checked + .package-card {
    border-color: #2563eb;
    background: #2563eb;
    color: white;
}

.service-package input[type="radio"]:checked + .package-card .package-features {
    color: rgba(255, 255, 255, 0.9);
}

.popular-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #fbbf24;
    color: #92400e;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.package-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-package input[type="radio"]:checked + .package-card .package-icon {
    background: rgba(255, 255, 255, 0.2);
}

.package-icon i {
    font-size: 1.5rem;
    color: white;
}

.package-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: inherit;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-package input[type="radio"]:checked + .package-card .package-price {
    color: white;
}

.package-features {
    list-style: none;
    text-align: left;
    font-size: 0.85rem;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

.package-features i {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 0.7rem;
}

.service-package input[type="radio"]:checked + .package-card .package-features i {
    color: rgba(255, 255, 255, 0.8);
}

/* Extras Selection */
.extras-selection {
    margin-bottom: 2rem;
}

.extras-selection label {
    display: block;
    margin-bottom: 1rem;
    color: #374151;
    font-weight: 600;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.extra-option {
    cursor: pointer;
}

.extra-option input[type="checkbox"] {
    display: none;
}

.extra-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.extra-card:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.extra-option input[type="checkbox"]:checked + .extra-card {
    border-color: #10b981;
    background: #10b981;
    color: white;
}

.extra-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #10b981;
}

.extra-option input[type="checkbox"]:checked + .extra-card i {
    color: white;
}

.extra-card span {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.extra-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: #10b981;
}

.extra-option input[type="checkbox"]:checked + .extra-card .extra-price {
    color: rgba(255, 255, 255, 0.9);
}

/* Date & Time Selection */
.datetime-selection {
    display: grid;
    gap: 2rem;
}

.date-picker-section {
    margin-bottom: 2rem;
}

.date-picker-section label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
}

.modern-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.modern-input:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.date-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.date-info i {
    color: #2563eb;
}

.time-slots-section label {
    display: block;
    margin-bottom: 1rem;
    color: #374151;
    font-weight: 600;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.75rem;
}

.time-slot {
    cursor: pointer;
}

.time-slot input[type="radio"] {
    display: none;
}

.time-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-card:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.time-slot input[type="radio"]:checked + .time-card {
    border-color: #2563eb;
    background: #2563eb;
    color: white;
}

/* Personal Information */
.personal-info {
    margin-bottom: 2rem;
}

.modern-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.modern-checkbox input[type="checkbox"] {
    display: none;
}

.modern-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.modern-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.modern-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.checkbox-text {
    color: #374151;
    line-height: 1.5;
}

.checkbox-text a {
    color: #2563eb;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.btn-submit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Price Summary */
.price-summary {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    height: fit-content;
    min-width: 280px;
}

.price-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 1rem;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    color: #64748b;
    font-weight: 500;
}

.summary-value {
    color: #1e293b;
    font-weight: 600;
}

.extras-summary {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.extras-summary .summary-label {
    margin-bottom: 0.5rem;
}

#extrasList {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    color: #4b5563;
}

.summary-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0.5rem;
    color: white;
}

.total-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.total-price {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Responsive Design for Booking Form */
@media (max-width: 1200px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-summary {
        position: static;
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-steps {
        gap: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step span {
        font-size: 0.8rem;
    }

    .vehicle-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-packages {
        grid-template-columns: 1fr;
    }

    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .time-slots {
        grid-template-columns: repeat(4, 1fr);
    }

    .step-navigation {
        padding: 1rem;
    }

    .step-navigation .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .form-step {
        padding: 1rem;
    }

    .vehicle-options {
        grid-template-columns: 1fr;
    }

    .extras-grid {
        grid-template-columns: 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-steps {
        flex-direction: column;
        gap: 1rem;
    }

    .step {
        flex-direction: row;
        gap: 1rem;
    }

    .step-number {
        margin-bottom: 0;
    }
}
