* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #faf9f7;
    color: #1e1e1e;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.btn {
    display: inline-block;
    background: #d35400;
    color: #fff;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.btn:hover {
    background: #b34700;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #d35400;
}

.btn-nav {
    padding: 0.5rem 1.4rem;
    font-size: 0.9rem;
}

.btn-cta {
    background: #fff;
    color: #d35400;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background: #f0f0f0;
    color: #b34700;
}

.btn-decline {
    background: #555;
}

.btn-decline:hover {
    background: #444;
}

.btn-full {
    width: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1c1c1c;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: #d35400;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

nav a:hover {
    color: #d35400;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, #1e2a38 0%, #2c3e50 100%);
    color: #fff;
    padding: 5rem 0 4rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-emoji {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.hero h1 span {
    color: #d35400;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: #1c1c1c;
    color: #fff;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: #555;
}

.section-dark .section-subtitle {
    color: #bbb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    color: #1e1e1e;
    border-radius: 10px;
    padding: 2rem 1.8rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

.feature-card h3 {
    margin-bottom: 0.8rem;
}

/* Garage cards */
.garage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.garage-card {
    background: #2c3e50;
    color: #fff;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.garage-card:hover {
    transform: scale(1.03);
    background: #344a5c;
}

.garage-emoji {
    font-size: 3.5rem;
}

.garage-card h3 {
    font-size: 1.4rem;
}

.garage-card p {
    color: #ccc;
}

/* Testimonials */
.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0.5rem 2rem;
    margin-top: 2rem;
    scrollbar-width: thin;
}

.testimonial-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #fff;
    color: #1e1e1e;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    font-style: italic;
}

.testimonial-card .author {
    margin-top: 1.2rem;
    font-weight: 700;
    font-style: normal;
    color: #d35400;
}

/* CTA */
.cta {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(120deg, #d35400, #e67e22);
    color: #fff;
    border-radius: 0 0 20px 20px;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: #121212;
    color: #aaa;
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-grid h4 {
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li {
    margin-bottom: 0.6rem;
}

.footer-grid a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-grid a:hover {
    color: #d35400;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1c1c1c;
    color: #ddd;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 9999;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    color: #1e1e1e;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 550px;
    width: 90%;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.modal-success {
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #555;
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 980px) {
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #1c1c1c;
        transform: translateY(-150%);
        transition: transform 0.35s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        padding: 2rem 0;
    }
    nav.open {
        transform: translateY(0);
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.8rem;
    }
    .mobile-toggle {
        display: flex;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-emoji {
        font-size: 4rem;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}