/* ============================================
   Commune Pages - Vide Maison Belgique
   Design Premium avec animations & couleurs chaudes
   ============================================ */

/* --- Variables --- */
:root {
    --cm-primary: #1a56db;
    --cm-primary-dark: #1e40af;
    --cm-primary-light: #dbeafe;
    --cm-secondary: #059669;
    --cm-secondary-light: #d1fae5;
    --cm-accent: #f59e0b;
    --cm-accent-dark: #d97706;
    --cm-orange: #ea580c;
    --cm-purple: #7c3aed;
    --cm-dark: #0f172a;
    --cm-dark2: #1e293b;
    --cm-light: #f8fafc;
    --cm-light2: #f1f5f9;
    --cm-gray: #64748b;
    --cm-gray-light: #94a3b8;
    --cm-white: #ffffff;
    --cm-border: #e2e8f0;
    --cm-radius: 16px;
    --cm-radius-sm: 10px;
    --cm-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --cm-shadow-md: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.06);
    --cm-shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.15), 0 8px 16px -8px rgba(0,0,0,0.1);
    --cm-shadow-glow: 0 0 30px rgba(26, 86, 219, 0.15);
    --cm-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Breadcrumb --- */
.commune-breadcrumb {
    background: var(--cm-white);
    padding: 14px 0;
    border-bottom: 1px solid var(--cm-border);
}
.commune-breadcrumb .breadcrumb {
    margin: 0;
    font-size: 0.88rem;
}
.commune-breadcrumb .breadcrumb-item a {
    color: var(--cm-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.commune-breadcrumb .breadcrumb-item a:hover {
    color: var(--cm-accent);
}
.commune-breadcrumb .breadcrumb-item.active {
    color: var(--cm-gray);
}

/* --- Hero Section --- */
.commune-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 30%, var(--cm-primary) 60%, var(--cm-purple) 100%);
    background-size: 300% 300%;
    animation: heroGradient 12s ease infinite;
    color: #fff;
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.commune-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.commune-hero-section.show-hero {
    padding: 100px 0 85px;
}
.commune-hero-section.province-hero {
    padding: 90px 0 75px;
}
.commune-hero-section h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.commune-hero-section .lead {
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}
.commune-hero-section .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.hero-cta-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- CTA Buttons --- */
.btn-cta {
    background: linear-gradient(135deg, var(--cm-accent) 0%, var(--cm-orange) 100%);
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--cm-radius-sm);
    transition: var(--cm-transition);
    font-size: 1rem;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.btn-cta:hover {
    background: linear-gradient(135deg, var(--cm-accent-dark) 0%, #c2410c 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35);
}
.pulse-btn {
    animation: pulseGlow 2.5s infinite;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
    50% { box-shadow: 0 0 0 18px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 12px 30px;
    border-radius: var(--cm-radius-sm);
    font-weight: 600;
    transition: var(--cm-transition);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

/* --- Province Cards (Index Page) --- */
.province-card {
    display: block;
    text-decoration: none;
    color: var(--cm-dark);
    transition: var(--cm-transition);
}
.province-card:hover {
    text-decoration: none;
    color: var(--cm-dark);
}
.province-card-inner {
    background: var(--cm-white);
    border-radius: var(--cm-radius);
    padding: 35px 22px;
    text-align: center;
    box-shadow: var(--cm-shadow);
    transition: var(--cm-transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.province-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cm-primary), var(--cm-purple), var(--cm-accent));
    opacity: 0;
    transition: opacity 0.3s;
}
.province-card:hover .province-card-inner {
    transform: translateY(-10px);
    box-shadow: var(--cm-shadow-lg);
    border-color: var(--cm-primary-light);
}
.province-card:hover .province-card-inner::before {
    opacity: 1;
}
.province-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cm-primary), var(--cm-purple));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    transition: var(--cm-transition);
}
.province-card:hover .province-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(26, 86, 219, 0.3);
}
.province-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--cm-dark);
}
.commune-count {
    display: block;
    font-size: 0.85rem;
    color: var(--cm-gray);
    margin-bottom: 5px;
}
.province-arrow {
    display: inline-block;
    margin-top: 10px;
    color: var(--cm-primary);
    transition: var(--cm-transition);
    font-size: 1.1rem;
}
.province-card:hover .province-arrow {
    transform: translateX(8px);
    color: var(--cm-accent);
}

/* --- Province Content Section --- */
.province-services-section {
    background: var(--cm-white);
}
.province-service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: var(--cm-radius);
    background: var(--cm-light);
    border: 1px solid var(--cm-border);
    transition: var(--cm-transition);
    height: 100%;
}
.province-service-item:hover {
    background: var(--cm-white);
    box-shadow: var(--cm-shadow-md);
    transform: translateY(-3px);
    border-color: var(--cm-primary-light);
}
.province-service-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--cm-white);
}
.province-service-icon.icon-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.province-service-icon.icon-green { background: linear-gradient(135deg, #10b981, #047857); }
.province-service-icon.icon-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.province-service-icon.icon-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.province-service-icon.icon-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.province-service-icon.icon-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.province-service-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--cm-dark);
}
.province-service-info p {
    font-size: 0.9rem;
    color: var(--cm-gray);
    margin: 0;
    line-height: 1.6;
}

/* --- Commune Grid Cards --- */
.commune-card {
    display: block;
    text-decoration: none;
    color: var(--cm-dark);
}
.commune-card:hover {
    text-decoration: none;
    color: var(--cm-dark);
}
.commune-card-inner {
    background: var(--cm-white);
    border-radius: var(--cm-radius-sm);
    padding: 20px 16px;
    box-shadow: var(--cm-shadow);
    transition: var(--cm-transition);
    border: 1px solid var(--cm-border);
    position: relative;
    overflow: hidden;
}
.commune-card-inner::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cm-primary);
    opacity: 0;
    transition: var(--cm-transition);
    font-size: 0.75rem;
}
.commune-card:hover .commune-card-inner {
    transform: translateY(-5px);
    box-shadow: var(--cm-shadow-md);
    border-color: var(--cm-primary);
}
.commune-card:hover .commune-card-inner::after {
    opacity: 1;
    right: 12px;
}
.commune-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--cm-dark);
}
.commune-postal {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--cm-primary);
    font-weight: 700;
    margin-bottom: 5px;
    background: var(--cm-primary-light);
    padding: 2px 8px;
    border-radius: 4px;
}

/* --- Search Box --- */
.commune-search-box {
    position: relative;
}
.commune-search-box input {
    padding: 12px 45px 12px 18px;
    border-radius: var(--cm-radius-sm);
    border: 2px solid var(--cm-border);
    font-size: 0.95rem;
    transition: var(--cm-transition);
}
.commune-search-box input:focus {
    border-color: var(--cm-primary);
    box-shadow: var(--cm-shadow-glow);
    outline: none;
}
.commune-search-box i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cm-gray-light);
}

/* --- Counter Stats --- */
.commune-counter-section {
    background: linear-gradient(135deg, var(--cm-dark) 0%, #162033 50%, #1a2744 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.commune-counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(26, 86, 219, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.counter-item {
    padding: 30px 20px;
    position: relative;
}
.counter-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: inline-block;
}
.counter-icon .fa-users { color: #60a5fa; }
.counter-icon .fa-calendar-check { color: #34d399; }
.counter-icon .fa-home { color: #fbbf24; }
.counter-icon .fa-star { color: #f472b6; }
.counter-item .counter {
    font-size: 3rem;
    font-weight: 800;
    display: inline;
    background: linear-gradient(135deg, #fff, #dbeafe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.counter-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cm-accent);
}
.counter-item p {
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.7;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- Service Cards --- */
.commune-services-section {
    background: var(--cm-light);
    position: relative;
}
.service-card {
    background: var(--cm-white);
    border-radius: var(--cm-radius);
    padding: 35px 22px 28px;
    text-align: center;
    box-shadow: var(--cm-shadow);
    transition: var(--cm-transition);
    border: 1px solid var(--cm-border);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cm-primary), var(--cm-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--cm-shadow-lg);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--cm-primary-light), rgba(124, 58, 237, 0.1));
    color: var(--cm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    transition: var(--cm-transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--cm-primary), var(--cm-purple));
    color: #fff;
    transform: scale(1.1);
}
.service-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--cm-dark);
}
.service-card p {
    font-size: 0.85rem;
    color: var(--cm-gray);
    margin: 0;
    line-height: 1.6;
}

/* --- Process Steps --- */
.commune-process-section {
    background: var(--cm-white);
    position: relative;
}
.process-timeline {
    position: relative;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--cm-primary), var(--cm-purple), var(--cm-accent));
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.2;
}
.process-step {
    text-align: center;
    position: relative;
    padding: 30px 15px;
    z-index: 1;
}
.step-number {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cm-accent), var(--cm-orange));
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
}
.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cm-primary), var(--cm-purple));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    box-shadow: 0 8px 25px rgba(26, 86, 219, 0.25);
    transition: var(--cm-transition);
}
.process-step:hover .step-icon {
    transform: scale(1.12);
    box-shadow: 0 12px 35px rgba(26, 86, 219, 0.35);
}
.process-step h4 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cm-dark);
}
.process-step p {
    font-size: 0.88rem;
    color: var(--cm-gray);
    line-height: 1.6;
}

/* --- Why Us --- */
.commune-why-us {
    background: var(--cm-light);
}

/* --- Province Info --- */
.province-info-card {
    background: var(--cm-white);
    border-radius: var(--cm-radius);
    padding: 35px;
    box-shadow: var(--cm-shadow-md);
    border-left: 5px solid var(--cm-primary);
}

/* --- Local Stats --- */
.local-stat-card {
    background: var(--cm-white);
    border-radius: var(--cm-radius);
    padding: 28px 18px;
    text-align: center;
    border: 1px solid var(--cm-border);
    transition: var(--cm-transition);
}
.local-stat-card:hover {
    box-shadow: var(--cm-shadow-md);
    border-color: var(--cm-primary-light);
}
.local-stat-card i {
    font-size: 1.6rem;
    color: var(--cm-primary);
    margin-bottom: 12px;
    display: block;
}
.local-stat-card strong {
    display: block;
    font-size: 1.4rem;
    color: var(--cm-dark);
    font-weight: 800;
}
.local-stat-card span {
    font-size: 0.85rem;
    color: var(--cm-gray);
}

/* --- FAQ --- */
.commune-faq-section {
    background: var(--cm-white);
}
.commune-faq-section .accordion-item {
    border: 1px solid var(--cm-border);
    border-radius: var(--cm-radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--cm-transition);
}
.commune-faq-section .accordion-item:hover {
    box-shadow: var(--cm-shadow);
}
.commune-faq-section .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 22px;
    color: var(--cm-dark);
}
.commune-faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--cm-primary-light), rgba(124, 58, 237, 0.05));
    color: var(--cm-primary);
    box-shadow: none;
}
.commune-faq-section .accordion-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--cm-gray);
    padding: 5px 22px 22px;
}

/* --- Nearby Cards --- */
.commune-nearby-section {
    background: var(--cm-light);
}
.nearby-card {
    display: block;
    text-decoration: none;
    color: var(--cm-dark);
}
.nearby-card:hover {
    text-decoration: none;
    color: var(--cm-dark);
}
.nearby-card-inner {
    background: var(--cm-white);
    border-radius: var(--cm-radius);
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--cm-shadow);
    transition: var(--cm-transition);
    border: 1px solid var(--cm-border);
}
.nearby-card:hover .nearby-card-inner {
    transform: translateY(-5px);
    box-shadow: var(--cm-shadow-md);
    border-color: var(--cm-primary);
}
.nearby-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cm-primary-light), rgba(124, 58, 237, 0.1));
    color: var(--cm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: var(--cm-transition);
}
.nearby-card:hover .nearby-icon {
    background: linear-gradient(135deg, var(--cm-primary), var(--cm-purple));
    color: #fff;
}
.nearby-info {
    flex: 1;
}
.nearby-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--cm-dark);
}
.postal-badge {
    display: inline-block;
    font-size: 0.72rem;
    background: var(--cm-primary-light);
    padding: 2px 9px;
    border-radius: 4px;
    color: var(--cm-primary);
    font-weight: 700;
}
.nearby-arrow {
    color: var(--cm-primary);
    transition: var(--cm-transition);
}
.nearby-card:hover .nearby-arrow {
    transform: translateX(5px);
    color: var(--cm-accent);
}

/* --- Quote Form Section --- */
.commune-form-section {
    background: linear-gradient(135deg, var(--cm-primary) 0%, var(--cm-primary-dark) 40%, var(--cm-purple) 100%);
    background-size: 200% 200%;
    animation: formGradient 10s ease infinite;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.commune-form-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
@keyframes formGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.form-section-header {
    text-align: center;
    margin-bottom: 15px;
}
.form-section-header h2 {
    color: #fff;
    font-weight: 800;
    font-size: 2rem;
}
.form-section-header p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
}
.form-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 35px;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    font-weight: 500;
}
.trust-badge i {
    color: var(--cm-accent);
    font-size: 1.1rem;
}
.quote-form-wrapper {
    background: var(--cm-white);
    border-radius: var(--cm-radius);
    padding: 45px;
    color: var(--cm-dark);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    position: relative;
    z-index: 1;
}
.form-step {
    transition: all 0.4s ease;
}
.form-step h4 {
    font-weight: 700;
    color: var(--cm-primary);
    margin-bottom: 5px;
    font-size: 1.15rem;
}
.form-progress .progress {
    height: 32px;
    border-radius: var(--cm-radius-sm);
    background: var(--cm-light2);
}
.form-progress .progress-bar {
    background: linear-gradient(135deg, var(--cm-primary), var(--cm-purple));
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--cm-radius-sm);
    transition: width 0.5s ease;
}
.form-select, .form-control {
    border: 2px solid var(--cm-border);
    border-radius: 8px;
    padding: 10px 14px;
    transition: var(--cm-transition);
}
.form-select:focus, .form-control:focus {
    border-color: var(--cm-primary);
    box-shadow: var(--cm-shadow-glow);
}
#form-success .success-icon {
    font-size: 5rem;
    color: var(--cm-secondary);
    margin-bottom: 20px;
}
#form-success h3 {
    color: var(--cm-secondary);
    font-weight: 800;
}

/* --- CTA Section --- */
.commune-cta-section {
    background: linear-gradient(135deg, var(--cm-secondary) 0%, #047857 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.commune-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.commune-cta-section h2 {
    color: #fff;
    font-weight: 800;
}
.commune-cta-section .btn-cta {
    background: #fff;
    color: var(--cm-secondary);
    text-shadow: none;
    font-size: 1.1rem;
    padding: 15px 35px;
}
.commune-cta-section .btn-cta:hover {
    background: var(--cm-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* --- Floating Phone Button --- */
.floating-phone-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cm-secondary), #047857);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: var(--cm-transition);
}
.floating-phone-btn:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.5);
}
.shake-animation {
    animation: phoneShake 4s ease-in-out infinite;
}
@keyframes phoneShake {
    0%, 80%, 100% { transform: rotate(0deg); }
    82% { transform: rotate(15deg) scale(1.05); }
    84% { transform: rotate(-12deg) scale(1.05); }
    86% { transform: rotate(12deg); }
    88% { transform: rotate(-8deg); }
    90% { transform: rotate(5deg); }
}

/* --- Section Headings --- */
.commune-section h2,
.commune-services-section h2,
.commune-process-section h2,
.commune-nearby-section h2,
.commune-faq-section h2,
.province-services-section h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--cm-dark);
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--cm-gray);
    max-width: 600px;
    margin: 0 auto 10px;
}
.commune-content-text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #475569;
}

/* --- Guarantees Banner --- */
.guarantees-banner {
    background: var(--cm-light);
    border: 2px solid var(--cm-border);
    border-radius: var(--cm-radius);
    padding: 30px;
}
.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}
.guarantee-item i {
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
.guarantee-item i.text-success {
    background: var(--cm-secondary-light);
    color: var(--cm-secondary);
}
.guarantee-item i.text-primary {
    background: var(--cm-primary-light);
    color: var(--cm-primary);
}
.guarantee-item i.text-warning {
    background: #fef3c7;
    color: var(--cm-accent-dark);
}
.guarantee-item span {
    font-weight: 600;
    color: var(--cm-dark);
    font-size: 0.95rem;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .process-timeline::before { display: none; }
}
@media (max-width: 768px) {
    .commune-hero-section {
        padding: 55px 0 50px;
    }
    .commune-hero-section.show-hero {
        padding: 65px 0 55px;
    }
    .commune-hero-section h1 {
        font-size: 1.6rem;
    }
    .commune-hero-section .lead {
        font-size: 1rem;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    .hero-cta-group .btn {
        width: 100%;
        max-width: 300px;
    }
    .quote-form-wrapper {
        padding: 28px 22px;
    }
    .counter-item .counter {
        font-size: 2.2rem;
    }
    .province-card-inner {
        padding: 22px 16px;
    }
    .floating-phone-btn {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
    }
    .form-trust-badges {
        gap: 15px;
    }
    .province-service-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .form-section-header h2 {
        font-size: 1.5rem;
    }
}
@media (max-width: 576px) {
    .commune-hero-section h1 {
        font-size: 1.3rem;
    }
    .process-step {
        padding: 20px 10px;
    }
    .commune-section h2,
    .commune-services-section h2,
    .commune-process-section h2 {
        font-size: 1.4rem;
    }
}
