@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #29ECFF;
    --primary-dark: #00BCD4;
    /* Slightly darker teal for contrast/hover */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f4faff;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 4px 20px rgba(41, 236, 255, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
    font-style: italic;
    /* Adding speed/motion vibe */
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    /* Removing gradient for cleaner look, relying on shape/style */
    text-shadow: 2px 2px 0px var(--primary);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(41, 236, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 236, 255, 0.6);
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--primary);
    /* Fixed: Added border-style 'solid' */
    color: var(--text-dark);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-dark);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(41, 236, 255, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    /* Removed text styles */
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    /* Reduced gap to fit buttons */
    list-style: none;
    align-items: center;
    /* Ensure vertical alignment */
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

/* Sections */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero */
.hero {
    min-height: 100vh;
    /* Fixed: Changed '100dvh' to '100vh' for better compatibility if needed, or keeping modern unit is fine but often safer */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Fixed: was 'center' for just one column, better for two */
    padding-top: 8rem;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    /* Clean abstract shape using CSS instead of external image for now */
    background: radial-gradient(circle at center, rgba(41, 236, 255, 0.1) 0%, transparent 70%);
}

.car-shape {
    width: 100%;
    height: 100%;
    background: url('hero-car.png') no-repeat center center;
    /* Placeholder */
    background-size: contain;
    /* Fallback visual if image missing */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10rem;
    color: var(--primary);
    opacity: 0.8;
}

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    /* Smoother shadow */
    transition: transform 0.3s ease;
    border: 1px solid rgba(41, 236, 255, 0.1);
    /* Subtle primary border */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    /* Top accent bar */
    background: var(--primary);
}

.location-card:hover {
    transform: translateY(-10px);
}

.location-icon {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* Services Section Styling */
/* Services Section Styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    /* Wider text */
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Very subtle border */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Featured/Highlight styling */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(41, 236, 255, 0.15);
    border-color: rgba(41, 236, 255, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--bg-light);
    transition: background 0.3s;
}

.service-card:hover::before {
    background: var(--primary);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.card-header i {
    font-size: 2.2rem;
    color: var(--primary);
    background: rgba(41, 236, 255, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.card-header h3 {
    margin-bottom: 0;
    font-size: 1.6rem;
    font-style: italic;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.service-features li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.badge {
    background: var(--primary);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.tag {
    background: var(--bg-light);
    border: 1px solid var(--primary);
    /* border style fixed */
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.highlight-bg {
    background: linear-gradient(135deg, #ffffff 0%, #e6fcfe 100%);
    border: none;
    box-shadow: 0 10px 40px rgba(41, 236, 255, 0.2);
    /* Slightly stronger shadow to compensate */
}

/* Layout adjustments for large screens */
@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Force 2x2 for 4 items */
    }
}

.btn.small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    width: fit-content;
    margin-top: auto;
}

/* Contact */
.contact {
    background-color: var(--bg-light);
    border-radius: 30px;
    margin: 4rem auto;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    /* Slightly wider */
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    /* Larger touch area */
    border-radius: 12px;
    border: 2px solid transparent;
    /* Prepare for focus state */
    background: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(41, 236, 255, 0.2);
    transform: translateY(-2px);
}

.select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-color: #ffffff;
}

.select-arrow {
    position: absolute;
    right: 1.5rem;
    color: var(--primary-dark);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-wrapper:focus-within .select-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #999;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-visual {
        width: 100%;
        height: 300px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }
}

/* Why Choose Us */
.why-us-section {
    background-color: var(--bg-light);
    text-align: center;
    padding-bottom: 2rem;
}

.why-us-header h3 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 4rem 2rem;
    margin-top: 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    text-align: center;
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(41, 236, 255, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(41, 236, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
}

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

.author-info h4 {
    margin-bottom: 0px;
    font-size: 1.1rem;
    font-style: normal;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* Enhanced Footer */
.footer-logo {
    filter: brightness(0) invert(1);
    /* White logo for dark footer */
}

.footer-content {
    align-items: start;
    /* Align top */
}

.footer-links {
    list-style: none;
    margin-top: 1rem;
}

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

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: #ccc;
}

.contact-info i {
    color: var(--primary);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}