/* Pourquoi Nous Choisir Page - Modern Design */

.why-us-page {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 0.8s ease;
}

.why-us-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

.why-us-header h2 .highlight {
    color: #8B1538;
    position: relative;
    display: inline-block;
}

.why-us-header h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B1538 0%, #A91D4A 100%);
    border-radius: 2px;
}

.why-us-header .subtitle {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.why-us-intro {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.why-us-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B1538 0%, #A91D4A 100%);
}

.why-us-intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.why-us-intro-image {
    flex: 0 0 45%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-us-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.why-us-intro:hover .why-us-intro-image img {
    transform: scale(1.05);
}

.why-us-intro-text {
    flex: 1;
}

.why-us-intro-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

.why-us-intro-text h3 .accent {
    color: #8B1538;
}

.why-us-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 15px;
}

.why-us-intro-text strong {
    color: #8B1538;
    font-weight: 600;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.reason-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    animation: fadeInUp 0.8s ease both;
}

.reason-card:nth-child(1) { animation-delay: 0.1s; }
.reason-card:nth-child(2) { animation-delay: 0.2s; }
.reason-card:nth-child(3) { animation-delay: 0.3s; }
.reason-card:nth-child(4) { animation-delay: 0.4s; }
.reason-card:nth-child(5) { animation-delay: 0.5s; }
.reason-card:nth-child(6) { animation-delay: 0.6s; }

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B1538 0%, #A91D4A 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.reason-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(139, 21, 56, 0.15);
}

.reason-card:hover::before {
    transform: scaleX(1);
}

.reason-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #8B1538, #A91D4A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.3);
}

.reason-card:hover .reason-icon {
    transform: rotate(360deg) scale(1.1);
}

.reason-icon i {
    font-size: 40px;
    color: white;
}

.reason-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: badgePulse 2s infinite;
}

.reason-title {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.reason-description {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #8B1538, #A91D4A);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(139, 21, 56, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #8B1538 !important;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.cta-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .why-us-header h2 {
        font-size: 36px;
    }

    .why-us-intro-content {
        flex-direction: column;
        gap: 30px;
    }

    .why-us-intro-image {
        flex: 0 0 100%;
    }

    .why-us-intro-text h3 {
        font-size: 28px;
    }

    .cta-section h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .why-us-page {
        padding: 40px 0;
    }

    .why-us-header {
        margin-bottom: 40px;
    }

    .why-us-header h2 {
        font-size: 30px;
    }

    .why-us-header .subtitle {
        font-size: 16px;
    }

    .why-us-intro {
        padding: 40px 25px;
        margin-bottom: 40px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reason-card {
        padding: 30px 20px;
    }

    .reason-icon {
        width: 80px;
        height: 80px;
    }

    .reason-icon i {
        font-size: 36px;
    }

    .cta-section {
        padding: 40px 25px;
    }

    .cta-section h3 {
        font-size: 24px;
    }

    .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .why-us-header h2 {
        font-size: 26px;
    }

    .why-us-intro-text h3 {
        font-size: 24px;
    }

    .why-us-intro-text p {
        font-size: 15px;
    }

    .reason-title {
        font-size: 18px;
    }

    .reason-description {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 15px;
    }
}
