/* ==========================================
   AURA PAYSAGES - CSS PREMIUM
   Site paysagiste haut de gamme
   ========================================== */

/* ==========================================
   📝 COULEURS PRINCIPALES
   Modifiez ces couleurs pour changer tout le site
   ========================================== */

:root {
    /* Couleurs végétales sobres */
    --vert-fonce: #2C4A3F;      /* Vert profond nature */
    --vert-moyen: #4A6C5D;      /* Vert feuillage */
    --vert-clair: #7A9B8E;      /* Vert doux */
    --beige: #F5F3EF;           /* Beige naturel */
    --blanc-casse: #FAFAF8;     /* Blanc légèrement cassé */
    --or: #C8A882;              /* Or élégant */
    --noir: #1A1A1A;            /* Noir profond */
    --gris: #666666;            /* Gris texte */
    
    /* Typographie */
    --font-titre: 'Cormorant Garamond', Georgia, serif;
    --font-texte: 'Lato', -apple-system, sans-serif;
    
    /* Espacements */
    --espacement-section: 120px;
    --espacement-mobile: 60px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET & BASE
   ========================================== */

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

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

body {
    font-family: var(--font-texte);
    color: var(--noir);
    background: var(--blanc-casse);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-titre);
    font-weight: 600;
    line-height: 1.2;
    color: var(--vert-fonce);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* ==========================================
   📝 BOUTONS
   Modifiez ici l'apparence des boutons
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--vert-fonce);
    color: white;
    box-shadow: 0 4px 20px rgba(44, 74, 63, 0.25);
}

.btn-primary:hover {
    background: var(--vert-moyen);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 74, 63, 0.35);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--vert-fonce);
}

.btn-accent {
    background: var(--or);
    color: var(--vert-fonce);
}

.btn-accent:hover {
    background: #B89870;
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(44, 74, 63, 0.1);
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.logo-text {
    font-family: var(--font-titre);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--vert-fonce);
    letter-spacing: 1px;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--gris);
    font-style: italic;
}

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

.nav-menu a {
    color: var(--noir);
    font-weight: 500;
    position: relative;
}

.nav-menu a:not(.btn-nav):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vert-fonce);
    transition: var(--transition);
}

.nav-menu a:not(.btn-nav):hover:after {
    width: 100%;
}

.btn-nav {
    padding: 12px 28px;
    background: var(--vert-fonce);
    color: white;
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--vert-moyen);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--vert-fonce);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(44, 74, 63, 0.85) 0%, 
        rgba(74, 108, 93, 0.75) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 3rem 1rem;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-title .highlight {
    color: var(--or);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.95;
}

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

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
}

.trust-item svg {
    color: var(--or);
    flex-shrink: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ==========================================
   BARRE DE CONFIANCE
   ========================================== */

.stats-bar {
    background: var(--vert-fonce);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-titre);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--or);
    margin-bottom: 0.5rem;
}

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

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

section {
    padding: var(--espacement-section) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--or);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gris);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==========================================
   PRESTATIONS
   ========================================== */

.prestations {
    background: var(--blanc-casse);
}

.prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.prestation-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.prestation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(44, 74, 63, 0.15);
    border-color: var(--vert-clair);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    color: var(--vert-fonce);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44, 74, 63, 0.1) 0%, rgba(122, 155, 142, 0.1) 100%);
    border-radius: 16px;
}

.prestation-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.prestation-card p {
    color: var(--gris);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.card-link {
    color: var(--vert-fonce);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* ==========================================
   SECTION CONTRATS D'ENTRETIEN
   ========================================== */
.contrats-section {
    padding: 6rem 0;
    background: var(--blanc-casse);
}

.contrats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contrat-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.contrat-card.featured {
    border-color: var(--or);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(200, 168, 130, 0.25);
}

.contrat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.contrat-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--or);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.contrat-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--beige);
}

.contrat-header h3 {
    font-family: var(--font-titre);
    font-size: 2rem;
    color: var(--vert-fonce);
    margin-bottom: 0.5rem;
}

.contrat-tagline {
    color: var(--gris);
    font-size: 0.95rem;
    font-style: italic;
}

/* Styles pour les passages */
.contrat-passages {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--beige) 0%, var(--blanc-casse) 100%);
    border-radius: 12px;
}

.passages-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--vert-fonce);
    font-family: var(--font-titre);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.contrat-card.featured .passages-number {
    color: var(--or);
}

.passages-label {
    font-size: 1.1rem;
    color: var(--gris);
    margin-bottom: 0.75rem;
}

.passages-frequency {
    font-size: 0.9rem;
    color: var(--vert-moyen);
    font-style: italic;
}

/* Prix global sous les 3 cartes */
.contrats-pricing {
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.pricing-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--vert-fonce);
    margin-bottom: 0.5rem;
}

.pricing-after {
    font-size: 1.5rem;
    color: var(--or);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--gris);
    line-height: 1.6;
    margin-top: 1rem;
}

/* Services list */
.contrats-services {
    text-align: center;
    margin: 3rem 0;
}

.contrats-services h4 {
    font-size: 1.3rem;
    color: var(--vert-fonce);
    margin-bottom: 1.5rem;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.services-list span {
    background: var(--beige);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.95rem;
    color: var(--vert-fonce);
}

.contrat-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.contrat-features li {
    padding: 0.75rem 0;
    color: var(--texte);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--beige);
}

.contrat-features li:last-child {
    border-bottom: none;
}

.contrats-avantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
}

.avantage-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--vert-fonce);
}

.avantage-item svg {
    color: var(--or);
    flex-shrink: 0;
}

/* ==========================================
   GALERIE RÉALISATIONS
   ========================================== */

.realisations {
    background: var(--beige);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-large {
    grid-column: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(44, 74, 63, 0.95) 0%, transparent 100%);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    opacity: 0.95;
    font-size: 0.95rem;
}

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

/* ==========================================
   POURQUOI NOUS
   ========================================== */

.why-us {
    background: white;
}

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

.why-card {
    text-align: center;
    padding: 40px 30px;
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--vert-fonce);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--gris);
    line-height: 1.8;
}

/* ==========================================
   MÉTHODE 4 ÉTAPES
   ========================================== */

.methode {
    background: var(--beige);
}

.steps {
    max-width: 900px;
    margin: 0 auto 60px;
}

.step-item {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(44, 74, 63, 0.15);
}

.step-item:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--vert-fonce);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titre);
    font-size: 2rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gris);
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.cta-text {
    font-size: 1.4rem;
    color: var(--vert-fonce);
    font-family: var(--font-titre);
    margin-bottom: 2rem;
}

/* ==========================================
   AVIS CLIENTS
   ========================================== */

.avis {
    background: white;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.avis-card {
    background: var(--beige);
    padding: 40px 35px;
    border-radius: 16px;
    transition: var(--transition);
}

.avis-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 74, 63, 0.12);
}

.avis-stars {
    color: var(--or);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.avis-text {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--noir);
}

.avis-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--vert-fonce);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    color: var(--vert-fonce);
}

.author-location {
    font-size: 0.9rem;
    color: var(--gris);
}

.avis-link {
    text-align: center;
}

.link-google {
    color: var(--vert-fonce);
    font-weight: 600;
    font-size: 1.05rem;
}

.link-google:hover {
    color: var(--or);
}

/* ==========================================
   ZONE D'INTERVENTION
   ========================================== */

.zone-intervention {
    background: var(--vert-fonce);
    color: white;
}

.zone-intervention .section-title,
.zone-intervention .section-subtitle {
    color: white;
}

.villes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 60px 0;
}

.ville-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.ville-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.zone-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.zone-description p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* ==========================================
   CONTACT
   ========================================== */

.contact {
    background: var(--beige);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-intro {
    position: sticky;
    top: 120px;
}

.contact-text {
    font-size: 1.15rem;
    color: var(--gris);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-infos {
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(44, 74, 63, 0.15);
}

.info-item svg {
    color: var(--vert-fonce);
    flex-shrink: 0;
    margin-top: 3px;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--vert-fonce);
}

.info-item a {
    color: var(--or);
    font-weight: 600;
}

.info-item a:hover {
    color: var(--vert-fonce);
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    background: var(--vert-fonce);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-form-wrapper {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(44, 74, 63, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--beige);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--blanc-casse);
}

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

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

.form-notice {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gris);
    margin-top: 1rem;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--vert-fonce);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-subtitle {
    color: var(--or);
}

.footer-desc {
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-rating .stars {
    color: var(--or);
    font-size: 1.2rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--or);
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

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

@media (max-width: 1024px) {
    :root {
        --espacement-section: 80px;
    }
    
    .prestations-grid,
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-intro {
        position: static;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --espacement-section: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(12px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: stretch;
    }
    
    .contrats-grid {
        grid-template-columns: 1fr;
    }
    
    .contrat-card.featured {
        transform: scale(1);
    }
    
    .contrats-avantages {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .prestations-grid,
    .why-grid,
    .avis-grid,
    .villes-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

/* Smooth scroll padding pour navigation fixe */
html {
    scroll-padding-top: 100px;
}

/* Amélioration accessibilité */
:focus-visible {
    outline: 3px solid var(--or);
    outline-offset: 3px;
}

/* Print styles */
@media print {
    .navbar,
    .scroll-indicator,
    .contact,
    .footer {
        display: none;
    }
}
