﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .hero-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
        z-index: 2;
    }

    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.85);
    }

.breadcrumb-nav {
    position: absolute;
    top: 20px;
    left: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

    .breadcrumb-link:hover, .breadcrumb-link.active {
        color: #ffffff;
    }

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 50px;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-callback {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

    .btn-callback:hover {
        background: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(255, 255, 255, 0.4);
    }

.btn-call {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

    .btn-call:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #ffffff;
        transform: translateY(-2px);
    }

.btn-whatsapp {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

    .btn-whatsapp:hover {
        background: #20BD5A;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }

.btn-icon {
    width: 20px;
    height: 20px;
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    color: #ffffff;
}

@@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== SELL YOUR CAR SECTION ==================== */
.sell-car-section {
    background: #e8e8e8;
    padding: 70px 50px;
}

.sell-car-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sell-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sell-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.sell-subtitle {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: #3a3a3a;
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.4s ease;
    cursor: pointer;
}

    .step-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    }

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step-icon {
    width: 48px;
    height: 48px;
    color: #ffffff;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-description {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
    background: #e8e8e8;
    padding: 70px 50px;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.process-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
}

/*  .feature-card {
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.4s ease;
        cursor: pointer;
        border: 1px solid #e0e0e0;
        display: flex;
        flex-direction: column;
    }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-card.dark {
            background: #3a3a3a;
            border-color: #3a3a3a;
        }

        .feature-card.stacked {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 0;
            background: transparent;
            border: none;
        }

    .feature-sub-card {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 18px 20px;
        background: #ffffff;
        border-radius: 12px;
        border: 1px solid #e0e0e0;
        transition: all 0.4s ease;
    }

        .feature-sub-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-sub-card.dark {
            background: #3a3a3a;
            border-color: #3a3a3a;
        }

    .feature-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
        flex-shrink: 0;
    }

        .feature-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

    .feature-card:hover .feature-image img {
        transform: scale(1.05);
    }

    .feature-content {
        padding: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
        color: #3a3a3a;
        flex-shrink: 0;
    }

    .feature-card.dark .feature-icon,
    .feature-sub-card.dark .feature-icon {
        color: #ffffff;
    }

    .feature-title {
        font-size: 14px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .feature-card.dark .feature-title,
    .feature-sub-card.dark .feature-title {
        color: #ffffff;
    }

    .feature-description {
        font-size: 11px;
        color: #666666;
        line-height: 1.5;
    }

    .feature-card.dark .feature-description,
    .feature-sub-card.dark .feature-description {
        color: rgba(255, 255, 255, 0.7);
    }

    .feature-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .feature-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .feature-card:nth-child(3) {
        grid-column: 3;
        grid-row: 1;
    }

    .feature-card:nth-child(4) {
        grid-column: 1;
        grid-row: 2;
    }

    .feature-card:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
    }

    .feature-card:nth-child(6) {
        grid-column: 3;
        grid-row: 2;
    } */
/* Unique CSS for Sell Car Process Section */
.sell-process-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

    .sell-process-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .sell-process-card.dark {
        background: #3a3a3a;
        border-color: #3a3a3a;
    }

    .sell-process-card.stacked {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
        background: transparent;
        border: none;
    }

.sell-process-sub-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.4s ease;
}

    .sell-process-sub-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .sell-process-sub-card.dark {
        background: #3a3a3a;
        border-color: #3a3a3a;
    }

.sell-process-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

    .sell-process-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.sell-process-card:hover .sell-process-image img {
    transform: scale(1.05);
}

.sell-process-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sell-process-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    color: #3a3a3a;
    flex-shrink: 0;
}

.sell-process-card.dark .sell-process-icon,
.sell-process-sub-card.dark .sell-process-icon {
    color: #ffffff;
}

.sell-process-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.sell-process-card.dark .sell-process-title,
.sell-process-sub-card.dark .sell-process-title {
    color: #ffffff;
}

.sell-process-description {
    font-size: 11px;
    color: #666666;
    line-height: 1.5;
}

.sell-process-card.dark .sell-process-description,
.sell-process-sub-card.dark .sell-process-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Grid Assignments */
.sell-process-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.sell-process-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.sell-process-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.sell-process-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.sell-process-card:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.sell-process-card:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
}
/* ==================== WHY OUR NETWORK SECTION ==================== */
.why-network-section {
    background: #1a1a1a;
    padding: 70px 50px;
}

.why-network-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-network-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-network-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.why-network-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.why-network-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-content: start;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .feature-box:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

.feature-box-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
}

    .feature-box-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.feature-box:hover .feature-box-image img {
    transform: scale(1.1);
}

.feature-box-content {
    padding: 12px 14px;
}

.feature-box-title {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.network-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .network-form-wrapper form {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

.network-form-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.network-form-group {
    margin-bottom: 18px;
}

.network-form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 14px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Explicitly reset this to fix the conflict */
}

    .network-form-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .network-form-input:focus {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.3);
    }

.network-form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.network-upload-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.network-upload-box {
    height: 95px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .network-upload-box:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .network-upload-box input[type="file"] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

.network-upload-icon {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.3);
}

.network-form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 14px;
    color: #ffffff;
    outline: none;
    resize: none;
    height: 100px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Explicitly reset this */
}

    .network-form-textarea::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .network-form-textarea:focus {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.3);
    }

.network-submit-btn {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

    .network-submit-btn:hover {
        background: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }
/* ==================== PREREQUISITES SECTION ==================== */
.prerequisites-section {
    background: #f5f5f5;
    padding: 70px 50px;
}

.prerequisites-container {
    max-width: 1400px;
    margin: 0 auto;
}

.prerequisites-header {
    text-align: center;
    margin-bottom: 40px;
}

.prerequisites-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.prerequisites-subtitle {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.prerequisites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.prerequisite-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .prerequisite-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .prerequisite-card.pink {
        background: #fff5f5;
        border-color: #ffcccc;
    }

    .prerequisite-card.green {
        background: #f0fdf4;
        border-color: #bbf7d0;
    }

.prerequisite-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: #e74c3c;
}

.prerequisite-card.green .prerequisite-icon {
    color: #10b981;
}

.prerequisite-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.prerequisite-card.pink .prerequisite-card-title {
    color: #dc2626;
}

.prerequisite-card.green .prerequisite-card-title {
    color: #059669;
}

.prerequisite-card-description {
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
}

/* ==================== SELECT BRAND SECTION ==================== */
.select-brand-section {
    background: #f5f5f5;
    padding: 70px 50px;
}

.select-brand-container {
    max-width: 1400px;
    margin: 0 auto;
}

.select-brand-header {
    text-align: center;
    margin-bottom: 40px;
}

.select-brand-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.select-brand-subtitle {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.brand-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .brand-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        border-color: #d0d0d0;
    }

.brand-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.brand-card-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
}

    .brand-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.brand-card:hover .brand-card-image img {
    transform: scale(1.1);
}

.brand-card-button {
    width: 100%;
    padding: 14px;
    background: #2a2a2a;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .brand-card-button:hover {
        background: #000000;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

/* ==================== POPULAR BRANDS SECTION ==================== */
.popular-brands-section {
    background: #f5f5f5;
    padding: 70px 50px;
}

.popular-brands-container {
    max-width: 1400px;
    margin: 0 auto;
}

.popular-brands-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.brands-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.brand-logo-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 120px;
}

    .brand-logo-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border-color: #d0d0d0;
    }

    .brand-logo-box img {
        max-width: 80%;
        max-height: 60px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: all 0.3s ease;
    }

    .brand-logo-box:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

/* ==================== FAQ ACCORDION SECTION ==================== */
.faq-section {
    background: #f5f5f5;
    padding: 70px 50px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.faq-accordion {
    background: #2a2a2a;
    border-radius: 16px;
    padding: 20px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .faq-item:last-child {
        border-bottom: none;
    }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

    .faq-question:hover {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    flex: 1;
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    color: #ffffff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-answer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 56px;
    }

    .network-form-wrapper {
        height: auto;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }

    .why-network-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-form-wrapper {
        height: auto;
    }

    .prerequisites-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@@media screen and (max-width: 768px) {
    .breadcrumb-nav {
        left: 20px;
        top: 15px;
        font-size: 10px;
    }

    .network-form-wrapper {
        padding: 25px 20px;
        height: auto;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }

    .hero-btn {
        width: auto;
        padding: 12px 20px;
        font-size: 13px;
    }

    .btn-whatsapp {
        width: 48px;
        height: 48px;
        border-radius: 50%;
    }

    .sell-car-section, .process-section, .why-network-section, .prerequisites-section, .select-brand-section, .popular-brands-section, .faq-section {
        padding: 60px 20px;
    }

    .sell-title, .process-main-title, .prerequisites-title, .select-brand-title, .faq-title {
        font-size: 28px;
    }

    .why-network-title, .popular-brands-title {
        font-size: 26px;
    }

    .steps-grid, .process-grid, .prerequisites-grid, .brands-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
        height: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .upload-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .brand-logo-box {
        padding: 25px 15px;
        min-height: 100px;
    }

    .faq-accordion {
        padding: 15px;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-question-text {
        font-size: 14px;
    }

    .faq-answer-text {
        font-size: 13px;
    }

    .network-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .network-upload-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .network-upload-row {
        grid-template-columns: 1fr;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .sell-title, .process-main-title, .prerequisites-title, .select-brand-title {
        font-size: 24px;
    }

    .why-network-title {
        font-size: 24px;
    }

    .popular-brands-title {
        font-size: 22px;
    }

    .faq-title {
        font-size: 24px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .upload-row {
        grid-template-columns: 1fr;
    }

    .brands-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-toggle-icon {
        width: 20px;
        height: 20px;
        margin-left: 12px;
    }
}


/* ==================== POPUP MODAL STYLES ==================== */
.reserve-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.reserve-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.reserve-modal {
    background: white;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideUp 0.4s ease-out;
}

@@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.reserve-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

    .reserve-modal-close:hover {
        background: rgba(0,0,0,0.8);
        transform: rotate(90deg);
    }

    .reserve-modal-close svg {
        width: 20px;
        height: 20px;
        stroke: white;
        stroke-width: 2;
    }

.reserve-modal-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.modal-car-image-wrapper {
    width: 100%;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.modal-car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-car-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.modal-car-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.modal-car-price {
    font-size: 28px;
    font-weight: 800;
    color: #ffd700;
}

.reserve-modal-form {
    padding: 40px;
    overflow-y: auto;
}

.modal-form-header {
    margin-bottom: 25px;
}

.modal-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.modal-form-subtitle {
    font-size: 13px;
    color: #666;
}

.modal-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

    .modal-tab-btn.active {
        color: #667eea;
    }

        .modal-tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #667eea;
        }

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.modal-form-group {
    margin-bottom: 15px;
}

.modal-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-form-input,
.modal-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

    .modal-form-input:focus,
    .modal-form-textarea:focus {
        outline: none;
        border-color: #667eea;
    }

.modal-form-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.modal-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .modal-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    }

/* Responsive */
@@media (max-width: 768px) {
    .reserve-modal {
        grid-template-columns: 1fr;
        max-height: 95vh;
    }

    .reserve-modal-image {
        padding: 20px;
    }

    .modal-car-image-wrapper {
        height: 150px;
    }

    .reserve-modal-form {
        padding: 25px;
    }

    .modal-form-row {
        grid-template-columns: 1fr;
    }
}

