﻿/* ======================================= */
/*    Feuille de style pour conciergerie.html     */
/* ======================================= */

/* --- Section Titre de Page --- */
.page-title-section {
    text-align: center;
    padding: 48px 20px;
    background-image: url('image/banner_3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
}
.page-title-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.page-title-section .content {
    position: relative;
    z-index: 2;
}
.page-title-section h1 {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* --- Section Services --- */
.services-layout-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: flex-start; /* Aligner en haut */
    gap: 40px;
}
.services-image-column img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 15px 15px 30px rgba(0,0,0,0.1);
    border: 8px solid #fff;
}
.services-list-column {
    position: relative;
    top: -40px; /* DÃ©cale le bloc vers le haut */
    z-index: 2;
}
.services-title-box {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(200, 138, 120, 0.3);
    margin-left: -60px; /* DÃ©cale le titre vers la gauche pour qu'il "dÃ©passe" */
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}
.services-list {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 20px;
    margin-top: -15px; /* Fait remonter la liste sous le titre */
    position: relative;
}
.service-item {
    padding: 15px 20px;
    background-color: #f9f9f9;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
}
.service-item:last-child {
    margin-bottom: 0;
}
.service-item:hover {
    background-color: var(--light-color);
    transform: translateX(5px);
}

/* --- Section Tarification --- */
.pricing-section {
    padding: 60px 20px;
}
.pricing-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 30px;
    border: 1px solid #eee;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
}
.price-percentage {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}
.pricing-box .commission-text {
    font-size: 1.2rem;
    font-weight: 600;
}
.pricing-box .disclaimer-text {
    font-style: italic;
    color: #888;
    margin-bottom: 30px;
}

/* --- Responsive pour Conciergerie --- */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-image-column {
        max-width: 400px;
        margin: 0 auto 40px;
    }
    .services-list-column {
        top: 0;
    }
    .services-title-box {
        margin-left: 0;
    }
}
