/* ==========================================================================
   Annuaire — Template Générique — CSS
   ========================================================================== */

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Variables */
:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --hero-start: #1a365d;
    --hero-end: #2563eb;
    --accent: #FCD34D;
    --accent-dark: #F59E0B;
    --teal: #0d9488;
    --teal-dark: #0f766e;
    --cta-start: #065f46;
    --cta-end: #0d9488;
    --text: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --border: #e5e7eb;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    --bg-dark-card: #1f2937;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --container: 1200px;
}

/* Base */
html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--text-light); }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.lead { font-size: 1.125rem; color: var(--text-light); margin-bottom: 2rem; }
.accent { color: var(--accent); }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1rem; }
section { padding: 4rem 0; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}
.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-1px);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

.btn-large { padding: 1rem 2rem; font-size: 1.125rem; font-weight: 600; }

.cta-button {
    background: var(--accent-dark);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    transition: all 0.2s ease;
}
.cta-button:hover { background: #d97706; color: #1a1a1a; transform: translateY(-1px); }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    background: var(--bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo a { text-decoration: none; color: var(--text); }
.logo-title { font-size: 1.5rem; font-weight: 700; display: block; }
.logo-title .accent { color: var(--primary); }
.logo-tagline { font-size: 0.875rem; color: var(--text-light); display: block; margin: 0; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { text-decoration: none; color: var(--text); font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--primary); }

.mobile-menu { display: none; }
.mobile-menu-toggle { background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
    background: var(--bg-light);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--text-muted); margin: 0 0.5rem; }
.breadcrumb .current { color: var(--text); font-weight: 500; }

/* ==========================================================================
   Hero Sections — Blue gradient, white text, gold accent
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--hero-start) 0%, var(--hero-end) 100%);
    color: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hero-image, none) center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.hero .lead { color: rgba(255,255,255,0.9); }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-stats { display: flex; gap: 2rem; margin: 2rem 0; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.5rem; font-weight: 700; color: #fff; }
.stat span { font-size: 0.875rem; opacity: 0.9; }

.hero-cta { display: flex; gap: 1rem; margin-top: 2rem; }

.hero-visual { display: flex; justify-content: center; }
.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-card h3 { margin-bottom: 1rem; color: #fff; }
.hero-card ul { list-style: none; }
.hero-card li { padding: 0.5rem 0; font-size: 0.875rem; }

/* Department hero — no grid, single column text */
.department-hero {
    padding: 3rem 0;
}
.department-hero .hero-text { max-width: 800px; }

/* City hero */
.city-hero { padding: 2.5rem 0; }

.hero-subtitle { font-size: 1.125rem; margin-bottom: 2rem; opacity: 0.9; color: rgba(255,255,255,0.9); }

.hero-features { display: flex; gap: 1rem; }
.feature-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 1.5rem;
    flex: 1;
    border: 1px solid rgba(255,255,255,0.2);
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-text strong { display: block; font-size: 0.875rem; margin-bottom: 0.25rem; color: #fff; }
.feature-text span { font-size: 0.75rem; opacity: 0.8; }

/* ==========================================================================
   ViteUnDevis Devis Section — Full Width after hero
   ========================================================================== */
.devis-section {
    background: linear-gradient(135deg, var(--cta-start) 0%, var(--cta-end) 100%);
    padding: 2rem 0;
}

.devis-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.devis-text h2 { color: #fff; font-size: 1.5rem; margin-bottom: 1rem; }
.devis-steps { display: flex; flex-direction: column; gap: 0.5rem; }
.step-item { color: rgba(255,255,255,0.9); font-size: 1rem; }
.devis-reassurance { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-top: 0.75rem; font-style: italic; }

.devis-widget {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ==========================================================================
   Services
   ========================================================================== */
.services { background: var(--bg-light); }
.services h2 { text-align: center; margin-bottom: 3rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card .service-icon { font-size: 3rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 1rem; }

/* Services inline grid (city page) */
.services-list-section { background: var(--bg-light); padding: 2rem 0; }
.services-list-section h2 { text-align: center; margin-bottom: 2rem; }

.services-inline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 0.875rem;
    font-weight: 500;
}
.service-item .service-icon { font-size: 1.5rem; margin: 0; flex-shrink: 0; }

/* Section header */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-subtitle { font-size: 1.125rem; color: var(--text-light); margin-top: 1rem; }

/* ==========================================================================
   Department Cards (homepage)
   ========================================================================== */
.departments { padding: 4rem 0; }
.departments h2 { text-align: center; }
.departments .section-subtitle { text-align: center; }

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

.dept-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
}
.dept-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text);
}
.dept-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.dept-header h3 { margin: 0; color: var(--text); }
.dept-code {
    background: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
}
.dept-stats { display: flex; justify-content: space-between; align-items: center; }
.dept-count { color: var(--text-light); font-size: 0.875rem; }
.arrow { font-size: 1.5rem; color: var(--primary); }

/* ==========================================================================
   City Cards (department page)
   ========================================================================== */
.cities-section { padding: 4rem 0; }

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.city-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.city-card:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
    color: var(--text);
}
.city-header h3 { margin: 0 0 0.25rem 0; color: var(--text); font-size: 1.125rem; }
.postal-code {
    background: var(--bg-light);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}
.city-info { margin-top: 0.5rem; }
.city-info span { display: block; font-size: 0.875rem; color: var(--text-light); }
.entreprises-badge {
    display: inline-block;
    font-size: 0.75rem;
    background: var(--teal);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius);
    margin-top: 0.25rem;
}
.entreprises-nearby { font-size: 0.8rem; color: var(--text-muted); font-style: italic; }
.city-arrow { font-size: 1.25rem; color: var(--primary); flex-shrink: 0; }

/* ==========================================================================
   Artisan Cards (city page)
   ========================================================================== */
.artisans-section { margin-bottom: 3rem; }

.artisans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.artisan-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}
.artisan-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.artisan-header { margin-bottom: 1rem; }
.artisan-header h3 { margin: 0; color: var(--text); }

.artisan-address { color: var(--text-light); font-size: 0.875rem; margin-bottom: 1rem; }

.artisan-info { margin-bottom: 1.5rem; }
.specialites { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 500;
}

.artisan-actions { display: flex; gap: 1rem; }
.artisan-actions .btn { flex: 1; text-align: center; }

.no-artisans {
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

/* ==========================================================================
   Content Grid (city page layout)
   ========================================================================== */
.main-content { padding: 2rem 0; }

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}
.content-main { min-width: 0; }
.content-sidebar { position: sticky; top: 120px; height: fit-content; }

/* Sidebar */
.sidebar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.cta-card {
    background: linear-gradient(135deg, var(--hero-start), var(--hero-end));
    color: #fff;
    border: none;
}
.cta-card h3 { color: #fff; margin-bottom: 1rem; }
.cta-benefits { list-style: none; margin-bottom: 2rem; }
.cta-benefits li { padding: 0.5rem 0; font-size: 0.875rem; }

.contact-card p { margin-bottom: 0.5rem; font-size: 0.875rem; }

/* ==========================================================================
   Nearby Cities
   ========================================================================== */
.nearby-cities { margin-top: 3rem; }

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.nearby-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nearby-card:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
    color: var(--text);
}
.nearby-info h4 { margin: 0 0 0.25rem 0; font-size: 1rem; }
.distance { font-size: 0.75rem; color: var(--text-light); }

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}
.pagination-link {
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}
.pagination-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination-current {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 500;
}
.pagination-numbers { display: flex; gap: 0.25rem; }

/* ==========================================================================
   Related Departments
   ========================================================================== */
.related-departments { background: var(--bg-light); padding: 4rem 0; }

.departments-list { display: flex; flex-wrap: wrap; gap: 1rem; }

.dept-link {
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.dept-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ==========================================================================
   Why Choose
   ========================================================================== */
.why-choose { background: var(--bg-light); padding: 4rem 0; }
.why-choose h2 { text-align: center; margin-bottom: 2rem; }
.why-image { text-align: center; margin-bottom: 2.5rem; }
.why-image img { width: 100%; max-width: 700px; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.reason {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}
.reason-icon { font-size: 3rem; margin-bottom: 1rem; }
.reason h3 { margin-bottom: 1rem; }

/* ==========================================================================
   Footer — Dark background, clean colors
   ========================================================================== */
.footer {
    background: var(--bg-dark);
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 { color: #f9fafb; margin-bottom: 1.5rem; font-size: 1.125rem; }
.footer-section p { color: #d1d5db; }

/* Footer department links */
.footer-dept-grid { display: grid; grid-template-columns: 1fr; gap: 0.25rem; }
.footer-dept-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d1d5db;
    text-decoration: none;
    padding: 0.4rem 0;
    border-bottom: 1px solid #374151;
    transition: color 0.2s;
}
.footer-dept-link:hover { color: #60a5fa; }
.footer-dept-link .dept-name { font-weight: 500; }
.footer-dept-link .dept-code { font-size: 0.875rem; opacity: 0.7; color: #9ca3af; background: transparent; }

/* Footer services */
.footer-services { list-style: none; }
.footer-services li { color: #d1d5db; padding: 0.3rem 0; font-size: 0.875rem; }

/* Footer highlights */
.footer-highlights { display: flex; gap: 1.5rem; margin-top: 1rem; }
.footer-highlight {
    text-align: center;
    background: var(--bg-dark-card);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
}
.footer-highlight strong { display: block; color: #f9fafb; font-size: 1.125rem; margin-bottom: 0.25rem; }
.footer-highlight span { color: #9ca3af; font-size: 0.875rem; }

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { color: #9ca3af; margin: 0; font-size: 0.875rem; }
.footer-stats { display: flex; gap: 2rem; font-size: 0.875rem; }
.footer-stats span { color: #9ca3af; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-cta { justify-content: center; }
    .hero-visual { display: none; }
    .devis-banner { grid-template-columns: 1fr; }
    .cta-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .content-grid { grid-template-columns: 1fr; gap: 2rem; }
    .content-sidebar { position: static; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero { padding: 2rem 0; }
    .hero h1 { font-size: 2rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-features { flex-direction: column; }
    section { padding: 2rem 0; }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        box-shadow: var(--shadow);
    }
    .nav.open { display: flex; }
    .mobile-menu { display: block; }

    .departments-grid,
    .cities-grid,
    .artisans-grid,
    .services-grid,
    .services-inline-grid { grid-template-columns: 1fr; }

    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-stats { justify-content: center; }
    .footer-highlights { flex-direction: column; gap: 1rem; }
}

@media (max-width: 480px) {
    .hero { padding: 1.5rem 0; }
    .hero-card, .feature-card { padding: 1rem; }
    .service-card, .artisan-card, .sidebar-card { padding: 1.5rem; }
}

/* Google Maps ratings */
.artisan-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}
.artisan-rating .stars {
    color: #f59e0b;
    letter-spacing: 1px;
}
.artisan-rating .rating-value {
    font-weight: 600;
    color: #374151;
}
.artisan-rating .review-count {
    color: #9ca3af;
    font-size: 0.8rem;
}
.artisan-phone {
    color: #4b5563;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* ── Reviews Section ────────────────────────────── */
.artisan-reviews {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}
.artisan-reviews h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
}
.review-item {
    background: #f9fafb;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
}
.review-item:last-child { margin-bottom: 0; }
.review-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}
.review-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.review-author {
    font-weight: 600;
    font-size: 0.8rem;
    color: #4b5563;
}
.review-date {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-left: auto;
}
.review-text {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* ── Testimonials Section ───────────────────────── */
.testimonials-section {
    padding: 3rem 0;
    background: #f0f9ff;
}
.testimonials-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
}
.testimonial-text {
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    flex: 1;
}
.testimonial-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    padding-top: 0.6rem;
}
.testimonial-author {
    font-weight: 600;
    color: #374151;
}
.testimonial-location {
    color: #9ca3af;
}
@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* === STICKY CTA MOBILE === */
.sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #065f46 0%, #0d9488 100%);
    color: white;
    padding: 1rem 1.5rem;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta-icon {
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

.sticky-cta:active {
    background: linear-gradient(135deg, #064e3b 0%, #0f766e 100%);
}

/* Hide on desktop */
@media (min-width: 769px) {
    .sticky-cta { display: none !important; }
}

/* Mobile padding for sticky */
@media (max-width: 768px) {
    body { padding-bottom: 60px; }
}
