/* General Repairs Page Styles */
/* ============================= */

/* Two Column Layout */
.comprehensive-repair-services {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.column-image {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 800ms ease-out forwards;
}

.column-image .responsive-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.column-image .responsive-image:hover {
    transform: scale(1.02);
}

.column-content {
    opacity: 0;
    animation: fadeInUp 800ms ease-out 200ms forwards;
}

.column-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.column-content h3 {
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.column-content p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.repair-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.repair-services-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.repair-services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(199, 5, 50, 0.1), rgba(233, 30, 99, 0.1));
    padding: 1.5rem;
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    margin-top: 2rem;
    font-style: italic;
}

/* Our Repair Services Section */
.our-repair-services {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.repair-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.repair-service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #E5E7EB;
    transition: var(--transition-smooth);
    opacity: 0;
    animation: fadeInUp 700ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.repair-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(199, 5, 50, 0.2);
    border-color: var(--color-primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.repair-service-card h3 {
    font-size: 1.2rem;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.repair-service-card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Repair Process Section */
.repair-process {
    padding: 5rem 0;
    background-color: #F9FAFB;
}

/* Why Choose Prime Section */
.why-choose-prime {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

/* Common Repairs Section */
.common-repairs {
    padding: 5rem 0;
    background-color: #F9FAFB;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.faq-container {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    opacity: 0;
    animation: fadeInUp 700ms ease-out forwards;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--color-text-primary);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background-color: #F9FAFB;
    color: var(--color-primary);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    z-index: -1;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-secondary-outlined {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary-outlined:hover {
    background: white;
    color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .repair-services-grid {
        grid-template-columns: 1fr;
    }

    .common-repairs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .faq-item {
        margin-bottom: 0.75rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .comprehensive-repair-services,
    .our-repair-services,
    .repair-process,
    .why-choose-prime,
    .common-repairs,
    .faq-section,
    .final-cta-section {
        padding: 3rem 0;
    }

    .repair-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .final-cta-content h2 {
        font-size: 1.5rem;
    }

    .final-cta-content p {
        font-size: 0.95rem;
    }
}

/* Animation Staggering */
.repair-service-card:nth-child(1) { animation-delay: 0ms; }
.repair-service-card:nth-child(2) { animation-delay: 100ms; }
.repair-service-card:nth-child(3) { animation-delay: 200ms; }
.repair-service-card:nth-child(4) { animation-delay: 300ms; }
.repair-service-card:nth-child(5) { animation-delay: 400ms; }
.repair-service-card:nth-child(6) { animation-delay: 500ms; }
.repair-service-card:nth-child(7) { animation-delay: 600ms; }
.repair-service-card:nth-child(8) { animation-delay: 700ms; }
.repair-service-card:nth-child(9) { animation-delay: 800ms; }
.repair-service-card:nth-child(10) { animation-delay: 900ms; }
.repair-service-card:nth-child(11) { animation-delay: 1000ms; }
.repair-service-card:nth-child(12) { animation-delay: 1100ms; }

.faq-item:nth-child(1) { animation-delay: 0ms; }
.faq-item:nth-child(2) { animation-delay: 100ms; }
.faq-item:nth-child(3) { animation-delay: 200ms; }
.faq-item:nth-child(4) { animation-delay: 300ms; }
.faq-item:nth-child(5) { animation-delay: 400ms; }
.faq-item:nth-child(6) { animation-delay: 500ms; }
.faq-item:nth-child(7) { animation-delay: 600ms; }
.faq-item:nth-child(8) { animation-delay: 700ms; }
