:root {
    --repair-primary: #B90F16;
    --repair-accent: #D84F56;
    --repair-dark: #2d3436;
    --repair-light: #f8f9fa;
    --repair-white: #ffffff;
    --repair-text-muted: #636e72;
}

.models-page {
    background-color: var(--repair-white);
}

/* Hero Section - Reused from brand.css but scoped */
.hero-repair {
    background: linear-gradient(135deg, #F7E6E8 0%, #F4DDE0 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content-box {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--repair-dark);
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--repair-primary);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

/* Intro Section */
.intro-text-section {
    padding: 4rem 0 2rem;
    text-align: center;
}

.intro-content {
    max-width: 850px;
    margin: 0 auto;
}

.intro-content h2 {
    color: var(--repair-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.description-text {
    color: var(--repair-text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.description-text.collapsed {
    max-height: 4.5em;
    position: relative;
}

.description-text.collapsed::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5em;
    background: linear-gradient(transparent, white);
}

.read-more-btn {
    color: var(--repair-primary);
    background: none;
    border: none;
    font-weight: 700;
    margin-top: 1rem;
    padding: 0;
    cursor: pointer;
    display: none;
}

/* Model Selection */
.model-selection-section {
    padding: 3rem 0 5rem;
}

.section-headline {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--repair-primary);
    margin-bottom: 3.5rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
}

.model-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.model-image-container {
    width: 160px;
    height: 160px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/*.model-image-container::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(185, 15, 22, 0.05);
    transform: rotate(45deg);
    border-radius: 24px;
    z-index: -1;
    transition: all 0.3s ease;
}*/

.model-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.model-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: var(--repair-dark);
}

.model-card:hover {
    transform: translateY(-8px);
}

.model-card:hover .model-image-container::before {
    background: rgba(185, 15, 22, 0.1);
    transform: rotate(45deg) scale(1.1);
}

.model-card:hover .model-image-container img {
    transform: scale(1.05);
}

.model-card:hover .model-name {
    color: var(--repair-primary);
}

/* Reasons Section & Separator */
.styled-separator {
    height: 3px;
    background-color: var(--repair-primary);
    width: 80px;
    margin: 5rem auto;
    border: none;
    border-radius: 2px;
    opacity: 0.2;
}

.reasons-section {
    padding: 2rem 0 5rem;
    text-align: center;
}

.reasons-title {
    font-size: 2.2rem;
    color: var(--repair-primary);
    margin-bottom: 4rem;
    font-weight: 800;
}

.reasons-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.reason-item {
    flex: 1;
    min-width: 140px;
    max-width: 160px;
}

.reason-icon {
    font-size: 2.8rem;
    color: var(--repair-primary);
    margin-bottom: 1.25rem;
}

.reason-text {
    font-weight: 700;
    font-size: 1rem;
    color: var(--repair-dark);
    line-height: 1.3;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
    background-color: #fafbfc;
}

.content-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrap h3 {
    color: var(--repair-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.content-wrap p {
    color: var(--repair-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 1rem 0;
    background: white;
}

.faq-title {
    color: var(--repair-primary);
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq-subtitle {
    text-align: center;
    color: var(--repair-text-muted);
    margin-bottom: 4.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    background: #f9fafb;
}

.faq-accordion .accordion-button {
    background: #f9fafb;
    color: var(--repair-dark);
    font-weight: 700;
    padding: 1.5rem;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--repair-primary);
    color: white;
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    color: var(--repair-text-muted);
    line-height: 1.8;
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .models-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-repair {
        text-align: center;
        padding: 3rem 0;
    }

    .hero-image-wrap {
        margin-top: 2rem;
    }

    .reasons-flex {
        gap: 1.5rem;
    }

    .reason-item {
        max-width: 45%;
    }

    .section-headline {
        font-size: 2rem;
    }
}