/*
 Theme Name: Location WC France - Astra Child
 Theme URI: https://www.location-wc-france.fr
 Description: Thème enfant Astra optimisé CRO pour les pages locales (villes et départements)
 Author: Clément
 Author URI: https://www.location-wc-france.fr
 Template: astra
 Version: 1.0.0
 Text Domain: lwc-child
*/

/* ==========================================================================
   VARIABLES CSS - Couleurs Location WC France
   ========================================================================== */

:root {
    /* Couleurs principales */
    --lwc-primary: #00A7A7;
    --lwc-primary-dark: #008B8B;
    --lwc-primary-light: #00BFBF;
    --lwc-bg-light: #E7F2F3;
    
    /* Couleur CTA (orange pour contraste et conversion) */
    --lwc-cta: #FF6B35;
    --lwc-cta-hover: #E55A2B;
    
    /* Couleurs neutres */
    --lwc-dark: #1a1a2e;
    --lwc-text: #374151;
    --lwc-text-light: #6b7280;
    --lwc-border: #d1d5db;
    --lwc-white: #ffffff;
    --lwc-bg-alt: #f3f4f6;
    
    /* Couleurs feedback */
    --lwc-success: #10b981;
    --lwc-warning: #f59e0b;
    
    /* Ombres */
    --lwc-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --lwc-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --lwc-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --lwc-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --lwc-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Rayons */
    --lwc-radius-sm: 6px;
    --lwc-radius: 12px;
    --lwc-radius-lg: 16px;
    --lwc-radius-xl: 24px;
    
    /* Transitions */
    --lwc-transition: all 0.2s ease-in-out;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

.lwc-page {
    font-family: inherit;
    color: var(--lwc-text);
    line-height: 1.6;
}

.lwc-page * {
    box-sizing: border-box;
}

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

/* ==========================================================================
   HERO SECTION - CRO OPTIMIZED
   ========================================================================== */

.lwc-hero {
    background: linear-gradient(135deg, var(--lwc-primary) 0%, var(--lwc-primary-dark) 100%);
    color: var(--lwc-white);
    padding: 50px 30px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.lwc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.08);
    transform: rotate(15deg);
    pointer-events: none;
}

.lwc-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: rgba(0,0,0,0.05);
    transform: rotate(-10deg);
    pointer-events: none;
}

.lwc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lwc-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.2;
    color: var(--lwc-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lwc-hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    margin: 0 0 20px 0;
    font-weight: 400;
}

/* Trust Badges Hero */
.lwc-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.lwc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
}

.lwc-badge-icon {
    font-size: 16px;
}

/* ==========================================================================
   CTA BUTTONS - HAUTE CONVERSION
   ========================================================================== */

.lwc-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.lwc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--lwc-radius);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    transition: var(--lwc-transition);
    text-align: center;
    line-height: 1.4;
}

.lwc-btn-primary {
    background: var(--lwc-cta);
    color: var(--lwc-white) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.lwc-btn-primary:hover {
    background: var(--lwc-cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    color: var(--lwc-white) !important;
}

.lwc-btn-secondary {
    background: var(--lwc-white);
    color: var(--lwc-primary) !important;
    box-shadow: var(--lwc-shadow-md);
}

.lwc-btn-secondary:hover {
    background: var(--lwc-bg-light);
    transform: translateY(-3px);
    color: var(--lwc-primary-dark) !important;
}

.lwc-btn-outline {
    background: transparent;
    color: var(--lwc-white) !important;
    border: 2px solid rgba(255,255,255,0.6);
}

.lwc-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--lwc-white);
    color: var(--lwc-white) !important;
}

.lwc-btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.lwc-btn-icon {
    font-size: 20px;
}

/* Animation pulse pour CTA principal */
.lwc-btn-pulse {
    animation: lwcPulse 2s infinite;
}

@keyframes lwcPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(255, 107, 53, 0.6); }
}

/* ==========================================================================
   STICKY CTA BAR - MOBILE CONVERSION
   ========================================================================== */

.lwc-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--lwc-white);
    padding: 14px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    border-top: 3px solid var(--lwc-primary);
}

.lwc-sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.lwc-sticky-cta-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--lwc-dark);
    line-height: 1.3;
}

.lwc-sticky-cta .lwc-btn {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .lwc-sticky-cta {
        display: block;
    }
    
    body.lwc-page {
        padding-bottom: 85px;
    }
}

/* ==========================================================================
   TRUST BAR - Social Proof
   ========================================================================== */

.lwc-trust-bar {
    background: var(--lwc-white);
    padding: 24px;
    margin: -25px 20px 30px;
    border-radius: var(--lwc-radius-lg);
    box-shadow: var(--lwc-shadow-xl);
    position: relative;
    z-index: 10;
}

.lwc-trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

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

.lwc-trust-icon {
    font-size: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lwc-bg-light);
    border-radius: 50%;
    color: var(--lwc-primary);
}

.lwc-trust-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--lwc-dark);
    line-height: 1.3;
}

/* ==========================================================================
   INFO BOX
   ========================================================================== */

.lwc-info-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: var(--lwc-bg-light);
    padding: 24px;
    border-radius: var(--lwc-radius-lg);
    margin-bottom: 30px;
    border: 2px solid rgba(0, 167, 167, 0.2);
}

.lwc-info-item {
    text-align: center;
    padding: 12px 8px;
}

.lwc-info-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 10px;
}

.lwc-info-label {
    display: block;
    font-size: 11px;
    color: var(--lwc-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.lwc-info-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--lwc-dark);
}

.lwc-info-value a {
    color: var(--lwc-primary);
    text-decoration: none;
}

.lwc-info-value a:hover {
    text-decoration: underline;
}

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

.lwc-section {
    padding: 50px 0;
}

.lwc-section-alt {
    background: var(--lwc-bg-light);
    padding: 50px 24px;
    margin: 0 -20px;
    border-radius: 0;
}

.lwc-section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 12px 0;
    color: var(--lwc-dark);
}

.lwc-section-subtitle {
    font-size: 1.1rem;
    color: var(--lwc-text-light);
    margin: 0 0 30px 0;
}

.lwc-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--lwc-text);
    max-width: 800px;
}

.lwc-intro strong {
    color: var(--lwc-primary-dark);
}

/* ==========================================================================
   SERVICES GRID - CRO
   ========================================================================== */

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

.lwc-service-card {
    background: var(--lwc-white);
    padding: 28px 20px;
    border-radius: var(--lwc-radius-lg);
    text-align: center;
    border: 2px solid var(--lwc-border);
    transition: var(--lwc-transition);
    cursor: pointer;
}

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

.lwc-service-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.lwc-service-name {
    font-weight: 800;
    color: var(--lwc-dark);
    font-size: 16px;
    margin-bottom: 8px;
}

.lwc-service-desc {
    font-size: 14px;
    color: var(--lwc-text-light);
    line-height: 1.5;
}

/* ==========================================================================
   FEATURES / BENEFITS
   ========================================================================== */

.lwc-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.lwc-feature-card {
    background: var(--lwc-white);
    padding: 30px;
    border-radius: var(--lwc-radius-lg);
    box-shadow: var(--lwc-shadow);
    transition: var(--lwc-transition);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.lwc-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--lwc-primary);
    opacity: 0;
    transition: var(--lwc-transition);
}

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

.lwc-feature-card:hover::before {
    opacity: 1;
}

.lwc-feature-icon {
    font-size: 40px;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lwc-bg-light);
    border-radius: var(--lwc-radius);
}

.lwc-feature-content {
    flex: 1;
}

.lwc-feature-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: var(--lwc-dark);
}

.lwc-feature-text {
    font-size: 14px;
    color: var(--lwc-text-light);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   EVENTS LIST
   ========================================================================== */

.lwc-events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.lwc-event-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--lwc-white);
    padding: 16px 18px;
    border-radius: var(--lwc-radius);
    border: 2px solid var(--lwc-border);
    transition: var(--lwc-transition);
}

.lwc-event-item:hover {
    border-color: var(--lwc-primary);
    background: var(--lwc-bg-light);
}

.lwc-event-icon {
    font-size: 26px;
    flex-shrink: 0;
}

.lwc-event-name {
    font-weight: 700;
    color: var(--lwc-dark);
    font-size: 14px;
}

/* ==========================================================================
   CTA SECTION - HIGH CONVERSION
   ========================================================================== */

.lwc-cta-section {
    background: linear-gradient(135deg, var(--lwc-primary) 0%, var(--lwc-primary-dark) 100%);
    color: var(--lwc-white);
    padding: 60px 40px;
    border-radius: var(--lwc-radius-xl);
    text-align: center;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.lwc-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.08);
    transform: rotate(15deg);
}

.lwc-cta-section h2 {
    color: var(--lwc-white) !important;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin: 0 0 12px 0;
    position: relative;
    font-weight: 800;
}

.lwc-cta-section p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin: 0 0 28px 0;
    position: relative;
}

.lwc-cta-section .lwc-btn-primary {
    background: var(--lwc-cta);
    color: var(--lwc-white) !important;
}

.lwc-cta-section .lwc-btn-primary:hover {
    background: var(--lwc-cta-hover);
}

/* Numéro téléphone */
.lwc-phone-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 14px 28px;
    border-radius: 50px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.3);
}

.lwc-phone-box a {
    color: var(--lwc-white) !important;
    text-decoration: none;
}

.lwc-phone-box:hover {
    background: rgba(255,255,255,0.3);
}

/* ==========================================================================
   VILLES CARDS
   ========================================================================== */

.lwc-villes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lwc-ville-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--lwc-white);
    padding: 20px 24px;
    border-radius: var(--lwc-radius);
    border: 2px solid var(--lwc-border);
    text-decoration: none !important;
    transition: var(--lwc-transition);
}

.lwc-ville-card:hover {
    border-color: var(--lwc-primary);
    box-shadow: var(--lwc-shadow-lg);
    transform: translateX(5px);
}

.lwc-ville-info {
    display: flex;
    flex-direction: column;
}

.lwc-ville-name {
    font-weight: 800;
    color: var(--lwc-dark);
    font-size: 16px;
}

.lwc-ville-cp {
    font-size: 14px;
    color: var(--lwc-text-light);
    margin-top: 2px;
}

.lwc-ville-arrow {
    color: var(--lwc-primary);
    font-size: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--lwc-transition);
}

.lwc-ville-card:hover .lwc-ville-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Top Villes */
.lwc-top-villes {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lwc-top-ville-card {
    display: flex;
    align-items: center;
    background: var(--lwc-white);
    padding: 18px 24px;
    border-radius: var(--lwc-radius);
    border: 2px solid var(--lwc-border);
    text-decoration: none !important;
    transition: var(--lwc-transition);
}

.lwc-top-ville-card:hover {
    border-color: var(--lwc-primary);
    box-shadow: var(--lwc-shadow-lg);
}

.lwc-top-rank {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--lwc-primary) 0%, var(--lwc-primary-dark) 100%);
    color: var(--lwc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin-right: 18px;
    flex-shrink: 0;
}

.lwc-top-ville-info {
    flex: 1;
}

.lwc-top-ville-name {
    font-weight: 800;
    color: var(--lwc-dark);
    font-size: 17px;
    display: block;
}

.lwc-top-ville-meta {
    font-size: 14px;
    color: var(--lwc-text-light);
}

.lwc-top-ville-arrow {
    color: var(--lwc-primary);
    font-size: 22px;
}

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */

.lwc-breadcrumb {
    padding: 18px 0;
    font-size: 14px;
    color: var(--lwc-text-light);
}

.lwc-breadcrumb a {
    color: var(--lwc-primary);
    text-decoration: none;
    font-weight: 500;
}

.lwc-breadcrumb a:hover {
    text-decoration: underline;
}

.lwc-breadcrumb .sep {
    margin: 0 10px;
    color: var(--lwc-border);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.lwc-faq {
    margin-top: 40px;
}

.lwc-faq-item {
    background: var(--lwc-white);
    border: 2px solid var(--lwc-border);
    border-radius: var(--lwc-radius);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--lwc-transition);
}

.lwc-faq-item:hover {
    border-color: var(--lwc-primary);
}

.lwc-faq-question {
    padding: 20px 24px;
    font-weight: 700;
    color: var(--lwc-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--lwc-transition);
    font-size: 16px;
}

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

.lwc-faq-icon {
    font-size: 22px;
    color: var(--lwc-primary);
    transition: var(--lwc-transition);
    font-weight: 400;
}

.lwc-faq-item.active .lwc-faq-icon {
    transform: rotate(180deg);
}

.lwc-faq-item.active {
    border-color: var(--lwc-primary);
}

.lwc-faq-answer {
    padding: 0 24px 20px;
    color: var(--lwc-text);
    line-height: 1.7;
    display: none;
    font-size: 15px;
}

.lwc-faq-item.active .lwc-faq-answer {
    display: block;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

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

.lwc-testimonial {
    background: var(--lwc-white);
    padding: 28px;
    border-radius: var(--lwc-radius-lg);
    box-shadow: var(--lwc-shadow);
    position: relative;
}

.lwc-testimonial::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 24px;
    font-size: 70px;
    color: var(--lwc-primary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.lwc-testimonial-stars {
    color: var(--lwc-warning);
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.lwc-testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--lwc-text);
    margin-bottom: 18px;
    font-style: italic;
    position: relative;
}

.lwc-testimonial-author {
    font-weight: 700;
    color: var(--lwc-dark);
    font-size: 15px;
}

.lwc-testimonial-location {
    font-size: 13px;
    color: var(--lwc-text-light);
}

/* ==========================================================================
   VILLES ALPHABETIQUES (Page département)
   ========================================================================== */

.lwc-villes-alpha {
    margin-top: 50px;
}

.lwc-villes-group {
    margin-bottom: 35px;
}

.lwc-villes-letter {
    font-size: 2rem;
    font-weight: 800;
    color: var(--lwc-primary);
    margin: 0 0 18px 0;
    padding-bottom: 10px;
    border-bottom: 4px solid var(--lwc-primary);
    display: inline-block;
}

.lwc-villes-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.lwc-ville-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--lwc-white);
    border: 2px solid var(--lwc-border);
    border-radius: var(--lwc-radius-sm);
    text-decoration: none !important;
    color: var(--lwc-text);
    font-weight: 600;
    transition: var(--lwc-transition);
}

.lwc-ville-link:hover {
    background: var(--lwc-primary);
    border-color: var(--lwc-primary);
    color: var(--lwc-white);
}

.lwc-ville-link:hover .lwc-ville-cp-small {
    color: rgba(255,255,255,0.8);
}

.lwc-ville-cp-small {
    font-size: 12px;
    color: var(--lwc-text-light);
    font-weight: 500;
}

/* ==========================================================================
   MORE LINK
   ========================================================================== */

.lwc-more-link {
    margin-top: 24px;
    text-align: center;
}

.lwc-more-link a {
    color: var(--lwc-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
}

.lwc-more-link a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .lwc-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lwc-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lwc-villes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lwc-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lwc-villes-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .lwc-hero {
        padding: 40px 20px;
    }
    
    .lwc-hero h1 {
        font-size: 1.6rem;
    }
    
    .lwc-hero-subtitle {
        font-size: 1rem;
    }
    
    .lwc-hero-badges {
        gap: 8px;
    }
    
    .lwc-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .lwc-trust-bar {
        margin: -20px 15px 25px;
        padding: 20px 16px;
    }
    
    .lwc-trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .lwc-trust-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .lwc-info-box {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 16px;
    }
    
    .lwc-section {
        padding: 40px 0;
    }
    
    .lwc-section-alt {
        padding: 40px 20px;
        margin: 0 -20px;
    }
    
    .lwc-features-grid {
        grid-template-columns: 1fr;
    }
    
    .lwc-feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .lwc-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .lwc-events-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .lwc-cta-section {
        padding: 40px 24px;
        margin: 40px 0;
        border-radius: var(--lwc-radius-lg);
    }
    
    .lwc-cta-group {
        flex-direction: column;
    }
    
    .lwc-btn {
        width: 100%;
    }
    
    .lwc-villes-grid {
        grid-template-columns: 1fr;
    }
    
    .lwc-testimonials {
        grid-template-columns: 1fr;
    }
    
    .lwc-villes-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .lwc-container {
        padding: 0 16px;
    }
    
    .lwc-hero {
        padding: 35px 16px;
    }
    
    .lwc-info-box {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .lwc-info-item {
        padding: 10px 6px;
    }
    
    .lwc-info-icon {
        font-size: 22px;
    }
    
    .lwc-info-value {
        font-size: 14px;
    }
    
    .lwc-service-card {
        padding: 20px 14px;
    }
    
    .lwc-service-icon {
        font-size: 36px;
    }
    
    .lwc-events-grid {
        grid-template-columns: 1fr;
    }
    
    .lwc-villes-list {
        grid-template-columns: 1fr;
    }
    
    .lwc-phone-box {
        font-size: 16px;
        padding: 12px 20px;
    }
}

/* ==========================================================================
   PRINT
   ========================================================================== */

@media print {
    .lwc-sticky-cta,
    .lwc-cta-group,
    .lwc-cta-section {
        display: none !important;
    }
}
