/* ============================================
   COUVREUR MARNE - MAIN STYLESHEET
   Professional roofing company in Marne (51)
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary-color: #D4380D;
    --secondary-color: #8B4513;
    --accent-color: #F5A623;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --white: #FFFFFF;
    --success-color: #28A745;
    --danger-color: #DC3545;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.2);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

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

/* Base section padding */
.section {
    padding: 80px 0;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-top {
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.875rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-top a {
    color: var(--white);
    transition: color var(--transition);
}

.header-top a:hover {
    color: var(--accent-color);
}

/* Urgence Banner */
.urgence-banner {
    background: linear-gradient(135deg, var(--danger-color), #b91c1c, var(--primary-color));
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    animation: pulseBackground 3s ease-in-out infinite;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.92; }
}

.urgence-banner a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
}

.urgence-banner a:hover {
    color: var(--accent-color);
}

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

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 70px;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    flex-shrink: 0;
}

.logo h1,
.logo .logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin: 0;
    display: block;
}

.logo .tagline {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--dark-color);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
    white-space: nowrap;
    border-radius: var(--radius-sm);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(212, 56, 13, 0.06);
}

/* Dropdown Menu */
.nav-menu .dropdown > a::after {
    content: '▾';
    margin-left: 4px;
    font-size: 0.7rem;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px 0;
    z-index: 1001;
    list-style: none;
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu .dropdown-menu li {
    width: 100%;
}

.nav-menu .dropdown-menu a {
    padding: 10px 20px;
    font-size: 0.88rem;
    border-radius: 0;
    white-space: nowrap;
}

.nav-menu .dropdown-menu a:hover {
    background: rgba(212, 56, 13, 0.06);
}

/* Proximitoria Logo */
.proximitoria-logo {
    height: 40px;
    width: auto;
    display: block;
    margin-left: 15px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    order: 3;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Urgence Button (header) */
.btn-urgence {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--danger-color), #b91c1c);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 3px 12px rgba(220, 53, 69, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-urgence:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
    color: var(--white);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #b92e08);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 56, 13, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b92e08, var(--primary-color));
    box-shadow: 0 6px 22px rgba(212, 56, 13, 0.45);
    color: var(--white);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #6d3510);
    color: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #6d3510, var(--secondary-color));
    box-shadow: 0 6px 22px rgba(139, 69, 19, 0.4);
    color: var(--white);
}

/* .btn-outline - Default variant (light backgrounds) */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

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

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

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

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color), #b91c1c);
    color: var(--white);
    border-color: var(--danger-color);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.35);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #b91c1c, var(--danger-color));
    box-shadow: 0 6px 22px rgba(220, 53, 69, 0.45);
    color: var(--white);
}

/* ============================================
   FORMS
   ============================================ */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-row .form-group {
    flex: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-color);
    font-family: var(--font-heading);
}

.form-group label .required {
    color: var(--danger-color);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-color);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 56, 13, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232C3E50' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.5;
    cursor: pointer;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}

/* Form Validation Errors */
.field-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
}

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

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-md);
    max-height: 200px;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0;
}

.autocomplete-results li {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background var(--transition);
    border-bottom: 1px solid #f0f0f0;
}

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

.autocomplete-results li:hover,
.autocomplete-results li.active,
.autocomplete-result--active {
    background: rgba(212, 56, 13, 0.08);
    color: var(--primary-color);
}

.autocomplete-result-name {
    font-weight: 600;
}

.autocomplete-result-meta {
    font-size: 0.8rem;
    color: #888;
    margin-left: 6px;
}

.autocomplete-result-pop {
    font-size: 0.75rem;
    color: #aaa;
}

/* ============================================
   GRIDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.communes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.localites-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ============================================
   CARDS
   ============================================ */
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: all var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.zone-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.zone-card h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

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

.zone-link {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 12px;
    transition: all var(--transition);
}

.zone-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.commune-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
    text-align: center;
}

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

.commune-card h4,
.commune-card span {
    font-size: 0.95rem;
    color: var(--dark-color);
    font-weight: 600;
}

.commune-card .pop {
    font-size: 0.8rem;
    color: #999;
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.localite-card {
    background: var(--light-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
    text-align: center;
    border: 1px solid transparent;
}

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

.localite-card span {
    font-size: 0.85rem;
    color: var(--dark-color);
}

.reason-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: all var(--transition);
    text-align: center;
}

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

.reason-card .icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    display: block;
}

.reason-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 12px;
}

.reason-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.reason-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SECTIONS
   ============================================ */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a252f 40%, var(--primary-color) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(212, 56, 13, 0.1);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.08);
    pointer-events: none;
}

.hero h1,
.hero h2 {
    color: var(--white);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.hero .btn {
    margin: 5px;
}

/* Hero Section (homepage) */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a252f 40%, var(--primary-color) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(212, 56, 13, 0.1);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.08);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 45px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.hero-section .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

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

.hero-section .btn {
    margin: 5px;
}

/* Trust Section (homepage) */
.trust-section {
    background: var(--white);
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.trust-icon {
    font-size: 1.5rem;
}

/* Urgence Section (homepage) */
.urgence-section {
    background: linear-gradient(135deg, var(--danger-color) 0%, #b91c1c 50%, var(--primary-color) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgence-section h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.urgence-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.urgence-points {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.urgence-point {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
}

.urgence-point-icon {
    font-size: 1.3rem;
}

.urgence-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.urgence-section .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

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

.urgence-section .btn {
    margin: 5px;
}

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

/* Page Hero (subpages) */
.page-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.7;
}

/* Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.trust-item .icon {
    font-size: 2rem;
}

.trust-item .number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.trust-item .label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .btn {
    margin: 5px;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, var(--danger-color) 0%, #b91c1c 50%, var(--primary-color) 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.02) 20px,
        rgba(255, 255, 255, 0.02) 40px
    );
    pointer-events: none;
}

.emergency-banner h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.emergency-banner p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.emergency-banner .btn {
    margin: 5px;
}

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

.process-timeline {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

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

.testimonial-card {
    background: var(--light-color);
    border-radius: var(--radius-md);
    padding: 30px;
    position: relative;
    transition: all var(--transition);
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 3.5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card p,
.testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-top: 10px;
}

.testimonial-card .author,
.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.testimonial-card .location,
.testimonial-city {
    font-size: 0.8rem;
    color: #888;
    display: block;
}

.testimonial-service {
    font-size: 0.78rem;
    color: var(--primary-color);
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.stars,
.testimonial-stars {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-cta {
    text-align: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-content {
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition);
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition);
}

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

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    background: var(--light-color);
    border-bottom: 1px solid #e8e8e8;
    padding: 14px 0;
    font-size: 0.84rem;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* UL-based breadcrumb (canton / service pages) */
.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    color: #999;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '\203A';
    margin: 0 10px;
    color: #ccc;
    font-size: 1.2em;
    line-height: 1;
}

.breadcrumb-list li:last-child {
    color: var(--dark-color);
    font-weight: 600;
}

/* Links */
.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Inline breadcrumb separators (ville pages — <span>></span>) */
.breadcrumb > .container > span {
    color: #ccc;
    font-size: 0.9em;
}

/* Inline breadcrumb — current page (last span) */
.breadcrumb > .container > span:last-child {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1em;
}

/* Mobile */
@media (max-width: 576px) {
    .breadcrumb {
        padding: 10px 0;
        font-size: 0.78rem;
    }

    .breadcrumb-list li:not(:last-child)::after {
        margin: 0 6px;
    }

    .breadcrumb .container {
        gap: 5px;
    }
}

/* ============================================
   SERVICE PRICE CARDS (service detail pages)
   ============================================ */
.services-price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-price-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

.service-price-card:hover::before {
    transform: scaleX(1);
}

.service-price-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.service-price-card .price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-price-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   CONTENT BLOCK (SEO text sections)
   ============================================ */
.content-section {
    background: var(--light-color);
}

.content-block h2 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.content-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 18px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* ============================================
   CONTENT TEXT (legal pages, generic text blocks)
   ============================================ */
.content-text {
    line-height: 1.8;
    font-size: 1rem;
    color: #444;
}

.content-text p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.content-text h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.content-text h3 {
    font-size: 1.25rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.content-text strong {
    color: var(--dark-color);
}

.content-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.content-text ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-text ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.content-text a {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: rgba(212, 56, 13, 0.3);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.content-text a:hover {
    color: var(--secondary-color);
    text-decoration-color: var(--secondary-color);
}

/* Info cards for legal/content pages */
.info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 25px;
}

.info-card h3 {
    font-size: 1.05rem;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.info-card p {
    margin-bottom: 6px;
    font-size: 0.93rem;
    line-height: 1.7;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.content-text .update-badge {
    display: inline-block;
    background: var(--light-color);
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.82rem;
    color: #666;
    margin-top: 30px;
}

/* ============================================
   ADVANTAGES CARDS (service detail pages)
   ============================================ */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.advantage-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: all var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.advantage-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.advantage-card h3 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: 80px 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: #d0d0d0;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    text-align: left;
    line-height: 1.4;
    transition: color var(--transition);
}

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

.faq-question::after {
    content: '\276F';
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform var(--transition);
    transform: rotate(90deg);
    flex-shrink: 0;
    margin-left: 15px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    font-size: 0.93rem;
    line-height: 1.7;
    color: #555;
}

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

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--white); }
.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 40px; }

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--light-color);
}

.bg-white {
    background: var(--white);
}

/* ============================================
   RESPONSIVE - TABLET (max 992px)
   ============================================ */
@media (max-width: 992px) {
    /* Navigation mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
        border-radius: 0;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Dropdown mobile */
    .nav-menu .dropdown > a::after {
        content: '▾';
        float: right;
    }

    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        min-width: 0;
        padding: 0;
        display: none;
        border-radius: 0;
    }

    .nav-menu .dropdown.open .dropdown-menu {
        display: block;
    }

    .nav-menu .dropdown:hover .dropdown-menu {
        display: none;
    }

    .nav-menu .dropdown.open:hover .dropdown-menu {
        display: block;
    }

    .nav-menu .dropdown-menu a {
        padding: 12px 0 12px 20px;
        font-size: 0.93rem;
        color: #555;
    }

    .proximitoria-logo {
        margin-left: auto;
        margin-right: 15px;
    }

    /* Grids 2 cols */
    .services-grid,
    .reasons-grid,
    .testimonials-grid,
    .services-price-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .communes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .localites-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Trust indicators */
    .trust-indicators {
        gap: 25px;
    }

    /* Process timeline */
    .process-timeline {
        gap: 15px;
    }

    .process-step {
        min-width: 180px;
    }

    /* Hero adjustments */
    .hero,
    .hero-section {
        padding: 70px 0;
    }

    .hero h1,
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 25px;
    }

    .trust-badges {
        gap: 25px;
    }

    .urgence-points {
        gap: 20px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    .section-title { font-size: 1.7rem; }
}

/* ============================================
   RESPONSIVE - MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
    /* Hero */
    .hero,
    .hero-section {
        padding: 50px 0;
    }

    .hero h1,
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.1rem;
    }

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

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

    .hero-stats {
        gap: 15px;
    }

    .trust-badges {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .urgence-points {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

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

    .page-hero {
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: 1.7rem;
    }

    /* Grids to 1 col */
    .services-grid,
    .reasons-grid,
    .testimonials-grid,
    .zones-grid,
    .services-price-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .communes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .localites-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Form grid 1 col */
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    /* Footer 2 cols */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Section padding */
    .section,
    .section-padding {
        padding: 50px 0;
    }

    .faq-section,
    .process-section,
    .testimonials-section {
        padding: 50px 0;
    }

    /* Trust indicators */
    .trust-indicators {
        gap: 20px;
    }

    .trust-item .number {
        font-size: 1.5rem;
    }

    /* CTA */
    .cta-section {
        padding: 50px 0;
    }

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

    .emergency-banner {
        padding: 40px 0;
    }

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

    /* Contact form */
    .contact-form {
        padding: 25px 20px;
    }

    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    .section-title { font-size: 1.5rem; }

    /* Process */
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        max-width: 100%;
        width: 100%;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max 576px)
   ============================================ */
@media (max-width: 576px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 15px;
    }

    .hero,
    .hero-section {
        padding: 40px 0;
    }

    .hero h1,
    .hero-section h1 {
        font-size: 1.5rem;
    }

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

    .page-hero {
        padding: 30px 0;
    }

    .page-hero h1 {
        font-size: 1.4rem;
    }

    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.05rem; }
    .section-title { font-size: 1.3rem; }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .communes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .localites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Footer single col on very small */
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Buttons */
    .btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 13px 28px;
        font-size: 1rem;
    }

    .btn-urgence {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Trust */
    .trust-indicators {
        gap: 15px;
    }

    .trust-item .number {
        font-size: 1.3rem;
    }

    .trust-item .label {
        font-size: 0.78rem;
    }

    /* Urgence banner */
    .urgence-banner {
        font-size: 0.85rem;
        padding: 8px 10px;
    }

    .header-top {
        font-size: 0.8rem;
        padding: 6px 0;
    }

    /* FAQ */
    .faq-question {
        padding: 15px 18px;
        font-size: 0.93rem;
    }

    .faq-answer {
        font-size: 0.88rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 15px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .header,
    .footer,
    .urgence-banner,
    .emergency-banner,
    .cta-section,
    .btn-urgence,
    .mobile-menu-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .hero,
    .page-hero {
        background: none !important;
        color: #000 !important;
        padding: 20px 0;
    }

    .hero h1,
    .hero h2,
    .page-hero h1 {
        color: #000 !important;
    }
}
