/* Section Présentation de l'Agence - Styles Professionnels */

.rts-about-agency-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.rts-about-agency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.02) 0%, rgba(230, 126, 34, 0.01) 100%);
    z-index: 0;
}

.rts-about-agency-section .container {
    position: relative;
    z-index: 1;
}

/* Contenu de la section */
.about-agency-content {
    padding-right: 40px;
}

.about-agency-content .section-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(211, 84, 0, 0.1);
    border: 1px solid rgba(211, 84, 0, 0.2);
    border-radius: 50px;
    color: #d35400;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.about-agency-content .section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: #1F1F25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
}

.agency-description {
    margin-top: 28px;
}

.agency-description .lead-text {
    font-size: clamp(17px, 1.9vw, 20px);
    line-height: 1.6;
    color: #1F1F25;
    margin-bottom: 20px;
    font-weight: 500;
}

.agency-description .lead-text strong {
    color: #d35400;
    font-weight: 700;
}

.agency-description p {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Points forts de l'agence */
.agency-highlights {
    margin: 32px 0;
    padding: 24px;
    background: rgba(211, 84, 0, 0.03);
    border-left: 3px solid #d35400;
    border-radius: 8px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item:hover {
    transform: translateX(5px);
}

.highlight-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-item span {
    font-size: 15px;
    line-height: 1.6;
    color: #1F1F25;
    font-weight: 500;
}

/* Bouton CTA */
.agency-cta {
    margin-top: 32px;
}

.agency-cta .rts-btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
    border: none;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(211, 84, 0, 0.25);
    font-family: 'Inter', sans-serif;
}

.agency-cta .rts-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(211, 84, 0, 0.35);
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.agency-cta .rts-btn svg {
    transition: transform 0.3s ease;
}

.agency-cta .rts-btn:hover svg {
    transform: translateX(3px);
}

/* Image de l'agence */
.about-agency-image {
    position: relative;
}

.about-agency-image .image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #f5f5f5;
}

.about-agency-image .image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-agency-image:hover .image-wrapper img {
    transform: scale(1.05);
}

.about-agency-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Badges de confiance */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.trust-badges .badge-item {
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.trust-badges .badge-item:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
}

.trust-badges .badge-item img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-agency-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-agency-content .section-title {
        font-size: clamp(28px, 5vw, 40px);
    }
    
    .about-agency-image .image-wrapper {
        padding-bottom: 65%;
    }
}

@media (max-width: 767px) {
    .about-agency-content {
        text-align: center;
    }
    
    .about-agency-content .section-label {
        font-size: 10px;
        padding: 5px 14px;
    }
    
    .about-agency-content .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .agency-description .lead-text {
        font-size: 17px;
    }
    
    .agency-description p {
        font-size: 15px;
    }
    
    .agency-highlights {
        padding: 20px;
        margin: 24px 0;
    }
    
    .highlight-item {
        flex-direction: row;
        align-items: center;
    }
    
    .highlight-item span {
        font-size: 14px;
    }
    
    .agency-cta .rts-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }
    
    .about-agency-image .image-wrapper {
        padding-bottom: 60%;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .trust-badges .badge-item img {
        height: 28px;
    }
}

@media (max-width: 575px) {
    .about-agency-content .section-title {
        font-size: 24px;
    }
    
    .agency-description .lead-text {
        font-size: 16px;
    }
    
    .agency-description p {
        font-size: 14px;
    }
    
    .highlight-item span {
        font-size: 13px;
    }
}

/* Accessibilité - Focus visible */
.agency-cta .rts-btn:focus-visible {
    outline: 3px solid #d35400;
    outline-offset: 3px;
}

/* Animation d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-agency-content,
.about-agency-image {
    animation: fadeInUp 0.8s ease-out;
}

