/* ===========================
   Local Pages Specific Styles
   Styles réutilisables pour toutes les pages locales (menage-*.html)
   =========================== */

/* ===========================
   Breadcrumb Navigation
   =========================== */

.breadcrumb {
    background: var(--bg-light);
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    color: var(--text-light);
    font-size: 1.2rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
    color: var(--text-light);
}

/* ===========================
   Atouts Cards - Système de cartes moderne
   Override des styles service-benefits
   =========================== */

.atouts-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
    margin-top: 2rem !important;
    list-style: none !important;
    padding: 0 !important;
}

.atout-card {
    background: white !important;
    border: 2px solid var(--border-color) !important;
    border-radius: var(--radius) !important;
    padding: 2rem 1.5rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
}

.atout-card:hover {
    border-color: var(--primary-color) !important;
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-lg) !important;
}

.atout-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.atout-card:hover::before {
    opacity: 1 !important;
}

.atout-icon {
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
    display: block !important;
    line-height: 1 !important;
}

.atout-card h3 {
    color: var(--text-dark) !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    margin-top: 0 !important;
    line-height: 1.3 !important;
}

.atout-card p {
    color: var(--text-light) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Desktop: 3 colonnes */
@media (min-width: 992px) {
    .atouts-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
    }
}

/* Tablettes: 2 colonnes */
@media (max-width: 991px) and (min-width: 577px) {
    .atouts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

/* Mobile: 1 colonne */
@media (max-width: 576px) {
    .atouts-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .atout-card {
        padding: 1.5rem 1.25rem !important;
    }

    .atout-icon {
        font-size: 2.5rem !important;
        margin-bottom: 0.75rem !important;
    }

    .atout-card h3 {
        font-size: 1.05rem !important;
        margin-bottom: 0.5rem !important;
    }

    .atout-card p {
        font-size: 0.9rem !important;
    }
}

/* ===========================
   Spécificités Locales
   =========================== */

.specificites-locales {
    margin-top: 2rem;
}

.specificites-locales .contexte-local {
    margin-bottom: 2.5rem;
}

.specificites-locales h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.particularites {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 1.5rem 0;
    list-style: none;
    padding: 0;
}

.particularites li {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
    line-height: 1.6;
}

.particularites li strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.nos-clients-asserac {
    margin-top: 2.5rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.client-type {
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.client-type:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.client-type h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.client-type p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ===========================
   Villes Voisines
   =========================== */

.villes-voisines {
    margin-top: 3rem;
}

.villes-voisines .intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.villes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.ville-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem 1.5rem 2.75rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 180px;
}

.ville-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.ville-card .distance {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ville-card a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 100%;
}

.ville-card strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.ville-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.villes-voisines .toutes-villes {
    text-align: center;
    margin-top: 2rem;
}

/* ===========================
   FAQ Section
   =========================== */

.faq-asserac {
    margin-top: 3rem;
}

.faq-asserac h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.faq-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ===========================
   Carte Interactive
   =========================== */

.carte-interactive {
    margin-top: 3rem;
}

.carte-interactive h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.map-container iframe {
    display: block;
    border: 0;
}

.legende-carte {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.legende-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.legende-item span:first-child {
    font-size: 1.2rem;
}

/* ===========================
   Témoignages Locaux
   =========================== */

.temoignages-asserac {
    margin-top: 3rem;
}

.temoignages-asserac h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.temoignage-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.temoignage-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.temoignage-card.verified {
    border-left: 4px solid var(--primary-color);
}

.temoignage-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.client-info strong {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.client-info .lieu {
    color: var(--text-light);
    font-size: 0.85rem;
}

.client-info .date {
    color: var(--text-light);
    font-size: 0.8rem;
}

.temoignage-header .rating {
    color: #FFB800;
    font-size: 1.1rem;
    white-space: nowrap;
}

.temoignage-texte {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.badge-verified {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.temoignages-asserac .cta-avis {
    text-align: center;
    margin-top: 2rem;
}

/* ===========================
   Responsive Design
   =========================== */

/* Tablettes */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 0;
        font-size: 0.85rem;
    }

    .breadcrumb ol {
        gap: 0.35rem;
    }

    .particularites {
        gap: 1rem;
    }

    .particularites li {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .villes-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.25rem;
    }

    .ville-card {
        padding: 1.25rem 1.25rem 2.5rem 1.25rem;
    }

    .ville-card .distance {
        bottom: 0.75rem;
        right: 0.75rem;
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-item h3 {
        font-size: 1.05rem;
    }

    .temoignage-card {
        padding: 1.5rem;
    }

    .temoignage-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .legende-carte {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .legende-item {
        justify-content: flex-start;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .breadcrumb {
        padding: 0.65rem 0;
        font-size: 0.8rem;
    }

    .breadcrumb li:not(:last-child)::after {
        font-size: 1rem;
    }

    .specificites-locales h3 {
        font-size: 1.15rem;
    }

    .particularites li {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .client-type {
        padding: 1.25rem;
    }

    .client-type h4 {
        font-size: 1.05rem;
    }

    .client-type p {
        font-size: 0.9rem;
    }

    .villes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ville-card {
        padding: 1rem 1rem 2.75rem 1rem;
    }

    .ville-card strong {
        font-size: 1.05rem;
    }

    .ville-card p {
        font-size: 0.85rem;
    }

    .faq-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .faq-item h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .faq-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .temoignage-card {
        padding: 1.25rem;
    }

    .client-info strong {
        font-size: 1rem;
    }

    .temoignage-texte {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .map-container iframe {
        height: 300px;
    }

    .legende-carte {
        padding: 1rem;
    }

    .legende-item {
        font-size: 0.85rem;
    }
}

/* Très petits écrans */
@media (max-width: 360px) {
    .breadcrumb {
        font-size: 0.75rem;
    }

    .breadcrumb ol {
        gap: 0.25rem;
    }

    .specificites-locales h3 {
        font-size: 1.1rem;
    }

    .particularites li {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .ville-card {
        padding: 0.9rem 0.9rem 2.5rem 0.9rem;
    }

    .ville-card .distance {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .ville-card strong {
        font-size: 1rem;
    }

    .ville-card p {
        font-size: 0.8rem;
    }

    .faq-item {
        padding: 0.9rem;
    }

    .faq-item h3 {
        font-size: 0.95rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }

    .temoignage-card {
        padding: 1rem;
    }

    .client-info strong {
        font-size: 0.95rem;
    }

    .temoignage-texte {
        font-size: 0.9rem;
    }

    .badge-verified {
        font-size: 0.75rem;
        padding: 0.3rem 0.65rem;
    }

    .map-container iframe {
        height: 250px;
    }

    .legende-carte {
        padding: 0.75rem;
    }

    .legende-item {
        font-size: 0.8rem;
    }
}
