/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-indigo: #6366F1;
    --wasabi-green: #84CC16;
    --warm-gray: #6B7280;
    --light-gray: #F9FAFB;
    --white: #FFFFFF;
    --dark-gray: #374151;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
}

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

/* Centered Content Sections */
.centered-content {
    text-align: center;
}

.centered-content .container > * {
    margin-left: auto;
    margin-right: auto;
}

.centered-content .locations-content {
    text-align: left;
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-car-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-car-image {
        height: 250px;
    }
}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #5855EB;
}

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

.btn-secondary:hover {
    background: var(--light-gray);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--light-gray);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Fleet Overview */
.fleet-overview {
    padding: 80px 0;
    background: var(--light-gray);
}

.fleet-overview h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.fleet-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.fleet-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.fleet-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 20px 10px;
    color: var(--text-primary);
}

.fleet-item p {
    color: var(--text-secondary);
    margin: 0 20px;
    font-size: 14px;
}

.price {
    color: var(--primary-indigo);
    font-weight: 600;
    font-size: 18px;
    margin: 15px 20px 20px;
}

/* Locations Map */
.locations-map {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing-info {
    padding: 80px 0;
    background: var(--white);
}

.pricing-info h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-indigo);
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.price-large {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-indigo);
    margin-bottom: 30px;
}

.price-large span {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.pricing-card li:before {
    content: "✓";
    color: var(--wasabi-green);
    font-weight: 600;
    position: absolute;
    left: 0;
}

/* Pickup Locations */
.pickup-locations {
    padding: 80px 0;
    background: var(--light-gray);
}

.pickup-locations h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.locations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.locations-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.locations-text p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
}

.locations-text ul {
    list-style: none;
}

.locations-text li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.locations-text li:before {
    content: "📍";
    position: absolute;
    left: 0;
}

/* Business Solutions */
.business-solutions {
    padding: 80px 0;
    background: var(--white);
}

.business-solutions h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.business-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.business-feature {
    text-align: center;
    padding: 20px;
}

.business-feature h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.business-feature p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Add-ons Products */
.addons-products {
    padding: 80px 0;
    background: var(--light-gray);
}

.addons-products h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.product-icon {
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-indigo);
    margin-bottom: 20px;
}

.btn-product {
    background: var(--wasabi-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

.btn-product:hover {
    background: #65A30D;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    background: var(--light-gray);
    padding: 12px;
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-details a {
    color: var(--primary-indigo);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details address {
    font-style: normal;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo .brand-name {
    color: var(--white);
}

.footer-navigation {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-group h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.footer-links-group a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.footer-links-group a:hover {
    color: var(--wasabi-green);
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 8px;
    color: #D1D5DB;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    color: var(--wasabi-green);
}

.footer-bottom {
    border-top: 1px solid #4B5563;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .locations-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-navigation {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .features-grid,
    .fleet-grid,
    .pricing-cards,
    .products-grid,
    .business-features,
    .contact-info {
        grid-template-columns: 1fr;
    }
}