/* Reset et variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette Luxe - Tons raffinés et élégants */
    --primary-dark: #0a0a0a;
    --primary-light: #fafafa;
    --accent-gold: #c9a76a;
    --accent-silver: #d4d4d4;
    --accent-bronze: #b8956a;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.04);
    
    /* Gradients subtils */
    --gradient-primary: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-accent: linear-gradient(135deg, #c9a76a 0%, #b8956a 100%);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    
    /* Transitions raffinées */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-weight: 300;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-medium);
}

.navbar.detailing-mode {
    background: rgba(10, 10, 10, 0.9);
    border-bottom: 1px solid rgba(201, 167, 106, 0.15);
}

.navbar.cleaning-mode {
    background: rgba(10, 10, 10, 0.9);
    border-bottom: 1px solid rgba(212, 212, 212, 0.15);
}

.nav-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.6rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Container interne pour centrer le contenu sur très grands écrans */
.nav-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform var(--transition-medium);
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.logo-link:hover {
    transform: scale(1.05);
    background: transparent;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    background: transparent;
    filter: none;
    transition: opacity var(--transition-fast);
    display: block;
}

.logo-link:hover .logo-image {
    opacity: 0.85;
}

/* Menu hamburger mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-medium);
    border-radius: 2px;
}

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

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

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

.nav-toggle {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-medium);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

a.nav-btn {
    justify-content: center;
}

.nav-btn span {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.nav-btn small {
    font-size: 0.65rem;
    opacity: 0.7;
    font-weight: 300;
    margin-top: 0.1rem;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left var(--transition-medium);
}

.nav-btn:hover {
    background: var(--bg-card-hover);
    border-color: rgba(201, 167, 106, 0.3);
    color: var(--text-primary);
    transform: none;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn.active {
    background: rgba(201, 167, 106, 0.08);
    border-color: rgba(201, 167, 106, 0.3);
    color: var(--text-primary);
}

.nav-btn.active.cleaning {
    background: rgba(212, 212, 212, 0.08);
    border-color: rgba(212, 212, 212, 0.3);
}

/* Main Container */
.main-container {
    position: relative;
    min-height: auto;
}

/* Service Sections */
.service-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Detailing Section */
#detailing-section {
    background: var(--gradient-primary);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Image de l'atelier en arrière-plan */
#detailing-section .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('Garage.JPEG'); /* Image de l'atelier en arrière-plan */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.4; /* Image plus visible */
    filter: blur(2px) brightness(0.6) contrast(0.9) saturate(0.8); /* Effets plus légers pour éclaircir */
    z-index: 0;
    transform: scale(1.1); /* Légèrement agrandie pour éviter les bords blancs avec le blur */
    pointer-events: none; /* Permet de cliquer à travers */
}

/* Overlay sombre par-dessus l'image - Réduit pour éclaircir */
#detailing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(201, 167, 106, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

@keyframes detailingPulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

/* Cleaning Section */
#cleaning-section {
    background: var(--cleaning-gradient);
    background-attachment: fixed;
}

#cleaning-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 168, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 255, 136, 0.2) 0%, transparent 50%);
    animation: cleaningPulse 4s ease-in-out infinite alternate;
}

@keyframes cleaningPulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0.9; transform: scale(1.08); }
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 10; /* Au-dessus de l'image de fond et de l'overlay */
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    height: 100vh;
}

/* Logo Container */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.service-logo {
    max-width: 200px;
    max-height: 200px;
    width: 100%;
    height: auto;
    filter: none;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}

/* Service Content */
.service-content {
        opacity: 1;
}

.service-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#cleaning-section .service-title {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-silver) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-subtitle {
    font-size: 1.1rem;
    font-weight: 200;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-item {
    background: var(--bg-card);
    padding: 1.2rem;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left var(--transition-medium);
}

#cleaning-section .service-item::before {
    background: transparent;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: none;
    border-color: rgba(201, 167, 106, 0.3);
    background: var(--bg-card-hover);
}

#cleaning-section .service-item:hover {
    border-color: rgba(212, 212, 212, 0.3);
}

.service-item h3 {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.service-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* CTA Button */
.cta-button {
    background: transparent;
    border: 1px solid var(--accent-gold);
    padding: 0.75rem 1.75rem;
    border-radius: 2px;
    color: var(--accent-gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#cleaning-section .cta-button {
    border-color: var(--accent-silver);
    color: var(--accent-silver);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left var(--transition-fast);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: rgba(201, 167, 106, 0.1);
    transform: none;
}

#cleaning-section .cta-button:hover {
    background: rgba(212, 212, 212, 0.1);
}

.button-arrow {
    font-size: 1rem;
    transition: transform var(--transition-fast);
}

.cta-button:hover .button-arrow {
    transform: translateX(3px);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.cta-button.ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    padding: 0.75rem 1.75rem;
}

.cta-button.ghost::before {
    background: transparent;
}

.cta-button.ghost .button-arrow {
    font-size: 1rem;
}

.cta-button.ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Urgency Banner (Nettoyage) */
.urgency-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.9), rgba(255, 140, 0, 0.9));
    padding: 1rem 1.5rem;
    border-radius: 50px;
    margin: 1.5rem 0;
    border: 2px solid rgba(255, 69, 0, 0.3);
    box-shadow: 
        0 0 20px rgba(255, 69, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: urgencyPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: urgencyShine 3s linear infinite;
}

@keyframes urgencyPulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(255, 69, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(255, 69, 0, 0.8),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes urgencyShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.urgency-icon {
    font-size: 2rem;
    animation: urgencyBounce 1.5s ease-in-out infinite;
}

@keyframes urgencyBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.urgency-text {
    display: flex;
    flex-direction: column;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.urgency-text strong {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.urgency-text span {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.section-head {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent-gold);
    border-radius: 0;
}

.section-head h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 2px;
}

.section-head p {
    max-width: 640px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.section-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Before After Section */
.before-after-section {
    position: relative;
    padding: 5rem 2rem;
    background: var(--primary-dark);
    overflow: hidden;
}

.before-after-container {
    max-width: 1200px;
    margin: 0 auto;
}

.before-after-header {
    text-align: center;
    margin-bottom: 3rem;
}

.before-after-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    margin: 0.75rem 0 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.before-after-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Comparison Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 400px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--border-subtle);
    user-select: none;
    background: #1a1a1a;
}

.comparison-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

/* Slider Handle */
.comparison-slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: var(--accent-gold);
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #fff 20%, #fff 80%, transparent);
    transform: translateX(-50%);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    background: var(--primary-dark);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.comparison-slider-handle:hover .slider-button {
    transform: translate(-50%, -50%) scale(1.05);
}

.slider-button svg {
    width: 16px;
    height: 16px;
}

/* Labels */
.comparison-labels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.label-before,
.label-after {
    padding: 0.4rem 0.8rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .before-after-section {
        padding: 4rem 1rem;
    }

    .comparison-image-container {
        border-radius: 12px;
    }

    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .comparison-labels {
        padding: 1rem;
}

    .label-before,
    .label-after {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Hover Carousel Section */
.carousel-section {
    position: relative;
    padding: 4rem 2rem;
    background: var(--primary-dark);
    overflow: hidden;
    min-height: 450px;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.carousel-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 300;
    margin: 0.75rem 0 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.carousel-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hover-carousel {
    display: flex;
    gap: 12px;
    padding: 20px 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    min-height: 580px;
}

.hover-carousel::-webkit-scrollbar {
    display: none;
}

.hover-carousel:active {
    cursor: grabbing;
}

.carousel-item {
    position: relative;
    min-width: 280px;
    height: 350px;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all var(--transition-medium);
    border: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.carousel-item:hover {
    transform: none;
    border: 1px solid rgba(201, 167, 106, 0.3);
    z-index: 10;
}

.carousel-item:hover::before {
    opacity: 1;
}

.carousel-item.video-item {
    background: #1a1a1a;
    overflow: hidden;
}

.carousel-item video {
    pointer-events: none;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-section {
        padding: 4rem 1rem;
    }

    .carousel-item {
        min-width: 250px;
        height: 320px;
    }
}

/* Social Section */
.social-section {
    position: relative;
    padding: 5rem 2rem;
    background: var(--primary-dark);
    overflow: hidden;
}

.social-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.social-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    overflow: hidden;
    transition: all var(--transition-medium);
    backdrop-filter: blur(20px);
}

.social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.social-card:hover {
    border-color: rgba(201, 167, 106, 0.3);
    background: var(--bg-card-hover);
}

.social-card:hover::before {
    opacity: 1;
}

.social-card.instagram {
    border-color: var(--border-subtle);
}

.social-card.facebook {
    border-color: var(--border-subtle);
}

.social-card.tiktok {
    border-color: var(--border-subtle);
}

.social-card.instagram:hover {
    border-color: rgba(201, 167, 106, 0.3);
}

.social-card.facebook:hover {
    border-color: rgba(201, 167, 106, 0.3);
}

.social-card.tiktok:hover {
    border-color: rgba(201, 167, 106, 0.3);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-card.instagram .social-icon {
    color: var(--accent-gold);
}

.social-card.facebook .social-icon {
    color: var(--accent-gold);
}

.social-card.tiktok .social-icon {
    color: var(--accent-gold);
}

.social-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.social-content .platform {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 400;
}

.social-content h3 {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-primary);
}

.social-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.social-handle {
    font-size: 0.75rem;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 300;
}

.social-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-header .social-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.social-header .social-handle {
    margin: 0;
}

.social-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.social-posts::-webkit-scrollbar {
    width: 4px;
}

.social-posts::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.social-posts::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

.social-posts::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

.post-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-medium);
}

.post-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.post-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.post-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.post-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-caption {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.post-loading {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.post-error {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 100, 100, 0.8);
    font-size: 0.9rem;
    background: rgba(255, 100, 100, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 100, 100, 0.2);
}

.post-instructions {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-instructions p {
    margin-bottom: 0.5rem;
}

.post-instructions small {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

/* Styles pour le Facebook Page Plugin */
.fb-page-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 1rem 0;
}

.fb-page {
    width: 100% !important;
    max-width: 500px;
    margin: 0 auto;
}

.fb-page iframe {
    width: 100% !important;
    border-radius: 16px;
    overflow: hidden;
}

.post-link-wrapper {
    text-decoration: none;
    display: block;
    color: inherit;
}

.post-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-link:hover {
    text-decoration: none;
}

.tiktok-embed-item {
    min-height: 500px;
}

.tiktok-embed-item blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.embed-social-container,
.elfsight-container {
    width: 100%;
    min-height: 300px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 300;
    padding: 0.6rem 1.2rem;
    border-radius: 2px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-medium);
    margin-top: auto;
    width: 100%;
    justify-content: center;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.social-link:hover {
    background: rgba(201, 167, 106, 0.1);
    border-color: rgba(201, 167, 106, 0.3);
}

/* Gallery Section */
.gallery-section {
    position: relative;
    padding: 8rem 2rem 6rem;
    background: linear-gradient(160deg, #050505 0%, #0f0f0f 40%, #050505 100%);
}

.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(255, 215, 0, 0.08), transparent 50%), radial-gradient(circle at 80% 0%, rgba(201, 48, 44, 0.12), transparent 55%);
    opacity: 0.7;
    pointer-events: none;
}

.gallery-filters {
    display: inline-flex;
    gap: 0.6rem;
    padding: 0.4rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
}

.filter-button {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.filter-button.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(201, 48, 44, 0.2));
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.filter-button:hover {
    color: #fff;
}

.gallery-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
    background: rgba(255, 255, 255, 0.02);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0.65;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover {
    transform: translateY(-14px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 30px 65px rgba(255, 215, 0, 0.18);
}

.gallery-item:hover::after {
    opacity: 0.85;
}

.gallery-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.1);
    transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-media {
    transform: scale(1.08);
}

.gallery-overlay {
    position: relative;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 260px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.gallery-item.is-hidden {
    display: none;
}

/* Boutons admin sur les images (visible uniquement si admin connecté) */
body.admin-mode .gallery-item {
    position: relative;
}

.gallery-admin-buttons {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
}

body.admin-mode .gallery-item:hover .gallery-admin-buttons,
body.admin-mode .gallery-item.admin-hover .gallery-admin-buttons {
    opacity: 1;
    pointer-events: auto;
}

.admin-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-medium);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.admin-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.admin-btn.edit {
    background: rgba(255, 215, 0, 0.9);
    color: #000;
}

.admin-btn.delete {
    background: rgba(201, 48, 44, 0.9);
    color: #fff;
}

.admin-btn.add {
    background: rgba(0, 255, 136, 0.9);
    color: #000;
}

/* Bouton ajouter image (flottant) */
.admin-add-button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #00ff88);
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    z-index: 1000;
    transition: all var(--transition-medium);
    display: none;
}

body.admin-mode .admin-add-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-add-button:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

/* Modale admin pour éditer/ajouter */
.admin-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.admin-modal.show {
    display: flex;
    opacity: 1;
}

.admin-modal-content {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.admin-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-modal-header h2 {
    font-size: 1.5rem;
    color: #ffd700;
    margin: 0;
}

.admin-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition-medium);
}

.admin-modal-close:hover {
    background: rgba(201, 48, 44, 0.3);
    transform: rotate(90deg);
}

.admin-form-group {
    margin-bottom: 1.5rem;
}

.admin-form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all var(--transition-medium);
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

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

.admin-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.admin-btn-submit {
    flex: 1;
    padding: 0.9rem;
    background: linear-gradient(135deg, #ffd700, #00ff88);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.admin-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.admin-btn-cancel {
    flex: 1;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.admin-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
}

.gallery-more {
    margin: 0 auto;
    display: inline-flex;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
    z-index: 1000;
}

.gallery-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) minmax(240px, 1fr);
    gap: 2rem;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 1.5rem;
    width: min(1100px, 95vw);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.lightbox-visual {
    border-radius: 22px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.lightbox-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.lightbox-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    color: #fff;
}

.lightbox-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: fit-content;
}

.lightbox-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.lightbox-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.lightbox-action {
    width: fit-content;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform var(--transition-medium), background var(--transition-medium);
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: transform var(--transition-medium), background var(--transition-medium);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-nav.prev {
    left: 2%;
}

.lightbox-nav.next {
    right: 2%;
}

body.lightbox-open {
    overflow: hidden;
}

/* Contact Section - Footer fixe sur toutes les pages */
.contact-section {
    position: relative; /* Changé de fixed à relative pour être dans le flux */
    bottom: auto;
    left: auto;
    right: auto;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    transform: none; /* Plus de transformation */
    opacity: 1; /* Toujours visible */
    pointer-events: auto; /* Toujours cliquable */
    margin-top: auto; /* Pour pousser le footer en bas */
}

/* Supprimer la classe .show car le footer est toujours visible maintenant */
.contact-section.show {
    /* Plus nécessaire - le footer est toujours visible */
}

/* Bouton "Demander un devis" dans la navbar */
.nav-quote-button {
    background: transparent;
    border: 1px solid var(--accent-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    color: var(--accent-gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-quote-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left var(--transition-fast);
}

.nav-quote-button:hover::before {
    left: 100%;
}

.nav-quote-button:hover {
    background: rgba(201, 167, 106, 0.1);
    transform: none;
}

.nav-quote-button .button-arrow {
    font-size: 0.9rem;
    transition: transform var(--transition-fast);
}

.nav-quote-button:hover .button-arrow {
    transform: translateX(2px);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Lien admin discret - très petit et discret */
.admin-link-discreet {
    position: absolute;
    bottom: 0.3rem;
    right: 0.5rem;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    opacity: 0.3;
    transition: opacity 0.3s ease, color 0.3s ease;
    z-index: 1;
    line-height: 1;
    padding: 0.2rem;
    display: inline-block;
}

.admin-link-discreet:hover {
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.4);
}

.contact-title {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700, #c9302c, #00a8ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
}

.contact-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
}

.contact-icon {
    font-size: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.contact-text span {
    color: #ccc;
    font-size: 0.75rem;
}

.contact-cta {
    text-align: right;
}

.contact-cta h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    line-height: 1.3;
    hyphens: none;
    word-break: keep-all;
    text-wrap: balance;
    transition: all var(--transition-medium);
    opacity: 1;
}

.contact-cta h3.changing {
    opacity: 0.7;
    transform: scale(0.98);
}

.contact-cta p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-button {
    background: transparent;
    border: 1px solid var(--accent-gold);
    padding: 0.6rem 1.2rem;
    border-radius: 2px;
    color: var(--accent-gold);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: left var(--transition-fast);
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    background: rgba(201, 167, 106, 0.1);
}

/* Transition Effects */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    z-index: 500;
    transition: opacity var(--transition-medium);
}

.transition-overlay.active {
    opacity: 1;
}

.transition-overlay.cleaning {
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
}

/* Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 1rem;
    }
    
    .service-title {
        font-size: 3rem;
    }

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

    .cta-actions {
        justify-content: center;
    }

    .section-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .lightbox-content {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .lightbox-visual {
        min-height: 320px;
    }
}

@media (max-width: 992px) {
    .nav-container {
        padding: 0.6rem 1.5rem;
    }
    
    .nav-content {
        max-width: none;
    }
    
    .logo-image {
        height: 45px;
        max-width: 180px;
    }
    
    .nav-btn {
        padding: 0.6rem 1rem;
    }
    
    .nav-btn span {
        font-size: 0.8rem;
    }
    
    .nav-btn small {
        font-size: 0.65rem;
    }


    .social-section,
    .gallery-section {
        padding: 4rem 1.5rem;
    }

    .gallery-grid {
        gap: 1.3rem;
    }

    .gallery-item {
        min-height: 280px;
    }

    .lightbox-content {
        padding: 1.5rem;
    }

    .lightbox-nav {
        display: none;
    }

    .contact-cta {
        text-align: left;
    }

    .nav-quote-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .nav-quote-button span {
        display: none;
    }

    .nav-quote-button::after {
        content: 'Devis';
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0;
        backdrop-filter: blur(20px);
    }
    
    .nav-container {
        padding: 0.4rem 1rem;
    }
    
    .nav-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        max-width: none;
    }
    
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-toggle {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
        border-bottom: 1px solid var(--border-subtle);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-medium);
        z-index: 1000;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav-toggle.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-btn {
        width: 100%;
        max-width: none;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
        border-radius: 4px;
        justify-content: center;
    }
    
    .nav-btn span {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .nav-btn small {
        font-size: 0.7rem;
    }
    
    .nav-quote-button {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        margin-top: 0.5rem;
    }
    
    .nav-quote-button span {
        display: inline;
    }
    
    .nav-quote-button::after {
        content: '';
    }
    
    .content-wrapper {
        padding-top: calc(60px + 1rem);
        padding: 1rem;
        min-height: calc(100vh - 60px);
        align-items: flex-start;
        justify-content: center;
    }

    .service-title {
        font-size: 2.5rem;
        margin-top: 0;
        line-height: 1.2;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-logo {
        max-width: 200px;
        max-height: 200px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section-head {
        text-align: center;
        align-items: center;
    }

    .section-head p {
        text-align: center;
    }

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

    .social-posts {
        max-height: 350px;
    }

    .post-image {
        height: 150px;
    }

    .gallery-filters {
        justify-content: center;
    }

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

    .social-posts {
        max-height: 300px;
    }

    .post-image {
        height: 140px;
    }

    .post-info {
        padding: 0.8rem;
    }

    .post-caption {
        font-size: 0.85rem;
    }

    .lightbox-content {
        border-radius: 24px;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.3rem 0.5rem;
    }
    
    .nav-content {
        gap: 0.3rem;
    }
    
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .nav-toggle {
        top: 55px;
    }
    
    .nav-btn {
        padding: 0.7rem 0.9rem;
        font-size: 0.8rem;
    }
    
    .nav-btn span {
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
    
    .nav-btn small {
        font-size: 0.65rem;
    }
    
    .content-wrapper {
        padding: 0.5rem;
        gap: 1rem;
        padding-top: 6rem; /* Compenser la hauteur réduite du header */
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-subtitle {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 1rem;
    }

    .social-section,
    .gallery-section {
        padding: 3rem 0.8rem;
    }

    .gallery-item {
        min-height: 240px;
    }

    .gallery-overlay {
        padding: 1.4rem;
    }

    .lightbox-content {
        padding: 1rem;
    }

    .lightbox-visual {
        min-height: 240px;
    }
    
    .urgency-banner {
        padding: 0.8rem 1rem;
        margin: 1rem 0;
    }
    
    .urgency-text strong {
        font-size: 0.9rem;
    }
    
    .urgency-text span {
        font-size: 0.8rem;
    }
    
    .contact-container {
        padding: 0.6rem 1rem;
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-details {
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }
    
    .contact-item {
        min-width: auto;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        width: 100%;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    
    .contact-text strong {
        font-size: 0.75rem;
    }
    
    .contact-text span {
        font-size: 0.7rem;
    }
    
    .contact-cta {
        text-align: center;
        width: 100%;
    }
    
    .contact-cta h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .copyright {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .copyright p {
        font-size: 0.65rem;
    }
}

/* ========================================
   COPYRIGHT
   ======================================== */

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    order: 10;
}

.copyright p {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
}

@media (max-width: 768px) {
    .copyright {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .copyright p {
        font-size: 0.7rem;
    }
}
