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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a1a1a;
    min-height: 100vh;
    padding: 0;
}

/* Hero Background */
.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
                url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

header h1,
header p {
    position: relative;
    z-index: 1;
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

header p {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Car Showcase Strip */
.car-showcase {
    display: flex;
    height: 120px;
    overflow: hidden;
    background: #000;
}

.car-showcase img {
    flex: 1;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.3s;
}

.car-showcase img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Step Indicator */
.step-indicator {
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
    background: #f5f5f5;
    border-bottom: 3px solid #d32f2f;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.4;
    transition: all 0.3s;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 45px;
    height: 45px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
    transition: all 0.3s;
    border: 3px solid transparent;
}

.step.active .step-number {
    background: #d32f2f;
    color: white;
    transform: scale(1.15);
    border-color: #b71c1c;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* Form Steps */
.form-step {
    display: none;
    padding: 50px;
    animation: fadeIn 0.4s;
    background: white;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #d32f2f;
    font-weight: 700;
}

h3 {
    font-size: 1.4rem;
    color: #2a5298;
    margin: 35px 0 20px;
    font-weight: 600;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

select {
    cursor: pointer;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

input:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
    border-color: #e0e0e0;
}

/* Buttons */
.btn {
    padding: 14px 36px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #d32f2f;
    color: white;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.4);
}

.btn-next {
    background: #1e3c72;
    color: white;
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.3);
}

.btn-next:hover {
    background: #152a52;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 60, 114, 0.4);
}

.btn-back {
    background: #757575;
    color: white;
}

.btn-back:hover {
    background: #616161;
}

.btn-secondary {
    background: #757575;
    color: white;
}

.btn-secondary:hover {
    background: #616161;
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Agreement Preview */
.agreement-preview {
    background: #fafafa;
    border-radius: 4px;
    padding: 35px;
    margin-bottom: 35px;
    border: 2px solid #e0e0e0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.agreement-section {
    margin-bottom: 30px;
}

.agreement-section h3 {
    font-size: 1.1rem;
    color: #1e3c72;
    margin-bottom: 15px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #d32f2f;
    padding-bottom: 8px;
}

.agreement-section p {
    margin: 10px 0;
    line-height: 1.8;
    color: #333;
}

.agreement-section ol {
    margin-left: 25px;
    line-height: 2;
    color: #555;
}

.agreement-section ol li {
    margin: 8px 0;
}

/* Signature Section */
.signature-section {
    margin: 35px 0;
    background: #fafafa;
    padding: 25px;
    border-radius: 4px;
}

.signature-section h3 {
    color: #d32f2f;
    margin-top: 0;
}

.signature-section p {
    color: #666;
    margin: 15px 0;
}

.signature-pad-container {
    border: 3px solid #1e3c72;
    border-radius: 4px;
    background: white;
    margin: 20px 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#signaturePad {
    display: block;
    width: 100%;
    cursor: crosshair;
    touch-action: none;
}

.signature-controls {
    margin-top: 15px;
}

/* Terms Agreement */
.terms-agreement {
    margin: 30px 0;
    padding: 25px;
    background: #fff9c4;
    border-radius: 4px;
    border-left: 5px solid #fbc02d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-agreement label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.terms-agreement input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    cursor: pointer;
}

/* Success Message */
.success-message {
    display: none;
    min-height: 500px;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.success-content {
    max-width: 600px;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.success-content h2 {
    color: #2e7d32;
    border: none;
    margin-bottom: 25px;
}

.success-content p {
    font-size: 1.15rem;
    margin: 20px 0;
    color: #555;
}

.success-content .btn {
    margin: 12px;
}

/* Footer Branding */
.footer-brand {
    background: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 0;
        border-radius: 0;
    }

    header {
        padding: 40px 20px;
    }

    header h1 {
        font-size: 2rem;
    }

    .car-showcase {
        height: 80px;
    }

    .step-indicator {
        padding: 20px 15px;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .form-step {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .success-content {
        padding: 30px 20px;
    }
}

/* ==================== HOME PAGE STYLES ==================== */

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s;
    border-bottom: 2px solid #d32f2f;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 16px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d32f2f;
}

.btn-nav {
    background: #d32f2f;
    border-radius: 4px;
    padding: 10px 24px !important;
}

.btn-nav:hover {
    background: #b71c1c;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.9) 0%, rgba(211, 47, 47, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    display: inline-block;
    background: #d32f2f;
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.4);
}

.btn-hero:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(211, 47, 47, 0.5);
}

/* Section Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-size: 2.8rem;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

/* How It Works Section */
.how-it-works-section {
    background: #f8f9fa;
}

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

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(211, 47, 47, 0.2);
}

.step-card h3 {
    font-size: 1.5rem;
    color: #1e3c72;
    margin: 20px 0 15px;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
    background: white;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-column-layout.reverse {
    direction: rtl;
}

.two-column-layout.reverse > * {
    direction: ltr;
}

.content-column {
    padding: 20px;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-list {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #d32f2f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 20px;
}

.feature-text h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 8px;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.services-section .section-title {
    color: white;
}

.large-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-box h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 1.2rem;
    color: #1e3c72;
    margin-bottom: 10px;
}

.contact-card p {
    color: #666;
    margin: 5px 0;
}

.contact-card .small {
    font-size: 0.9rem;
    color: #999;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1e3c72;
}

.btn-full {
    width: 100%;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: #d32f2f;
}

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

/* Responsive Design for Home Page */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }
}

/* Instagram Icon Animation */
.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    transform: scale(1.15);
}

.instagram-icon {
    width: 28px;
    height: 28px;
    color: #E1306C;
    transition: all 0.3s ease;
    animation: instagramPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(225, 48, 108, 0.3));
}

.instagram-link:hover .instagram-icon {
    color: #C13584;
    filter: drop-shadow(0 4px 8px rgba(225, 48, 108, 0.5));
    animation: none;
}

@keyframes instagramPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #f5f7fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #1e3c72;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 2rem;
    color: #1e3c72;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafbfc;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #444;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

.faq-answer a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
    color: #d32f2f;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.5);
    transform: translateY(-3px);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    animation: arrowBounce 2s ease-in-out infinite;
}

.back-to-top:hover svg {
    animation: none;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Responsive Styles */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        font-size: 1.1rem;
        width: 100%;
        display: block;
    }

    .btn-nav {
        margin: 20px 0 !important;
        padding: 12px 30px !important;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .how-it-works-grid,
    .why-us-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .faq-question h3 {
        font-size: 1rem !important;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .container {
        margin: 20px !important;
    }

    .form-row {
        flex-direction: column !important;
    }

    .car-showcase img {
        width: 150px !important;
        height: 100px !important;
    }

    .footer-content {
        flex-direction: column !important;
        text-align: center !important;
    }

    .footer-col {
        margin-bottom: 30px;
    }
}
