/* ========================================
   COUVREUR PEINTURE RAVALEMENT VANNES
   Machine à Leads SEO Local
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
    --primary: #0077B6;
    --primary-dark: #005A8C;
    --primary-light: #0090D9;
    --secondary: #90E0EF;
    --secondary-light: #CAF0F8;
    --accent: #023E8A;
    --accent-orange: #E85D04;
    --accent-orange-dark: #D14E00;
    --dark: #1A1A2E;
    --dark-light: #2D2D44;
    --text: #333340;
    --text-light: #555566;
    --text-muted: #71717A;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --transition: 0.3s ease;
    --max-width: 1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
p { margin-bottom: 1rem; }

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.2;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0,119,182,0.35);
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,119,182,0.45);
}
.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    font-weight: 700;
}
.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-accent {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    box-shadow: 0 4px 14px rgba(232,93,4,0.35);
    font-weight: 700;
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,93,4,0.45);
    color: var(--white);
    filter: brightness(1.1);
}
.btn-white {
    background: var(--white);
    color: var(--dark);
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white:hover {
    background: var(--gray-100);
    color: var(--dark);
    transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ---- HEADER / NAV ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}
.nav-logo-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.5px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-menu a {
    padding: 8px 16px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.nav-menu a:hover {
    color: var(--primary-dark);
    background: var(--gray-100);
}
.nav-menu a.active {
    color: var(--white);
    background: var(--primary);
    font-weight: 600;
}
.nav-cta {
    margin-left: 8px;
}
.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.875rem;
}

/* Mobile Nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition);
    border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 69px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform var(--transition);
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu a { width: 100%; padding: 14px 16px; font-size: 1rem; }
    .nav-cta { margin-left: 0; width: 100%; }
    .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,30,60,0.88) 0%, rgba(0,119,182,0.65) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.15;
}
.hero h1 span { color: var(--secondary); }
.hero p {
    color: rgba(255,255,255,0.95);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.25);
}
.hero-stat { text-align: center; }
.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
}
.hero-stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 100px 0; }
.section-gray { background: var(--gray-50); }
.section-dark { background: var(--dark); color: var(--white); }
.section-primary { background: var(--primary); color: var(--white); }
.section-gradient { background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%); color: var(--white); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.section-header .section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.section-dark .section-label { color: var(--secondary); }
.section-header h2 { margin-bottom: 16px; }
.section-dark h2 { color: var(--white); }
.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}
.section-dark .section-header p { color: rgba(255,255,255,0.8); }

/* ---- CARDS ---- */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--border);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 28px; }
.card-icon {
    width: 56px;
    height: 56px;
    background: var(--secondary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 16px;
}
.card-body h3 { margin-bottom: 12px; }
.card-body p { color: var(--text-light); font-size: 0.95rem; }
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 16px;
}
.card-link:hover { gap: 10px; }

/* ---- Grid Layouts ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 992px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---- Split Layout ---- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
@media (max-width: 768px) {
    .split, .split-reverse { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- Services Grid ---- */
.service-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* ---- Testimonials ---- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    position: relative;
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: #D97706;
    font-size: 1.1rem;
}
.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-name {
    font-weight: 600;
    color: var(--dark);
}
.testimonial-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---- FAQ ---- */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item.active { border-color: var(--primary); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    background: var(--white);
    font-weight: 600;
    color: var(--dark);
    transition: all var(--transition);
    gap: 16px;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ---- Zone/Cities Grid ---- */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.city-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text);
}
.city-card:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.city-card-icon {
    color: var(--primary);
    flex-shrink: 0;
}
.city-card-info h4 { font-size: 0.95rem; margin-bottom: 2px; color: var(--dark); }
.city-card:hover .city-card-info h4 { color: var(--primary-dark); }
.city-card-info span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Iframe Devis ---- */
.devis-wrapper {
    background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
    padding: 60px 0;
    position: relative;
}
.devis-wrapper .section-header h2 { color: var(--white); }
.devis-wrapper .section-header p { color: rgba(255,255,255,0.8); }
.devis-iframe-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.devis-iframe-container iframe {
    display: block;
    width: 100%;
    min-height: 600px;
    border: none;
    background: transparent;
}

/* ---- Simulateur ---- */
.simulator {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.simulator h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.9rem;
}
.form-group select,
.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
}
.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}
.simulator-result {
    margin-top: 24px;
    padding: 24px;
    background: var(--secondary-light);
    border-radius: var(--radius);
    border: 2px solid var(--primary);
    display: none;
}
.simulator-result.visible { display: block; }
.simulator-result h4 { color: var(--primary-dark); margin-bottom: 8px; font-weight: 700; }
.simulator-result .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
    padding: 16px 0;
    margin-top: 69px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--border);
}
.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.85rem;
}
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .separator { color: var(--gray-300); }
.breadcrumb-list .current { color: var(--primary-dark); font-weight: 600; }

/* ---- FOOTER ---- */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand p { line-height: 1.8; margin-top: 16px; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ---- Sticky CTA Mobile ---- */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--accent-orange);
    padding: 14px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
}
@media (max-width: 768px) {
    .sticky-cta { display: block; }
    .site-footer { padding-bottom: 60px; }
}

/* ---- Exit Popup ---- */
.exit-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}
.exit-popup-overlay.visible { display: flex; }
.exit-popup {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 520px;
    width: 90%;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    animation: popIn 0.4s ease;
}
@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text);
    transition: all var(--transition);
}
.exit-popup-close:hover { background: var(--gray-200); color: var(--dark); }
.exit-popup-icon {
    width: 72px;
    height: 72px;
    background: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.exit-popup h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}
.exit-popup p {
    color: var(--text-light);
    margin-bottom: 28px;
}

/* ---- Reveal On Scroll ---- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Gallery / Realisations ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Page Ville ---- */
.ville-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
    color: var(--white);
}
.ville-hero h1 { color: var(--white); }
.ville-hero h1 span { color: var(--secondary); }
.ville-hero p { color: rgba(255,255,255,0.9); }
.ville-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.ville-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ---- Trust Banner ---- */
.trust-banner {
    background: var(--gray-50);
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}
.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}
.trust-item i { color: var(--primary); }

/* ---- Nearby Cities ---- */
.nearby-cities {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.nearby-city {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--primary);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition);
    text-decoration: none;
}
.nearby-city:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 60px 0;
    text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 32px; font-size: 1.1rem; }

/* ---- Misc ---- */
.text-primary { color: var(--primary-dark) !important; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mt-4 { margin-top: 32px; }

/* ---- 404 ---- */
.page-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 69px;
}
.page-404 h1 {
    font-size: 6rem;
    color: var(--primary);
    line-height: 1;
}

/* ---- Specific contrast fixes for dark sections ---- */
.section-dark .btn-primary {
    background: var(--white);
    color: var(--dark);
}
.section-dark .btn-primary:hover {
    background: var(--secondary);
    color: var(--dark);
}
.section-gradient .btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(232,93,4,0.35);
}
.section-gradient .btn-primary:hover {
    background: var(--accent-orange-dark);
    color: var(--white);
}

/* ---- List check markers ---- */
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text);
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ---- Service page hero ---- */
.service-hero {
    margin-top: 69px;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
    color: var(--white);
}
.service-hero h1 { color: var(--white); }
.service-hero p { color: rgba(255,255,255,0.9); font-size: 1.1rem; }