/* ============================================
   Couvreur Ardennes - Styles CSS
   Adapted for roofing services in Ardennes
   ============================================ */

/* === Variables & Reset === */
:root {
    --primary-color: #1B4332;
    --secondary-color: #2D6A4F;
    --accent-color: #D4A017;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
    --success-color: #28A745;
    --danger-color: #DC3545;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

/* Support for emojis and special characters */
.service-icon, .step-icon, .urgence-text, .feature-icon,
.avantage-icon, .reason-number, .emergency-text h2,
.specialty-item h3, .trust-item img {
    font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
}

/* Sections default visibility */
section {
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 1;
}

/* Animated elements: visible by default, JS may hide them for scroll animation */
.service-card,
.zone-card,
.testimonial-card,
.reason-card,
.process-step,
.faq-item {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* CSS class applied by JS when animation completes - must override inline styles */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Header Styles === */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header-top {
    background: var(--danger-color);
    color: var(--white);
    padding: 8px 0;
}

/* Urgence Banner */
.urgence-banner {
    background: var(--danger-color);
    color: var(--white);
    padding: 8px 0;
    text-align: center;
}

.urgence-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.urgence-banner .urgence-text {
    font-weight: 600;
    animation: pulse 2s infinite;
}

.urgence-banner .urgence-tel {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-block {
    display: flex;
    flex-direction: column;
}

.logo {
    text-decoration: none !important;
}

.logo:hover {
    text-decoration: none !important;
}

.logo .logo-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2px;
    transition: color 0.3s;
}

.logo:hover .logo-title {
    color: var(--secondary-color);
}

.tagline {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

/* Logo Proximitorio (right side of navbar) */
.nav-logo-right {
    height: 40px;
    width: auto;
    margin-left: 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.btn-urgence {
    background: var(--danger-color);
    color: var(--white) !important;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

.btn-contact {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 5px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    text-align: center;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-note {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.95;
}

/* === Ville-specific Hero === */
.ville-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ville-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.ville-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -50px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.ville-hero .container {
    position: relative;
    z-index: 1;
}

.ville-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ville-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

/* Ville info badges (glassmorphism) */
.ville-infos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.ville-info {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background: #c4910e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* btn-outline on dark/hero backgrounds */
.hero .btn-outline,
.ville-hero .btn-outline,
.section-dark .btn-outline,
.urgence-banner .btn-outline,
.emergency-banner .btn-outline,
.local-cta .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.hero .btn-outline:hover,
.ville-hero .btn-outline:hover,
.section-dark .btn-outline:hover,
.urgence-banner .btn-outline:hover,
.emergency-banner .btn-outline:hover,
.local-cta .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-danger {
    background: var(--white);
    color: var(--danger-color);
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.3rem;
}

.btn-subtitle {
    display: block;
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0.9;
    font-weight: 400;
}

/* === Trust Indicators === */
.trust-indicators {
    padding: 40px 0;
    background: var(--white);
}

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

.trust-item {
    text-align: center;
}

.trust-item img {
    margin-bottom: 15px;
}

.trust-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* === Services Section === */
.services-preview {
    display: block;
    padding: 80px 0;
    background: var(--light-color);
    visibility: visible;
    opacity: 1;
    position: relative;
    overflow: visible;
}

.section-title {
    display: block;
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-subtitle {
    display: block;
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    visibility: visible;
    opacity: 1;
    position: relative;
}

.service-card {
    display: block;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    visibility: visible;
    opacity: 1;
    height: auto;
    overflow: visible;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.service-card ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.service-card ul li {
    display: list-item;
    padding: 5px 0;
    color: #555;
    line-height: 1.5;
}

.service-card ul li::before {
    content: "\2713 ";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 5px;
}

.service-price {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin: 15px 0;
}

/* Service card price highlight */
.service-card .price {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #e6b800);
    color: var(--dark-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 10px;
}

.btn-service {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* === Zones Section === */
.zones {
    padding: 80px 0;
    background: var(--white);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    visibility: visible;
    opacity: 1;
}

.zone-card {
    background: var(--white);
    border: 2px solid var(--light-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

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

.zone-card.main-city {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.zone-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.intervention-time {
    display: inline-block;
    padding: 5px 10px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.main-city .intervention-time {
    background: var(--white);
    color: var(--primary-color);
}

.zone-card a {
    text-decoration: none;
    color: inherit;
}

.zone-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0;
}

/* === CTA Section === */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

/* === Contact Form === */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* === Why Choose Section === */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    visibility: visible;
    opacity: 1;
}

.reason-card {
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.reason-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* === Process Timeline === */
.process {
    padding: 80px 0;
    background: var(--light-color);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    visibility: visible;
    opacity: 1;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--primary-color);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* === Specialties Section === */
.specialties {
    padding: 80px 0;
    background: var(--white);
}

.specialties-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    visibility: visible;
    opacity: 1;
}

.specialty-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
}

.specialty-item h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.specialty-item ul {
    list-style: none;
}

.specialty-item ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.specialty-item ul li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* === Emergency Banner === */
.emergency-banner {
    background: linear-gradient(135deg, var(--danger-color), #c82333);
    color: var(--white);
    padding: 60px 0;
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.emergency-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.emergency-points {
    list-style: none;
    margin-top: 20px;
}

.emergency-points li {
    padding: 8px 0;
    font-size: 1.1rem;
}

.emergency-action {
    text-align: center;
}

.emergency-note {
    margin-top: 15px;
    font-size: 1rem;
}

/* === Testimonials === */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    visibility: visible;
    opacity: 1;
}

.testimonial-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-date {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #999;
}

.review-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

/* === FAQ Section === */
.faq-preview {
    padding: 80px 0;
    background: var(--light-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    visibility: visible;
    opacity: 1;
}

/* FAQ accordion animation */
.faq-item {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-color);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.faq-item p {
    line-height: 1.6;
    color: #555;
}

/* === Page Hero (Internal Pages) === */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 0.95rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* === Local Pages Specific Styles === */
.local-intro {
    padding: 60px 0;
    background: var(--white);
    display: block;
    visibility: visible;
    opacity: 1;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    visibility: visible;
    opacity: 1;
}

.intro-text h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.intro-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.local-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item .feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-item p {
    margin: 0;
    color: #777;
    font-size: 0.95rem;
}

.coverage-list {
    list-style: none;
    margin: 15px 0;
}

.coverage-list li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.coverage-list li::before {
    content: "\25B8";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.distance-info {
    background: var(--light-color);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 0.95rem;
}

.distance-info strong {
    color: var(--primary-color);
}

/* Local Services */
.local-services {
    display: block;
    padding: 60px 0;
    background: var(--light-color);
    visibility: visible;
    opacity: 1;
}

.service-action {
    margin-top: 20px;
}

/* Local Specifics */
.local-specifics {
    display: block;
    padding: 60px 0;
    background: var(--white);
    visibility: visible;
    opacity: 1;
}

.specifics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    visibility: visible;
    opacity: 1;
    min-height: 200px;
}

.specific-card {
    display: block;
    padding: 25px;
    background: var(--light-color);
    border-radius: 10px;
    transition: transform 0.3s;
    visibility: visible;
    opacity: 1;
    min-height: 150px;
}

.specific-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.specific-card h3 {
    display: block;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    visibility: visible;
}

.specific-card p {
    display: block;
    color: #666;
    line-height: 1.6;
    visibility: visible;
}

/* Local Pricing */
.local-pricing {
    display: block;
    padding: 60px 0;
    background: var(--light-color);
    visibility: visible;
    opacity: 1;
}

.pricing-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    visibility: visible;
    opacity: 1;
}

.pricing-card {
    display: block;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    visibility: visible;
    opacity: 1;
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.pricing-list {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-color);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.service-name {
    color: #555;
}

.pricing-note {
    padding: 15px;
    background: #fff9e6;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
}

.pricing-advantages {
    display: block;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    visibility: visible;
    opacity: 1;
}

.pricing-advantages h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.advantages-list {
    list-style: none;
}

.advantages-list li {
    padding: 10px 0;
    color: #555;
    font-size: 1rem;
}

/* Local CTA */
.local-cta {
    display: block;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    visibility: visible;
    opacity: 1;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content > p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.intervention-zones {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.intervention-zones p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.nearby-cities {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.nearby-cities a {
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    transition: background 0.3s;
}

.nearby-cities a:hover {
    background: rgba(255,255,255,0.3);
}

/* Local Emergency */
.local-emergency {
    display: block;
    padding: 60px 0;
    background: var(--white);
    visibility: visible;
    opacity: 1;
}

.emergency-box {
    display: block;
    background: linear-gradient(135deg, #ffe4e4, #fff);
    border: 2px solid var(--danger-color);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    visibility: visible;
    opacity: 1;
}

.emergency-box h2 {
    color: var(--danger-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.emergency-box p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.emergency-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    visibility: visible;
    opacity: 1;
}

.emergency-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
}

.emergency-item .icon {
    font-size: 1.5rem;
}

/* Local Testimonials */
.local-testimonials {
    display: block;
    padding: 60px 0;
    background: var(--white);
    visibility: visible;
    opacity: 1;
}

/* Local Process */
.local-process {
    display: block;
    padding: 60px 0;
    background: var(--white);
    visibility: visible;
    opacity: 1;
}

/* Local Info */
.local-info {
    display: block;
    padding: 60px 0;
    background: var(--light-color);
    visibility: visible;
    opacity: 1;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid var(--light-color);
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card strong {
    color: var(--dark-color);
}

/* Local Specialties */
.local-specialties {
    display: block;
    padding: 60px 0;
    background: var(--light-color);
    visibility: visible;
    opacity: 1;
}

/* Ensure all grids display correctly */
.specifics-grid,
.pricing-info,
.emergency-features,
.info-grid,
.methods-grid,
.hours-grid,
.contact-grid {
    display: grid;
}

/* === Content Text with Check Icons === */
.content-text ul {
    list-style: none;
    padding: 0;
}

.content-text ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.content-text ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 8px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

/* === Communes List (Pills with Hover) === */
.communes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.communes-list a {
    display: inline-block;
    padding: 8px 18px;
    background: var(--light-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.communes-list a:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.communes-list a.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* === Autocomplete Styles === */
.autocomplete-wrapper {
    position: relative;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
}

.autocomplete-results .result-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.autocomplete-results .result-item:last-child {
    border-bottom: none;
}

.autocomplete-results .result-item:hover,
.autocomplete-results .result-item.highlighted {
    background: var(--light-color);
    color: var(--primary-color);
}

.autocomplete-results .result-item .canton-label {
    font-size: 0.8rem;
    color: #999;
    font-weight: 400;
}

.autocomplete-results .no-results {
    padding: 15px;
    color: #999;
    text-align: center;
    font-style: italic;
}

.form-group,
.form-grid,
.form-container {
    overflow: visible !important;
}

/* === Contact Pages === */
.contact-info {
    padding: 60px 0;
    background: var(--light-color);
}

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

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card.urgent {
    background: linear-gradient(135deg, #ffe4e4, #fff);
    border: 2px solid var(--danger-color);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-details {
    color: #666;
}

.contact-details p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.contact-phone,
.contact-email {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.contact-phone:hover,
.contact-email:hover {
    color: var(--secondary-color);
}

.contact-details address {
    font-style: normal;
    line-height: 1.6;
}

/* Contact Form Section Enhanced */
.contact-form-section {
    padding: 60px 0;
    background: var(--white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.form-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Business Hours Section */
.business-hours {
    padding: 60px 0;
    background: var(--light-color);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.hours-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.hours-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.urgent-hours {
    background: linear-gradient(135deg, #ffe4e4, #fff);
    border: 2px solid var(--danger-color);
}

.schedule {
    margin-top: 20px;
}

.day-schedule {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-color);
}

.day-schedule:last-child {
    border-bottom: none;
}

.day-schedule.emergency {
    color: var(--danger-color);
    font-weight: 600;
}

.day-schedule.closed {
    opacity: 0.6;
}

.day {
    font-weight: 500;
}

.hours {
    color: #666;
}

.urgent-note {
    margin-top: 20px;
    padding: 10px;
    background: var(--danger-color);
    color: var(--white);
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--white);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-placeholder {
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.map-content {
    flex: 1;
}

.map-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.map-content p {
    color: #666;
    margin-bottom: 20px;
}

/* Intervention Map */
.intervention-map {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.map-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-features {
    list-style: none;
    margin: 20px 0;
}

.map-features li {
    padding: 8px 0;
    color: #555;
    font-size: 1.05rem;
}

.map-visual {
    flex: 1;
    position: relative;
    min-height: 300px;
    background: linear-gradient(135deg, #e8f4f0, #f0f8f5);
    border-radius: 10px;
    padding: 20px;
}

.city-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.city-marker:hover {
    transform: scale(1.1);
}

.city-marker.main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.city-marker.main:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--danger-color);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.city-marker.main .marker-dot {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
}

.marker-label {
    background: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Contact Methods Section */
.contact-methods {
    padding: 60px 0;
    background: var(--light-color);
}

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

.method-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.method-card.priority {
    background: linear-gradient(135deg, #fff9e6, #fff);
    border: 2px solid var(--accent-color);
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.method-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.method-details {
    color: #666;
}

.method-details p {
    margin: 10px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-main {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.contact-main:hover {
    color: var(--secondary-color);
}

/* Emergency CTA Section */
.emergency-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--danger-color), #c82333);
}

.emergency-cta .emergency-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    color: var(--white);
}

.emergency-cta .emergency-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.emergency-cta .emergency-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.emergency-cta .emergency-points {
    list-style: none;
    margin: 0;
}

.emergency-cta .emergency-points li {
    padding: 8px 0;
    font-size: 1.05rem;
}

.emergency-cta .emergency-action {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.emergency-cta .btn-danger {
    background: var(--white);
    color: var(--danger-color);
    text-align: center;
}

.emergency-cta .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    text-align: center;
}

.emergency-cta .btn-outline:hover {
    background: var(--white);
    color: var(--danger-color);
}

/* === Legal Pages Styles (CGV, Mentions Legales) === */
.legal-content {
    padding: 60px 0;
    background: var(--white);
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: start;
}

.legal-nav {
    position: sticky;
    top: 100px;
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.legal-nav h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.legal-nav ul {
    list-style: none;
}

.legal-nav li {
    margin-bottom: 10px;
}

.legal-nav a {
    color: #666;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
    transition: all 0.3s;
}

.legal-nav a:hover,
.legal-nav a.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    background: var(--white);
    padding-left: 20px;
}

.legal-text {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.legal-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-color);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-top: 20px;
}

.legal-section h3 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.legal-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-section ul {
    margin: 15px 0 15px 30px;
}

.legal-section ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-info-box {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.contact-info-box p {
    margin: 0;
    line-height: 1.6;
}

.legal-update {
    background: #fff9e6;
    padding: 15px;
    border-radius: 5px;
    margin-top: 30px;
    border-left: 4px solid var(--accent-color);
}

.legal-download {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.legal-download h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.legal-download p {
    color: #666;
    margin-bottom: 20px;
}

.legal-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.legal-contact h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.legal-contact p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-options .btn-outline {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid var(--white);
}

.contact-options .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* === Canton Localites Section === */
.canton-localites {
    display: block;
    padding: 60px 0;
    background: var(--white);
    visibility: visible;
    opacity: 1;
}

.localites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
    visibility: visible;
    opacity: 1;
}

.localite-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: var(--light-color);
    color: var(--dark-color);
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    min-height: 50px;
}

.localite-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.localite-card.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-weight: 600;
    border-color: var(--primary-color);
}

.localite-card.active:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* === Footer Styles - Modern Layout === */
.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    color: var(--white);
    padding: 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Footer Top CTA Section */
.footer-top {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-cta {
    position: relative;
    z-index: 1;
}

.footer-cta h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.footer-cta p {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.footer-cta .btn {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
    0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 10px 40px rgba(212,160,23,0.4); }
}

/* Footer Main Content */
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 60px 0 40px;
    position: relative;
}

.footer-about {
    padding-right: 40px;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0;
}

.footer-section a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

/* Footer Contact Styling */
.footer-contact {
    margin: 25px 0;
}

.footer-contact p {
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    padding: 8px;
    border-radius: 8px;
    background: transparent;
}

a.footer-contact-item:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
    transform: translateX(5px);
}

.footer-contact-item .icon {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
    color: var(--accent-color);
}

/* Footer Certifications */
.footer-certifications {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.certification-badge {
    background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(212,160,23,0.05));
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(212,160,23,0.3);
    color: var(--accent-color);
    font-weight: 600;
    transition: all 0.3s;
}

.certification-badge:hover {
    background: rgba(212,160,23,0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,160,23,0.2);
}

/* Footer Links Enhanced */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 25px;
}

.footer-links a:hover::before {
    width: 15px;
    left: 0;
}

.footer-links strong {
    color: var(--accent-color);
    font-weight: 600;
}

.mt-3 {
    margin-top: 30px !important;
}

/* Footer Bottom Enhanced */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-payment span:first-child {
    font-weight: 500;
}

.payment-method {
    background: rgba(255,255,255,0.08);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s;
    cursor: default;
}

.payment-method:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(212,160,23,0.1);
}

/* === Missing Homepage Styles === */

/* Hero h1 */
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Hero feature badges */
.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.hero-feature .feature-icon {
    color: var(--accent-color);
    font-weight: 700;
}

/* Trust indicator icons */
.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* Service card price badge */
.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #e6b800);
    color: var(--dark-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 10px;
}

/* Service card link */
.service-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
}

.service-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Process step number */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Zone card links */
a.zone-card {
    text-decoration: none;
    color: var(--dark-color);
}

/* Zone population text */
.zone-pop {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* Zones info box */
.zones-info-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Zones CTA wrapper */
.zones-cta {
    text-align: center;
    margin-top: 30px;
}

/* Specialties grid (fix class mismatch) */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    visibility: visible;
    opacity: 1;
}

/* Emergency banner - centered layout for homepage */
.emergency-banner .emergency-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.emergency-banner .emergency-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.emergency-banner .emergency-points {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 0;
}

.emergency-banner .emergency-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
}

.emergency-banner .emergency-icon {
    font-size: 1.5rem;
}

/* Button emergency */
.btn-emergency {
    background: var(--white);
    color: var(--danger-color);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-emergency:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--light-color);
}

/* Testimonial stars */
.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* FAQ list container */
.faq-list {
    max-width: 900px;
    margin: 30px auto 0;
}

/* FAQ items - non-accordion (direct h3/p children) */
.faq-item > h3 {
    padding: 20px 25px 5px;
}

.faq-item > p {
    padding: 0 25px 20px;
}

/* Full-width form group */
.form-group.full-width {
    margin-bottom: 20px;
}

/* Submit button */
.btn-submit {
    width: 100%;
    margin-top: 10px;
}

/* === Form Validation Errors === */
.input-error {
    border-color: var(--danger-color) !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.15);
}

.field-error {
    color: var(--danger-color);
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
}

/* === Canton Intro Section === */
.canton-intro {
    padding: 60px 0;
    background: var(--white);
}

/* === Utilities === */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

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

/* === 992px Breakpoint === */
@media (max-width: 992px) {
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-about {
        grid-column: span 2;
        padding-right: 0;
    }

    .footer-cta h2 {
        font-size: 1.8rem;
    }

    /* Local Pages */
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-info {
        grid-template-columns: 1fr;
    }

    .emergency-features {
        grid-template-columns: 1fr 1fr;
    }

    /* Contact Page */
    .form-options {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        flex-direction: column;
    }

    .emergency-cta .emergency-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .emergency-cta .emergency-action {
        margin-top: 30px;
    }

    /* Legal Pages */
    .legal-wrapper {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        position: static;
        margin-bottom: 30px;
    }

    .legal-text {
        padding: 20px;
    }
}

/* === 768px Breakpoint === */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    /* Logo Proximitorio responsive */
    .nav-logo-right {
        height: 30px;
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .emergency-banner .emergency-points {
        gap: 15px;
    }

    .emergency-banner .emergency-content h2 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Ville hero responsive */
    .ville-hero h1 {
        font-size: 2rem;
    }

    .ville-hero .hero-subtitle {
        font-size: 1rem;
    }

    .ville-infos {
        gap: 10px;
    }

    .ville-info {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Legal Pages */
    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section h3 {
        font-size: 1.2rem;
    }

    .contact-options {
        flex-direction: column;
    }

    .contact-options .btn {
        width: 100%;
    }

    /* Canton localites */
    .localites-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }

    .localite-card {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* === 576px Breakpoint === */
@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0 30px;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-payment {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-cta h2 {
        font-size: 1.5rem;
    }

    .footer-cta p {
        font-size: 1rem;
    }

    .footer-certifications {
        justify-content: center;
    }

    /* Emergency */
    .emergency-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* === 480px Breakpoint === */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services-grid,
    .zones-grid,
    .testimonials-grid,
    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .emergency-banner .emergency-points {
        flex-direction: column;
        gap: 10px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .process-timeline::before {
        display: none;
    }

    /* Ville hero small screens */
    .ville-hero {
        padding: 60px 0 40px;
    }

    .ville-hero h1 {
        font-size: 1.6rem;
    }

    /* Canton localites */
    .localites-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .footer,
    .legal-nav,
    .legal-download,
    .legal-contact {
        display: none !important;
    }

    .legal-wrapper {
        grid-template-columns: 1fr;
    }

    .legal-text {
        box-shadow: none;
        padding: 0;
    }

    .legal-section {
        page-break-inside: avoid;
    }
}
