/* Why Choose Fixa Repair Section Styles */
.why-choose-fixa {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-fixa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.why-choose-fixa .container {
    position: relative;
    z-index: 2;
}

/* Header Styles */
.why-choose-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.why-choose-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.why-choose-header .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.comparison-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.comparison-item:hover::before {
    transform: scaleX(1);
}

.comparison-item:nth-child(1) { animation-delay: 0.1s; }
.comparison-item:nth-child(2) { animation-delay: 0.2s; }
.comparison-item:nth-child(3) { animation-delay: 0.3s; }
.comparison-item:nth-child(4) { animation-delay: 0.4s; }

.comparison-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.comparison-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.comparison-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.comparison-item:hover .comparison-icon::before {
    opacity: 1;
}

.comparison-item:hover .comparison-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.comparison-icon i {
    font-size: 1.8rem;
    color: white;
    transition: color 0.3s ease;
}

.comparison-item:hover .comparison-icon i {
    color: white;
}

.comparison-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.comparison-item:hover h4 {
    color: rgba(255, 255, 255, 0.95);
}

.comparison-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.comparison-item:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-fixa {
        padding: 60px 0;
    }
    
    .why-choose-header .section-title {
        font-size: 2.2rem;
    }
    
    .comparison-grid {
        gap: 1.5rem;
    }
    
    .comparison-item {
        padding: 2rem 1.5rem;
    }
    
    .comparison-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .comparison-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-fixa {
        padding: 50px 0;
    }
    
    .why-choose-header {
        margin-bottom: 3rem;
    }
    
    .why-choose-header .section-title {
        font-size: 2rem;
    }
    
    .why-choose-header .section-subtitle {
        font-size: 1rem;
    }
    
    .comparison-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .comparison-item {
        padding: 1.5rem 1rem;
    }
    
    .comparison-item h4 {
        font-size: 1.2rem;
    }
    
    .comparison-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .why-choose-fixa {
        padding: 40px 0;
    }
    
    .why-choose-header {
        margin-bottom: 2rem;
    }
    
    .why-choose-header .section-title {
        font-size: 1.8rem;
    }
    
    .why-choose-header .section-subtitle {
        font-size: 0.95rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-item {
        padding: 1.5rem 1rem;
    }
    
    .comparison-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .comparison-icon i {
        font-size: 1.2rem;
    }
    
    .comparison-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .comparison-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .why-choose-header .section-title {
        font-size: 1.6rem;
    }
    
    .why-choose-header .section-subtitle {
        font-size: 0.9rem;
    }
    
    .comparison-item {
        padding: 1.2rem 0.8rem;
    }
    
    .comparison-icon {
        width: 45px;
        height: 45px;
    }
    
    .comparison-icon i {
        font-size: 1.1rem;
    }
    
    .comparison-item h4 {
        font-size: 1rem;
    }
    
    .comparison-item p {
        font-size: 0.8rem;
    }
}
