/* ====================================
   Models Overview Page Styles
   ==================================== */

.models-hero {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.models-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: white;
}

.models-hero .subtitle {
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* Models Intro */
.models-intro {
    padding: 80px 0;
    background: #141414;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Models Showcase */
.models-showcase {
    padding: 60px 0;
    background: var(--bg-light);
}

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

.model-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #141414;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    transition: var(--transition);
}

.model-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.model-showcase-item.reverse {
    direction: rtl;
}

.model-showcase-item.reverse > * {
    direction: ltr;
}

.model-showcase-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.model-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.model-showcase-item:hover .model-showcase-image img {
    transform: scale(1.05);
}

.model-showcase-content {
    padding: 60px 50px;
}

.model-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.model-showcase-content h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ffffff;
}

.model-tagline {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.model-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.model-specs-quick {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 2px solid var(--bg-light);
    border-bottom: 2px solid var(--bg-light);
}

.spec-quick {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.spec-quick strong {
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
}

.spec-quick span {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Comparison CTA */
.comparison-cta {
    padding: 100px 0;
    background: #141414;
    text-align: center;
}

.comparison-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.comparison-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================================
   Responsive Design
   ==================================== */

@media (max-width: 1024px) {
    .model-showcase-item {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .model-showcase-item.reverse {
        direction: ltr;
    }

    .model-showcase-image {
        min-height: 350px;
    }

    .model-showcase-content {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .models-hero h1 {
        font-size: 42px;
    }

    .models-hero .subtitle {
        font-size: 18px;
    }

    .intro-text h2 {
        font-size: 28px;
    }

    .model-showcase-content h2 {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .model-specs-quick {
        flex-wrap: wrap;
        gap: 20px;
    }

    .spec-quick {
        flex: 1 1 80px;
    }

    .comparison-cta h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .models-hero {
        padding: 70px 0;
    }

    .models-hero h1 {
        font-size: 32px;
    }

    .model-showcase-image {
        min-height: 250px;
    }

    .model-showcase-content {
        padding: 35px 25px;
    }

    .model-showcase-content h2 {
        font-size: 28px;
    }

    .model-specs-quick {
        gap: 15px;
    }
}
