/* =============================================
   RESIDENTIAL MOVING PAGE STYLES
   ============================================= */

/* Header - Desktop Image */
.residential-moving-page header#header {
    background-image: url('/assets/images/AARION_Residential_Moving_Scene1_Desktop.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
}

/* Header - Mobile Image */
@media (max-width: 768px) {
    .residential-moving-page header#header {
        background-image: url('/assets/images/AARION_Residential_Moving_Scene2_Mobile.png') !important;
        min-height: 500px;
    }
}

/* =============================================
   HEADER CONTENT STYLING
   ============================================= */
.residential-moving-page .header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.residential-moving-page .header-content h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.residential-moving-page .header-content p {
    font-size: 20px;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .residential-moving-page .header-content h1 {
        font-size: 36px;
    }
    
    .residential-moving-page .header-content p {
        font-size: 16px;
    }
}

/* =============================================
   ABOUT SECTION - Expert Solutions
   ============================================= */
#about-us {
    padding: 100px 0;
    background: #fff;
}

#about-us .section-content {
    gap: 60px;
    align-items: center;
}

#about-us .col1 {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

#about-us .col1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

#about-us .col1:hover img {
    transform: scale(1.03);
}

#about-us .col2 h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

#about-us .col2 p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* =============================================
   FEATURES SECTION
   ============================================= */
#features {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

#features h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.feature-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-cards .col-one,
.feature-cards .col-two {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    max-width: 500px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #ED170A;
}

.icon-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #ED170A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-circle img {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(15%) sepia(95%) saturate(6000%) hue-rotate(358deg) brightness(95%) contrast(112%);
}

/* Icône blanche sur cercle rouge */
.icon-circle.bg-red {
    background-color: #ED170A !important;
    border-color: #ED170A;
}

.icon-circle.bg-red img {
    filter: brightness(0) invert(1) !important;
}

.feature-card:hover .icon-circle {
    background-color: #ED170A;
    transform: scale(1.1);
}

.feature-card:hover .icon-circle img {
    filter: brightness(0) invert(1);
}

.feature-card .title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-card .description p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   BOTTOM IMAGE SECTION (Horizontal)
   ============================================= */
#about.about {
    padding: 80px 0;
    background: #fff;
}

#about .animated-image {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

#about .animated-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

#about .animated-image:hover img {
    transform: scale(1.02);
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 992px) {
    #about-us .section-content {
        gap: 40px;
    }
    
    #about-us .col2 h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    #about-us {
        padding: 60px 0;
    }
    
    /* Inverser l'ordre : texte AVANT photo en mobile */
    #about-us .two-column-layout {
        flex-direction: column-reverse;
    }
    
    #about-us .col2 h2 {
        font-size: 28px;
    }
    
    #about-us .col2 p {
        font-size: 16px;
    }
    
    #features h2 {
        font-size: 32px;
    }
    
    .feature-cards {
        flex-direction: column;
    }
    
    .feature-cards .col-one,
    .feature-cards .col-two {
        max-width: 100%;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .icon-circle {
        margin: 0 auto;
    }
    
    #about .animated-image {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 20px;
    }
    
    .feature-card .title {
        font-size: 18px;
    }
}