/* ═══════════════════════════════════════════
 *  Top Clean Azur — Villes
 *  Couleurs : bleu marine + blanc + accent gold
 * ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
    --tca-primary:       #1d3557;       /* bleu marine du site */
    --tca-primary-dark:  #14273f;
    --tca-primary-light: #2e4d7a;
    --tca-accent:        #c9a961;
    --tca-accent-dark:   #a88845;
    --tca-bg:            #ffffff;
    --tca-bg-soft:       #f4f4f4;       /* gris clair du site */
    --tca-text:          #1d3557;       /* texte aussi en marine pour H */
    --tca-text-body:     #555555;       /* corps de texte gris */
    --tca-text-muted:    #888888;
    --tca-border:        #e5e5e5;
    --tca-success:       #16a34a;
    --tca-radius:        4px;
    --tca-radius-sm:     2px;
    --tca-shadow:        0 4px 16px rgba(29, 53, 87, 0.06);
    --tca-shadow-md:     0 8px 28px rgba(29, 53, 87, 0.12);
    --tca-font-body:     'Source Sans 3', 'Source Sans Pro', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    --tca-font-heading:  'Cinzel', 'Playfair Display', 'Times New Roman', serif;
    --tca-font:          var(--tca-font-body);
}

/* ── Reset & global ───────────────────────── */
.tca-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
    font-family: var(--tca-font);
    color: var(--tca-text);
    line-height: 1.65;
}
.tca-page *,
.tca-page *::before,
.tca-page *::after { box-sizing: border-box; }

.tca-page img { max-width: 100%; height: auto; }

.tca-sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Hero full-width ─────────────────────── */
.tca-hero.tca-hero-fullwidth {
    border-radius: 0 !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    padding: 0;
    margin-top: -20px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--tca-primary-dark) 0%, var(--tca-primary) 50%, var(--tca-primary-light) 100%);
    border-bottom: 4px solid var(--tca-accent);
    position: relative;
    overflow: hidden;
}
.tca-hero.tca-hero-fullwidth::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201,169,97,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.tca-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 50px;
    position: relative;
    z-index: 1;
}

.tca-hero-inner {
    text-align: center;
}

.tca-hero h1 {
    color: #ffffff;
    font-family: var(--tca-font-heading);
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 600;
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tca-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(15px, 2vw, 18px);
    margin: 0 auto 24px;
    max-width: 720px;
}

.tca-hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.tca-meta-pill {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tca-hero-cta {
    margin-top: 28px;
}

/* ── Trust bar ────────────────────────────── */
.tca-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin: 20px auto 0;
}
.tca-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 500;
}
.tca-trust-item svg { color: var(--tca-accent); flex-shrink: 0; }

/* ── Breadcrumb ───────────────────────────── */
.tca-breadcrumb-hero {
    margin-bottom: 24px;
    font-size: 13px;
}
.tca-breadcrumb-hero,
.tca-breadcrumb-hero a {
    color: #ffffff !important;
    text-decoration: none;
}
.tca-breadcrumb-hero a:hover { color: var(--tca-accent) !important; }
.tca-breadcrumb-hero .tca-sep {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Buttons ──────────────────────────────── */
.tca-btn-primary {
    display: inline-block;
    background: var(--tca-accent);
    color: #fff !important;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: var(--tca-radius-sm);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.3);
}
.tca-btn-primary:hover {
    background: var(--tca-accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
    color: #fff !important;
}
.tca-btn-large {
    padding: 16px 36px;
    font-size: 17px;
}
.tca-btn-xl {
    padding: 18px 44px;
    font-size: 18px;
}
.tca-btn-card {
    margin-top: 12px;
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

/* ── WhatsApp Buttons ─────────────────────── */
.tca-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: var(--tca-radius-sm);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}
.tca-btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
    color: #fff !important;
}
.tca-btn-whatsapp svg { flex-shrink: 0; }

.tca-hero-cta,
.tca-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
}

/* ── Floating WhatsApp ────────────────────── */
.tca-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
    animation: tcaWaPulse 2s infinite;
}
.tca-whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.05);
    color: #fff !important;
    animation: none;
}
@keyframes tcaWaPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
    50%      { box-shadow: 0 6px 28px rgba(37, 211, 102, 0.75); }
}

/* Sur mobile : icone seule (gain de place) */
@media (max-width: 600px) {
    .tca-whatsapp-float {
        padding: 14px;
        bottom: 16px;
        right: 16px;
    }
    .tca-whatsapp-float-text { display: none; }
}

/* ── Sections ─────────────────────────────── */
.tca-section {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
}
.tca-section-title {
    font-family: var(--tca-font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    color: var(--tca-primary);
    margin: 0 auto 50px;
    line-height: 1.2;
    letter-spacing: 4px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 22px;
}
.tca-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--tca-primary);
}
.tca-section-cta {
    text-align: center;
    margin-top: 32px;
}

/* ── Services pills ───────────────────────── */
.tca-services-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tca-pill {
    display: inline-block;
    padding: 8px 18px;
    background: var(--tca-bg-soft);
    color: var(--tca-text) !important;
    border: 1px solid var(--tca-border);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.tca-pill:hover {
    background: var(--tca-primary);
    color: #fff !important;
    border-color: var(--tca-primary);
}
.tca-pill-active {
    background: var(--tca-primary) !important;
    color: #fff !important;
    border-color: var(--tca-primary) !important;
}
.tca-pill-static {
    background: var(--tca-bg-soft);
    color: var(--tca-text) !important;
    cursor: default;
}
.tca-pill-static:hover {
    background: var(--tca-bg-soft);
    color: var(--tca-text) !important;
    border-color: var(--tca-border);
}

/* ── Services grid (single) ───────────────── */
.tca-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
.tca-service-card {
    background: var(--tca-bg);
    text-align: left;
    transition: all 0.3s;
}
.tca-service-card:hover .tca-service-icon {
    background: var(--tca-primary);
    color: #fff;
}
.tca-service-icon {
    color: var(--tca-primary);
    margin-bottom: 18px;
    display: flex;
    width: 100%;
    aspect-ratio: 16/11;
    align-items: center;
    justify-content: center;
    background: var(--tca-bg-soft);
    border-radius: var(--tca-radius);
    transition: all 0.3s;
}
.tca-service-icon svg {
    width: 64px;
    height: 64px;
}
.tca-service-image {
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
    border-radius: var(--tca-radius);
    margin-bottom: 18px;
    background: var(--tca-bg-soft);
}
.tca-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.tca-service-card:hover .tca-service-image img {
    transform: scale(1.05);
}
.tca-service-card h4 {
    font-family: var(--tca-font-heading);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--tca-primary);
    letter-spacing: 0.5px;
}
.tca-service-card p {
    font-size: 15px;
    color: var(--tca-text-body);
    margin: 0;
    line-height: 1.6;
}

/* ── Hero image (after intro) ──────────── */
body.tca-villes-page .tca-hero-image {
    margin: 22px auto 16px !important;
    max-width: 580px !important;
    width: 100% !important;
    aspect-ratio: 16/9 !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.35) !important;
    border: 2px solid rgba(255,255,255,0.15) !important;
    display: block !important;
}
body.tca-villes-page .tca-hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important;
    border: none !important;
}
@media (max-width: 768px) {
    body.tca-villes-page .tca-hero-image {
        margin: 14px auto 10px !important;
        max-width: 100% !important;
        aspect-ratio: 16/10 !important;
        border-radius: 12px !important;
        border-width: 2px !important;
    }
}

/* ── Services subtitle (Interior / Exterior) ── */
.tca-services-subtitle {
    font-family: var(--tca-font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--tca-primary);
    margin: 50px auto 36px;
    text-align: center;
    position: relative;
    padding-bottom: 18px;
}
.tca-services-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 1px;
    background: var(--tca-primary);
}
.tca-services-subtitle-exterior {
    margin-top: 70px;
}

/* ── Gallery ──────────────────────────────── */
.tca-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.tca-gallery-item {
    margin: 0;
    border-radius: var(--tca-radius);
    overflow: hidden;
    box-shadow: var(--tca-shadow);
    background: var(--tca-bg);
    transition: all 0.3s;
    aspect-ratio: 4/3;
    position: relative;
}
.tca-gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--tca-shadow-md);
}
.tca-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.tca-gallery-item:hover img { transform: scale(1.05); }
.tca-gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(15,23,42,0.85), transparent);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* ── Pricing table ────────────────────────── */
.tca-section-pricing {
    background: var(--tca-bg-soft);
    padding: 32px;
    border-radius: var(--tca-radius);
    border-left: 4px solid var(--tca-accent);
}
.tca-pricing-table {
    background: #fff;
    border-radius: var(--tca-radius);
    overflow: hidden;
    box-shadow: var(--tca-shadow);
}
.tca-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--tca-border);
}
.tca-pricing-row:last-child { border-bottom: none; }
.tca-pricing-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: var(--tca-text);
}
.tca-pricing-label svg {
    color: var(--tca-primary);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.tca-pricing-value {
    font-weight: 700;
    color: var(--tca-accent-dark);
    font-size: 16px;
    text-align: right;
}
.tca-pricing-disclaimer {
    margin-top: 14px;
    font-size: 13px;
    color: var(--tca-text-muted);
    font-style: italic;
    text-align: center;
}

/* ── Description ──────────────────────────── */
.tca-section-description {
    background: var(--tca-bg-soft);
    padding: 32px;
    border-radius: var(--tca-radius);
}
.tca-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--tca-text);
}
.tca-description p { margin: 0 0 14px; }

/* ── Why us list ──────────────────────────── */
.tca-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.tca-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    background: var(--tca-bg);
    border: 1px solid var(--tca-border);
    border-radius: var(--tca-radius-sm);
    transition: all 0.2s;
}
.tca-why-list li:hover {
    border-color: var(--tca-success);
    box-shadow: var(--tca-shadow);
}
.tca-why-list li svg {
    color: var(--tca-success);
    flex-shrink: 0;
    margin-top: 2px;
}
.tca-why-list li span {
    color: var(--tca-text);
    font-size: 15px;
    line-height: 1.5;
}

/* ── Testimonials ─────────────────────────── */
.tca-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.tca-testimonial {
    background: var(--tca-bg);
    padding: 24px;
    border-radius: var(--tca-radius);
    border: 1px solid var(--tca-border);
    box-shadow: var(--tca-shadow);
}
.tca-testimonial blockquote {
    font-size: 15px;
    line-height: 1.6;
    color: var(--tca-text);
    margin: 12px 0 14px;
    padding: 0;
    border: none;
    font-style: italic;
}
.tca-testimonial blockquote::before { content: '"'; color: var(--tca-accent); }
.tca-testimonial blockquote::after  { content: '"'; color: var(--tca-accent); }
.tca-testimonial footer {
    font-size: 13px;
    color: var(--tca-text-muted);
}
.tca-testimonial footer strong {
    color: var(--tca-text);
    font-weight: 600;
}
.tca-testimonial-service {
    color: var(--tca-text-muted);
}

/* ── Stars ────────────────────────────────── */
.tca-stars { display: inline-flex; gap: 2px; }
.tca-star {
    color: var(--tca-border);
    font-size: 16px;
    line-height: 1;
}
.tca-star-full,
.tca-star-half { color: var(--tca-accent); }

/* ── Neighborhoods ────────────────────────── */
.tca-neighborhoods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

/* ── FAQ ──────────────────────────────────── */
.tca-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tca-faq-item {
    background: var(--tca-bg);
    border: 1px solid var(--tca-border);
    border-radius: var(--tca-radius-sm);
    overflow: hidden;
    transition: all 0.2s;
}
.tca-faq-item[open] {
    border-color: var(--tca-primary);
    box-shadow: var(--tca-shadow);
}
.tca-faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    color: var(--tca-text);
    list-style: none;
    position: relative;
    padding-right: 50px;
    user-select: none;
}
.tca-faq-item summary::-webkit-details-marker { display: none; }
.tca-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--tca-accent);
    font-weight: 300;
    line-height: 1;
}
.tca-faq-item[open] summary::after { content: '−'; }
.tca-faq-answer {
    padding: 0 22px 18px;
    color: var(--tca-text-muted);
    line-height: 1.7;
}
.tca-faq-answer p { margin: 0; }

/* ── Map ──────────────────────────────────── */
.tca-map-wrap {
    border-radius: var(--tca-radius);
    overflow: hidden;
    box-shadow: var(--tca-shadow-md);
}
.tca-map-wrap iframe { display: block; }

/* ── Nearby cities ────────────────────────── */
.tca-nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.tca-nearby-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    background: var(--tca-bg);
    border: 1px solid var(--tca-border);
    border-radius: var(--tca-radius-sm);
    text-decoration: none;
    transition: all 0.2s;
}
.tca-nearby-card:hover {
    border-color: var(--tca-accent);
    transform: translateY(-2px);
    box-shadow: var(--tca-shadow);
}
.tca-nearby-name {
    font-weight: 600;
    color: var(--tca-text);
    font-size: 15px;
}
.tca-nearby-distance {
    font-size: 12px;
    color: var(--tca-accent-dark);
    font-weight: 500;
}
.tca-see-all-link {
    text-align: right;
    margin-top: 14px;
    font-size: 14px;
}
.tca-see-all-link a {
    color: var(--tca-primary);
    font-weight: 600;
    text-decoration: none;
}
.tca-see-all-link a:hover { color: var(--tca-accent); }

/* ── Cities grid (archive) ────────────────── */
.tca-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.tca-city-card {
    background: var(--tca-bg);
    border: 1px solid var(--tca-border);
    border-radius: var(--tca-radius);
    overflow: hidden;
    transition: all 0.2s;
    box-shadow: var(--tca-shadow);
}
.tca-city-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--tca-shadow-md);
    border-color: var(--tca-accent);
}
.tca-city-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.tca-city-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.tca-city-card:hover .tca-city-thumb img { transform: scale(1.05); }
.tca-city-body {
    padding: 20px;
}
.tca-city-name {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
}
.tca-city-name a {
    color: var(--tca-text) !important;
    text-decoration: none;
}
.tca-city-name a:hover { color: var(--tca-accent) !important; }
.tca-city-postal {
    font-size: 12px;
    color: var(--tca-text-muted);
    display: block;
    margin-bottom: 10px;
}
.tca-city-intro {
    font-size: 14px;
    color: var(--tca-text-muted);
    line-height: 1.5;
    margin: 0 0 12px;
}

/* ── Final CTA block ──────────────────────── */
.tca-cta-block {
    background: linear-gradient(135deg, var(--tca-primary) 0%, var(--tca-primary-dark) 100%);
    color: #fff;
    padding: 50px 30px;
    border-radius: var(--tca-radius);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
    border: 2px solid var(--tca-accent);
}
.tca-cta-block h2 {
    color: #fff !important;
    font-size: clamp(22px, 3vw, 30px);
    margin: 0 0 12px;
    font-weight: 800;
}
.tca-cta-block p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin: 0 auto 24px;
    max-width: 600px;
}

/* ── No results ───────────────────────────── */
.tca-no-results {
    text-align: center;
    color: var(--tca-text-muted);
    padding: 40px 20px;
    font-size: 16px;
}

/* ═══════════════════════════════════════════
 *  Responsive Mobile
 * ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .tca-page { padding: 0 8px 60px; }

    .tca-hero-container { padding: 80px 16px 30px; }
    .tca-hero h1 { font-size: 24px; }
    .tca-hero-subtitle { font-size: 14px; }
    .tca-breadcrumb-hero { margin-bottom: 14px; font-size: 12px; }

    .tca-trust-bar { gap: 10px; }
    .tca-trust-item { font-size: 12px; }

    .tca-section { margin-bottom: 48px; }
    .tca-section-title { font-size: 22px; margin-bottom: 20px; }

    .tca-services-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .tca-service-card { padding: 0 !important; }
    .tca-service-icon { width: 52px; height: 52px; }
    .tca-service-card h3 { font-size: 15px; }
    .tca-service-card h4 { font-size: 18px !important; }
    .tca-service-card p { font-size: 14px !important; }
    .tca-service-image { aspect-ratio: 16/10 !important; }

    .tca-section-pricing { padding: 20px 16px; }
    .tca-pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 16px;
    }
    .tca-pricing-value { font-size: 15px; }

    .tca-section-description { padding: 22px 18px; }

    .tca-why-list { grid-template-columns: 1fr; }

    .tca-cities-grid { grid-template-columns: 1fr; gap: 18px; }

    .tca-cta-block { padding: 36px 20px; }
    .tca-btn-large, .tca-btn-xl { padding: 14px 28px; font-size: 16px; }
}

/* ═══════════════════════════════════════════
 *  Divi compat
 * ═══════════════════════════════════════════ */
body.tca-divi-compat #sidebar { display: none !important; }
body.tca-divi-compat #left-area {
    width: 100% !important;
    float: none !important;
    border: none !important;
    padding: 0 !important;
}
body.tca-villes-page #page-container { overflow-x: hidden; }

body.tca-divi-compat #content-area,
body.tca-divi-compat .container,
body.tca-divi-compat #main-content,
body.tca-divi-compat #page-container {
    border: none !important;
    box-shadow: none !important;
}
body.tca-divi-compat .container::before { display: none !important; }

body.tca-divi-compat .tca-page,
body.tca-divi-compat .tca-page * {
    font-family: var(--tca-font);
}

body.tca-divi-compat .tca-page h1,
body.tca-divi-compat .tca-page h2,
body.tca-divi-compat .tca-page h3 {
    color: var(--tca-text);
    padding-bottom: 0;
}

body.tca-divi-compat .tca-page .tca-hero h1 {
    color: #ffffff !important;
}

body.tca-divi-compat .tca-page .tca-cta-block h2 {
    color: #ffffff !important;
}

body.tca-divi-compat .tca-city-name a,
body.tca-divi-compat .tca-breadcrumb a {
    color: var(--tca-text) !important;
}
body.tca-divi-compat .tca-breadcrumb-hero a {
    color: #ffffff !important;
}
body.tca-divi-compat .tca-breadcrumb-hero a:hover {
    color: var(--tca-accent) !important;
}

body.tca-divi-compat .tca-btn-primary {
    background: var(--tca-accent) !important;
    color: #fff !important;
    border: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}
body.tca-divi-compat .tca-btn-primary:hover {
    background: var(--tca-accent-dark) !important;
    color: #fff !important;
}

body.tca-divi-compat .tca-hero.tca-hero-fullwidth {
    margin-top: -80px;
    padding-top: 0;
}
body.tca-divi-compat .tca-hero-fullwidth .tca-hero-container {
    padding-top: 110px;
    padding-bottom: 40px;
}

/* ═══ Desktop : eliminer les paddings Divi qui creent les gaps ═══ */
/* Cible la regle Divi : 'body:not(.et-tb) #main-content .container { padding-top: 58px }' */
html body.tca-villes-page #main-content,
html body.tca-villes-page #main-content .container,
html body.tca-villes-page #content-area,
html body.tca-villes-page #left-area,
html body.tca-villes-page #et-main-area {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border: none !important;
    box-shadow: none !important;
}
/* Le wrapper Divi Theme Builder ne doit pas reserver d'espace pour la sidebar */
html body.tca-villes-page #content-area,
html body.tca-villes-page #left-area {
    width: 100% !important;
    float: none !important;
}
html body.tca-villes-page #sidebar { display: none !important; }
html body.tca-villes-page #main-content .container:before { display: none !important; }
/* La page elle-meme ne doit pas avoir de padding-bottom qui cree de l'espace blanc avant le footer */
html body.tca-villes-page .tca-page {
    padding-bottom: 0 !important;
}
/* Le pagination div vide en bas doit disparaitre */
html body.tca-villes-page .pagination:empty,
html body.tca-villes-page .pagination .alignleft:empty,
html body.tca-villes-page .pagination .alignright:empty {
    display: none !important;
}
/* Footer Divi : pas de marge en haut qui cree un gap apres notre CTA */
html body.tca-villes-page footer.et-l--footer,
html body.tca-villes-page .et-l--footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* Header Divi : pas de marge en bas */
html body.tca-villes-page header.et-l--header,
html body.tca-villes-page .et-l--header {
    margin-bottom: 0 !important;
}

/* Desktop only : decoller le breadcrumb du header (mobile garde sa position) */
@media (min-width: 981px) {
    html body.tca-villes-page.tca-divi-compat .tca-hero-fullwidth .tca-hero-container {
        padding-top: 150px !important;
    }
}

/* ═══ Tablet & Mobile (Divi breakpoint 980px) ═══ */
@media (max-width: 980px) {
    /* SPECIFICITE MAXIMALE pour battre Divi 'body:not(.et-tb) #main-content .container { padding-top: 58px }' */
    html body.tca-villes-page.tca-divi-compat #main-content .container,
    html body.tca-villes-page.tca-divi-compat #main-content,
    html body.tca-villes-page.tca-divi-compat #et-main-area,
    html body.tca-villes-page.tca-divi-compat #content-area,
    html body.tca-villes-page.tca-divi-compat #left-area,
    html body.tca-villes-page.tca-divi-compat #et-boc,
    html body.tca-villes-page.tca-divi-compat #page-container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    /* Egalement standard pour redondance */
    body.tca-villes-page #page-container,
    body.tca-villes-page #et-boc,
    body.tca-villes-page #et-main-area,
    body.tca-villes-page #main-content,
    body.tca-villes-page #main-content .container,
    body.tca-villes-page #content-area,
    body.tca-villes-page #left-area,
    body.tca-villes-page .et_pb_row,
    body.tca-villes-page .et_pb_section {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    /* Le header Divi en theme builder : pas de marge en bas */
    body.tca-villes-page header.et-l--header,
    body.tca-villes-page .et-l--header {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    /* Hero : marge negative pour eliminer le gap residuel du theme builder Divi */
    body.tca-villes-page .tca-hero.tca-hero-fullwidth,
    body.tca-divi-compat .tca-hero.tca-hero-fullwidth {
        margin-top: -25px !important;
        padding-top: 0 !important;
        position: relative;
        z-index: 1;
    }
    body.tca-villes-page .tca-hero-fullwidth .tca-hero-container,
    body.tca-divi-compat .tca-hero-fullwidth .tca-hero-container {
        padding-top: 22px !important;
        padding-bottom: 22px !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }
}

@media (max-width: 768px) {
    /* Bords blancs : le contenu prend toute la largeur */
    body.tca-villes-page #left-area,
    body.tca-villes-page .container,
    body.tca-villes-page #content-area,
    body.tca-villes-page #main-content,
    body.tca-divi-compat #left-area,
    body.tca-divi-compat .container,
    body.tca-divi-compat #content-area,
    body.tca-divi-compat #main-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }
    body.tca-villes-page .tca-page {
        padding-left: 6px !important;
        padding-right: 6px !important;
        max-width: 100% !important;
    }
    /* Breadcrumb plus haut, cole au header */
    body.tca-villes-page .tca-breadcrumb-hero {
        margin-bottom: 8px !important;
        font-size: 11px !important;
    }
    /* CTA bloc final plus compact */
    body.tca-villes-page .tca-cta-block {
        padding: 32px 18px !important;
        margin-top: 40px !important;
    }
    body.tca-villes-page .tca-cta-block h2 { font-size: 22px !important; }
    body.tca-villes-page .tca-cta-block p { font-size: 14px !important; margin-bottom: 18px !important; }
    body.tca-villes-page .tca-btn-xl {
        padding: 14px 22px !important;
        font-size: 15px !important;
    }
    body.tca-villes-page .tca-cta-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    body.tca-villes-page .tca-cta-buttons .tca-btn-primary,
    body.tca-villes-page .tca-cta-buttons .tca-btn-whatsapp {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ═══════════════════════════════════════════════════════════════
 *  v1.6 — Archive Zones d'intervention (landing premium)
 * ═══════════════════════════════════════════════════════════════ */

/* ───── Stats bar ───── */
body.tca-villes-page .tca-stats-bar {
    background: linear-gradient(135deg, #f8f5ef 0%, #fdfaf3 100%);
    border-top: 1px solid rgba(11, 31, 58, 0.08);
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
    padding: 36px 24px;
    margin: 0 0 40px;
}
body.tca-villes-page .tca-stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
body.tca-villes-page .tca-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
body.tca-villes-page .tca-stat-num {
    font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--tca-navy, #0b1f3a);
    line-height: 1;
}
body.tca-villes-page .tca-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(11, 31, 58, 0.7);
    font-weight: 500;
}

/* ───── Section intro SEO ───── */
body.tca-villes-page .tca-section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}
body.tca-villes-page .tca-section-lead {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(11, 31, 58, 0.85);
    margin-top: 14px;
}
body.tca-villes-page .tca-section-subtitle {
    text-align: center;
    color: rgba(11, 31, 58, 0.65);
    font-size: 15px;
    margin: -10px auto 26px;
    max-width: 700px;
}

/* ───── Carte Leaflet ───── */
body.tca-villes-page .tca-section-map {
    padding: 30px 20px;
}
body.tca-villes-page .tca-archive-map {
    width: 100%;
    height: 520px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11, 31, 58, 0.12);
    border: 1px solid rgba(11, 31, 58, 0.08);
    z-index: 1;
}
body.tca-villes-page .leaflet-popup-content-wrapper {
    border-radius: 10px;
    box-shadow: 0 6px 22px rgba(11, 31, 58, 0.18);
}
body.tca-villes-page .leaflet-popup-content {
    margin: 14px 18px;
    font-family: inherit;
}
body.tca-villes-page .tca-map-popup {
    text-align: center;
    min-width: 160px;
}
body.tca-villes-page .tca-map-popup-name {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 16px;
    color: var(--tca-navy, #0b1f3a);
    font-weight: 600;
    margin: 0 0 4px;
}
body.tca-villes-page .tca-map-popup-cp {
    font-size: 12px;
    color: rgba(11, 31, 58, 0.6);
    margin-bottom: 8px;
}
body.tca-villes-page .tca-map-popup-link {
    display: inline-block;
    background: var(--tca-navy, #0b1f3a);
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}
body.tca-villes-page .tca-map-popup-link:hover {
    background: #142a4d;
}

/* ───── Services overview ───── */
body.tca-villes-page .tca-section-services-overview {
    padding: 40px 20px;
    background: #fafaf7;
}
body.tca-villes-page .tca-services-group-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 22px;
    color: var(--tca-navy, #0b1f3a);
    text-align: center;
    margin: 30px 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
body.tca-villes-page .tca-services-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}
body.tca-villes-page .tca-service-overview-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    border: 1px solid rgba(11, 31, 58, 0.08);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    text-decoration: none !important;
    color: var(--tca-navy, #0b1f3a) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
body.tca-villes-page .tca-service-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(11, 31, 58, 0.12);
    border-color: rgba(11, 31, 58, 0.25);
}
body.tca-villes-page .tca-service-overview-icon {
    color: var(--tca-navy, #0b1f3a);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 31, 58, 0.06);
    border-radius: 50%;
}
body.tca-villes-page .tca-service-overview-name {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 17px;
    margin: 4px 0 0;
    color: var(--tca-navy, #0b1f3a);
}
body.tca-villes-page .tca-service-overview-desc {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(11, 31, 58, 0.75);
    margin: 0;
    flex-grow: 1;
}
body.tca-villes-page .tca-service-overview-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--tca-navy, #0b1f3a);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* ───── FAQ zones d'intervention ───── */
body.tca-villes-page .tca-section-faq-areas {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}
body.tca-villes-page .tca-faq-areas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}
body.tca-villes-page .tca-faq-areas .tca-faq-item {
    background: #fff;
    border: 1px solid rgba(11, 31, 58, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
body.tca-villes-page .tca-faq-areas .tca-faq-item[open] {
    border-color: rgba(11, 31, 58, 0.3);
    box-shadow: 0 4px 16px rgba(11, 31, 58, 0.06);
}
body.tca-villes-page .tca-faq-areas .tca-faq-q {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 16px;
    color: var(--tca-navy, #0b1f3a);
    padding: 18px 22px;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 50px;
    font-weight: 500;
}
body.tca-villes-page .tca-faq-areas .tca-faq-q::-webkit-details-marker {
    display: none;
}
body.tca-villes-page .tca-faq-areas .tca-faq-q::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--tca-navy, #0b1f3a);
    font-weight: 300;
    transition: transform 0.2s;
}
body.tca-villes-page .tca-faq-areas .tca-faq-item[open] .tca-faq-q::after {
    transform: translateY(-50%) rotate(45deg);
}
body.tca-villes-page .tca-faq-areas .tca-faq-a {
    padding: 0 22px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(11, 31, 58, 0.8);
}

/* ───── Mobile responsive v1.6 ───── */
@media (max-width: 980px) {
    body.tca-villes-page .tca-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
    body.tca-villes-page .tca-stat-num {
        font-size: 32px !important;
    }
    body.tca-villes-page .tca-stat-label {
        font-size: 11px !important;
    }
    body.tca-villes-page .tca-archive-map {
        height: 380px !important;
        border-radius: 10px !important;
    }
    body.tca-villes-page .tca-services-overview-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    body.tca-villes-page .tca-section-lead {
        font-size: 15px !important;
    }
    body.tca-villes-page .tca-faq-areas .tca-faq-q {
        font-size: 14px !important;
        padding: 14px 18px !important;
        padding-right: 44px !important;
    }
    body.tca-villes-page .tca-faq-areas .tca-faq-a {
        font-size: 14px !important;
        padding: 0 18px 16px !important;
    }
}
@media (max-width: 600px) {
    body.tca-villes-page .tca-stats-bar {
        padding: 24px 16px !important;
    }
    body.tca-villes-page .tca-archive-map {
        height: 320px !important;
    }
    body.tca-villes-page .tca-services-group-title {
        font-size: 18px !important;
        letter-spacing: 1.5px !important;
    }
}

