/* ========================================
   VARIABLES & BASE STYLES
======================================== */
:root {
    /* Identité bleue Audebert RTP */
    --primary: #1e5799;
    --primary-dark: #164172;
    --primary-light: #2a6cb8;
    --primary-pale: #e8f0f8;
    /* Alias pour compatibilité */
    --blue: var(--primary);
    --blue-dark: var(--primary-dark);
    --blue-light: var(--primary-light);
    --blue-pale: var(--primary-pale);
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --light: #ffffff;
    --cream: #faf8f5;
    --warm-gray: #f7f5f2;
    --gray: #888888;
    --light-gray: #f5f5f5;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-medium: 0 20px 60px rgba(0,0,0,0.12);
    --font-heading: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* ========================================
   NAVIGATION
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    letter-spacing: 2px;
}

.logo span {
    color: var(--blue);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.burger span {
    width: 30px;
    height: 2px;
    background: var(--light);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    color: var(--light);
    width: 90%;
    max-width: 900px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease forwards;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.2s;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(30, 87, 153, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 87, 153, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
    box-sizing: border-box;
    border-radius: 50px;
}

.btn-outline:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.btn-white {
    background: var(--light);
    color: var(--primary);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background: var(--primary-pale);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 3;
}

.slider-btn {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--light);
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

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

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--light);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: var(--light);
}

.scroll-indicator span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--light);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ========================================
   SECTIONS
======================================== */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--primary);
    opacity: 0.5;
}

.section-tag::before {
    right: calc(100% + 15px);
}

.section-tag::after {
    left: calc(100% + 15px);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
}

.section-title.left {
    text-align: left;
}

/* ========================================
   SERVICES GRID
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--light);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========================================
   GALLERY
======================================== */
.gallery {
    background: #fff;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--light);
    font-size: 1rem;
    font-weight: 500;
    transform: translateY(20px);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.gallery-overlay span::before {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 0.5rem;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline-dark {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--dark);
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    background: transparent;
    border-radius: 50px;
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26,26,26,0.2);
}

/* ========================================
   STATS
======================================== */
.stats {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: grayscale(30%);
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.88) 100%);
    z-index: 1;
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: var(--light);
    padding: 1.5rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    color: var(--primary);
    font-size: 2rem;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
    display: block;
}

/* ========================================
   WHY US
======================================== */
.why-us {
    background: var(--warm-gray);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-us-text p {
    color: var(--gray);
    margin: 1.5rem 0 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.features-list {
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.features-list .check {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    box-shadow: var(--shadow-medium);
}

.why-us-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    z-index: -1;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    text-align: center;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.85) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--light);
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
}

.cta-section .btn-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-section .btn-white:hover {
    background: var(--primary-pale);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--dark);
    padding: 5rem 0 2rem;
    color: var(--light);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--blue);
}

.footer-col p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--gray);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col .contact-info li {
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ========================================
   PAGE HEADER (for other pages)
======================================== */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.7);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
}

/* ========================================
   SERVICES PAGE
======================================== */
.services-full {
    display: grid;
    gap: 3rem;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-detail-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray);
}

.service-detail-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ========================================
   ABOUT PAGE
======================================== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.values-section {
    background: var(--light-gray);
}

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

.value-card {
    background: var(--light);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-box {
    background: var(--dark);
    color: var(--light);
    padding: 3rem;
}

.contact-info-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

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

/* Tablette */
@media (max-width: 1024px) {
    .section {
        padding: 5rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 220px);
        gap: 1rem;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .why-us-content,
    .about-intro,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-detail:nth-child(even) {
        direction: ltr;
    }
    
    .why-us-image::before {
        display: none;
    }
    
    .why-us-image img {
        height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats {
        background-attachment: scroll;
    }
    
    .cta-section {
        background-attachment: scroll;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .header {
        padding: 1rem 4%;
    }
    
    .header.scrolled {
        padding: 0.8rem 4%;
    }
    
    .logo a {
        font-size: 1.4rem;
    }
    
    .burger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.3rem;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Mobile */
    .hero {
        height: 100vh;
        height: 100svh;
        min-height: 500px;
    }
    
    .hero-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1.5rem;
        width: 100%;
    }
    
    .btn {
        width: auto;
        min-width: 200px;
        max-width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .btn-outline {
        background: transparent;
        border: 2px solid var(--light);
    }
    
    .slider-nav {
        bottom: 100px;
        gap: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-nav {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Sections Mobile */
    .section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 4%;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.15rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }
    
    .gallery-item {
        height: 220px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .gallery-overlay {
        opacity: 1;
        padding: 1.5rem;
    }
    
    .gallery-overlay span {
        transform: translateY(0);
        font-size: 1rem;
    }
    
    /* Stats Mobile */
    .stats {
        padding: 4rem 0;
        background-attachment: scroll;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-number::after {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    /* Gallery Mobile */
    .gallery-cta {
        margin-top: 2rem;
    }
    
    .btn-outline-dark {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
    }
    
    /* Section Tag Mobile */
    .section-tag::before,
    .section-tag::after {
        width: 20px;
    }
    
    /* Why Us Mobile */
    .why-us-content {
        gap: 2rem;
    }
    
    .why-us-text p {
        font-size: 1rem;
    }
    
    .features-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }
    
    .why-us-image img {
        height: 300px;
        border-radius: 8px;
    }
    
    /* CTA Mobile */
    .cta-section {
        padding: 5rem 0;
        background-attachment: scroll;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
        padding: 0 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Page Header Mobile */
    .page-header {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    /* Services Detail Mobile */
    .service-detail {
        padding: 2rem 0;
        gap: 2rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.5rem;
    }
    
    .service-detail-image img {
        height: 250px;
        border-radius: 8px;
    }
    
    /* About Mobile */
    .about-intro {
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-image img {
        height: 300px;
        border-radius: 8px;
    }
    
    /* Values Mobile */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    /* Contact Mobile */
    .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-box {
        padding: 2rem;
        order: 2;
    }
    
    .contact-info-box h2 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-form h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 16px; /* Évite le zoom iOS */
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        font-size: 1.3rem;
    }
    
    .footer-col h4 {
        margin-bottom: 1rem;
    }
    
    .footer-col ul li {
        margin-bottom: 0.6rem;
    }
    
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Très petit écran (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.75rem;
        min-width: 180px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .gallery-item {
        height: 180px;
    }
}

/* Fix pour Safari iOS - barre d'adresse */
@supports (-webkit-touch-callout: none) {
    .hero {
        height: -webkit-fill-available;
        min-height: 100vh;
    }
}

/* ========================================
   PAGE HEADER OVERLAY
======================================== */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.7);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light);
    padding: 0 5%;
}

.page-header-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    letter-spacing: 2px;
}

/* ========================================
   SERVICES NAVIGATION
======================================== */
.services-nav-section {
    padding: 3rem 0;
    background: var(--light-gray);
}

.services-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-nav-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark);
}

.services-nav-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-nav-btn .nav-icon {
    font-size: 2rem;
}

.services-nav-btn .nav-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========================================
   CATEGORY SECTIONS
======================================== */
.category-section {
    padding: 5rem 0;
}

.category-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.category-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.category-title-wrap {
    flex: 1;
}

.category-desc {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 600px;
}

.category-divider {
    padding: 2rem 0;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* ========================================
   SERVICE BLOCKS
======================================== */
.service-block {
    margin-bottom: 5rem;
    padding: 3rem;
    background: var(--light);
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

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

.service-block-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.service-block-icon {
    font-size: 2.5rem;
}

.service-block-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
}

.service-block-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-block-content.reverse {
    direction: rtl;
}

.service-block-content.reverse > * {
    direction: ltr;
}

.service-block-text p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.feature-icon {
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text {
    color: var(--dark);
    font-size: 0.95rem;
}

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

/* ========================================
   MINI GALLERY (Services)
======================================== */
.mini-gallery {
    position: relative;
}

.mini-gallery-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: pointer;
}

.mini-gallery-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mini-gallery-main:hover img {
    transform: scale(1.05);
}

.gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    background: rgba(0,0,0,0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.mini-gallery-main:hover .gallery-zoom-icon {
    opacity: 1;
}

.mini-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.mini-gallery-thumbs img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.mini-gallery-thumbs img:hover {
    opacity: 0.8;
}

.see-more-photos {
    background: var(--dark);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
    height: 80px;
}

.see-more-photos span:first-child {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.see-more-photos span:last-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.see-more-photos:hover {
    background: var(--primary);
}

.see-more-photos:hover span:first-child {
    color: var(--dark);
}

/* ========================================
   GALLERY FILTERS
======================================== */
.gallery-filters-section {
    padding: 3rem 0;
    background: var(--light-gray);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.gallery-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 0.9rem;
}

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

.filter-btn.active {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.filter-icon {
    font-size: 1.2rem;
}

/* ========================================
   MAIN GALLERY
======================================== */
.main-gallery-section {
    padding: 4rem 0;
}

.gallery-counter {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.main-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

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

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--light);
    transform: translateY(100%);
    transition: var(--transition);
}

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

.photo-category {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.photo-title {
    font-size: 1rem;
    font-weight: 600;
}

.gallery-load-more {
    text-align: center;
    margin-top: 3rem;
}

.no-results {
    text-align: center;
    padding: 4rem;
    color: var(--gray);
}

.no-results p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Gallery Photo Hidden State for Filtering */
.gallery-photo.hidden {
    display: none;
}

/* ========================================
   CATEGORIES PREVIEW
======================================== */
.categories-preview {
    background: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--light);
}

.category-card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ========================================
   LIGHTBOX
======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-info {
    text-align: center;
    margin-top: 1rem;
    color: var(--light);
}

.lightbox-category {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.lightbox-title {
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--light);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--primary);
}

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

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    color: var(--dark);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light);
    font-size: 0.9rem;
}

/* ========================================
   CTA BUTTONS
======================================== */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   LAZY LOADING
======================================== */
.lazy {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* ========================================
   RESPONSIVE - NEW SECTIONS
======================================== */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-block-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-block-content.reverse {
        direction: ltr;
    }
    
    .category-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .services-nav-btn {
        padding: 1rem 1.5rem;
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .filter-text {
        display: none;
    }
    
    .filter-btn.active .filter-text {
        display: inline;
    }
    
    .main-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .gallery-photo {
        aspect-ratio: 1;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        aspect-ratio: 1;
    }
    
    .category-card-overlay {
        padding: 1rem;
    }
    
    .category-card h3 {
        font-size: 1rem;
    }
    
    .category-card p {
        font-size: 0.75rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .service-block {
        padding: 1.5rem;
    }
    
    .service-block-title {
        font-size: 1.4rem;
    }
    
    .mini-gallery-main img {
        height: 220px;
    }
    
    .mini-gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mini-gallery-thumbs img,
    .see-more-photos {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .main-gallery {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .services-nav-btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   SERVICES SHOWCASE - HOMEPAGE
   Deux grandes cartes Intérieur / Extérieur
======================================== */
.services-showcase {
    background: var(--cream);
    padding-bottom: 0;
    position: relative;
}

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

.services-showcase .section-header {
    margin-bottom: 4rem;
}

.services-showcase .section-title {
    font-size: 2.8rem;
}

.section-desc {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 550px;
    margin: 1.2rem auto 0;
    text-align: center;
    line-height: 1.7;
}

/* Dual Cards Container */
.services-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Individual Showcase Card */
.service-showcase-card {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: white;
    border-radius: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Image Stack Effect */
.showcase-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.showcase-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-img.main {
    z-index: 1;
}

.showcase-img.secondary {
    z-index: 0;
    transform: scale(1.05);
    opacity: 0;
}

.showcase-img.tertiary {
    z-index: 0;
    transform: scale(1.1);
    opacity: 0;
}

.service-showcase-card:hover .showcase-img.main {
    transform: scale(1.1);
    opacity: 0.7;
}

.service-showcase-card:hover .showcase-img.secondary {
    opacity: 0.4;
    transform: scale(1.08);
}

/* Overlay */
.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 0.5s ease;
}

.service-showcase-card.interior .showcase-overlay {
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.75) 0%,
        rgba(26, 26, 26, 0.92) 100%
    );
}

.service-showcase-card.exterior .showcase-overlay {
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.75) 0%,
        rgba(26, 26, 26, 0.92) 100%
    );
}

.service-showcase-card:hover .showcase-overlay {
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.6) 0%,
        rgba(26, 26, 26, 0.85) 100%
    );
}

/* Content */
.showcase-content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.showcase-icon {
    position: absolute;
    top: 3rem;
    right: 3rem;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(201, 162, 39, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    background: rgba(201, 162, 39, 0.1);
}

.showcase-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    transition: all 0.4s ease;
}

.service-showcase-card:hover .showcase-icon {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.service-showcase-card:hover .showcase-icon svg {
    stroke: var(--dark);
}

.showcase-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.2rem;
    color: #fff;
    transition: transform 0.4s ease;
}

.service-showcase-card:hover .showcase-title {
    transform: translateX(8px);
}

.showcase-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 350px;
    line-height: 1.6;
}

.showcase-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.showcase-features li {
    background: transparent;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.service-showcase-card:hover .showcase-features li {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--primary);
    color: #fff;
}

.showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    transition: all 0.3s ease;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.showcase-cta .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.service-showcase-card:hover .showcase-cta {
    color: #fff;
}

.service-showcase-card:hover .showcase-cta .arrow {
    transform: translateX(8px);
    color: var(--primary);
}

/* Quick Stats Below Cards */
.services-quick-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5rem;
    padding: 4rem 2rem;
    background: var(--dark);
    margin-top: 2rem;
}

.quick-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.stat-circle {
    position: relative;
    width: 130px;
    height: 130px;
}

.stat-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.stat-circle-progress {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-quick-stats.animated .stat-circle-progress.interior {
    stroke-dashoffset: 147; /* 48% */
}

.services-quick-stats.animated .stat-circle-progress.exterior {
    stroke-dashoffset: 104; /* 63% */
}

.services-quick-stats.animated .stat-circle-progress.satisfaction {
    stroke-dashoffset: 0; /* 100% */
}

.quick-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.quick-number.percent::after {
    content: '%';
    font-size: 1.2rem;
    color: var(--primary);
    margin-left: 2px;
}

.quick-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.quick-divider {
    display: none;
}

/* ========================================
   SERVICES SHOWCASE - RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .service-showcase-card {
        height: 480px;
    }
    
    .showcase-title {
        font-size: 2.8rem;
    }
    
    .showcase-content {
        padding: 2rem;
    }
    
    .showcase-icon {
        top: 2rem;
        right: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .showcase-icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 768px) {
    .services-duo {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-showcase-card {
        height: 400px;
    }
    
    .showcase-title {
        font-size: 2.2rem;
    }
    
    .showcase-desc {
        font-size: 0.95rem;
    }
    
    .services-quick-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2.5rem;
        padding: 3rem 1.5rem;
    }
    
    .stat-circle {
        width: 110px;
        height: 110px;
    }
    
    .quick-number {
        font-size: 2rem;
    }
    
    .quick-number.percent::after {
        font-size: 1rem;
    }
    
    .quick-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .service-showcase-card {
        height: 380px;
    }
    
    .showcase-content {
        padding: 1.5rem;
    }
    
    .showcase-icon {
        width: 50px;
        height: 50px;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .showcase-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-desc {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .showcase-features {
        margin-bottom: 1.5rem;
    }
    
    .showcase-features li {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .section-desc {
        font-size: 1rem;
    }
}

/* ========================================
   SECTION LABELS & CERTIFICATIONS
   Section pour RGE, Pro Adapt, Aides
======================================== */
.labels-section {
    background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
    padding: 5rem 0;
    position: relative;
}

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

/* Labels Banner (accueil) */
.labels-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
}

.labels-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.labels-banner-text {
    flex: 1;
    color: #fff;
}

.labels-banner-text .section-tag {
    color: rgba(255,255,255,0.8);
}

.labels-banner-text .section-tag::before,
.labels-banner-text .section-tag::after {
    background: rgba(255,255,255,0.3);
}

.labels-banner-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0.5rem 0;
}

.labels-banner-text p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.labels-banner-logos {
    display: flex;
    gap: 1rem;
}

.label-logo-placeholder.small {
    width: 60px;
    height: 60px;
    font-size: 0.65rem;
    background: rgba(255,255,255,0.2);
}

.labels-banner .btn-primary {
    background: #fff;
    color: var(--primary);
}

.labels-banner .btn-primary:hover {
    background: var(--primary-pale);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .labels-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .labels-banner-logos {
        justify-content: center;
    }
}

.labels-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.labels-intro p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.labels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.label-card {
    background: #fff;
    border: 1px solid rgba(30, 87, 153, 0.1);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.label-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--blue);
    transform: scaleY(0);
    transition: var(--transition);
}

.label-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--blue);
}

.label-card:hover::before {
    transform: scaleY(1);
}

.label-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.label-logo {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--blue-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.label-logo img {
    max-width: 70px;
    max-height: 70px;
    object-fit: contain;
}

/* Placeholder quand le logo n'est pas disponible */
.label-logo-placeholder {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
    padding: 0.5rem;
}

.label-card-header-text {
    flex: 1;
}

.label-badge {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.label-badge.gold {
    background: var(--primary);
}

.label-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
}

.label-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.label-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.label-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--blue-pale);
    color: var(--blue-dark);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.label-feature-tag svg {
    width: 14px;
    height: 14px;
    stroke: var(--blue);
}

/* Info box pour les aides */
.labels-info-box {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #fff;
}

.labels-info-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.labels-info-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
}

.labels-info-content h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.labels-info-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.7;
    margin: 0;
}

.labels-info-logos {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.labels-info-logos img {
    height: 40px;
    background: #fff;
    padding: 0.5rem;
    border-radius: 4px;
}

/* ========================================
   LABELS PAGE SPECIFIC STYLES
======================================== */
.labels-page-intro {
    background: var(--cream);
    padding-bottom: 3rem;
}

.labels-intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.labels-intro-text {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.labels-main-section {
    background: var(--warm-gray);
}

.labels-main-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.label-main-card {
    background: var(--light);
    display: grid;
    grid-template-columns: 280px 1fr;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.label-main-card.featured {
    border: 2px solid var(--primary);
}

.label-main-visual {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

.label-main-logo {
    margin-bottom: 1.5rem;
}

.label-logo-placeholder.large {
    width: 120px;
    height: 120px;
    font-size: 1rem;
}

.label-main-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 3px;
}

.label-main-badge.gold {
    background: rgba(255,215,0,0.3);
}

.label-main-content {
    padding: 2.5rem 3rem;
}

.label-main-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.label-main-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.label-main-features h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

.label-main-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--primary-pale);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

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

.highlight-text {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.6;
}

.label-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.label-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
    color: var(--dark);
}

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

.check-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Aides Section */
.aides-section {
    background: var(--cream);
}

.aides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.aide-card {
    background: var(--light);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.aide-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.aide-logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.6rem;
    text-align: center;
    line-height: 1.2;
    padding: 0.25rem;
}

.aide-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    background: var(--primary-pale);
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
}

.aide-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.aide-card > p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.aide-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aide-points li {
    font-size: 0.85rem;
    color: var(--dark);
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.aide-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Labels Info Section */
.labels-info-section {
    background: var(--warm-gray);
}

.labels-info-box.large {
    padding: 3rem;
    flex-direction: column;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
}

.labels-info-box.large .labels-info-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.labels-info-box.large .labels-info-icon svg {
    width: 40px;
    height: 40px;
}

.labels-info-box.large h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.info-steps li {
    background: rgba(255,255,255,0.1);
    padding: 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    padding-left: 3rem;
}

.info-steps li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 1rem;
    top: 1.25rem;
    width: 24px;
    height: 24px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.info-steps {
    counter-reset: step;
}

.labels-info-box.large .btn-primary {
    background: #fff;
    color: var(--primary);
}

.labels-info-box.large .btn-primary:hover {
    background: var(--primary-pale);
    transform: translateY(-3px);
}

/* Responsive Labels Page */
@media (max-width: 1200px) {
    .aides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .label-main-card {
        grid-template-columns: 1fr;
    }
    
    .label-main-visual {
        padding: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .label-main-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .aides-grid {
        grid-template-columns: 1fr;
    }
    
    .info-steps {
        grid-template-columns: 1fr;
    }
    
    .labels-info-box.large {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .label-main-content h2 {
        font-size: 1.3rem;
    }
    
    .label-main-highlight {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive Labels Section */
@media (max-width: 1024px) {
    .labels-grid {
        gap: 1.5rem;
    }
    
    .label-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .labels-section {
        padding: 4rem 0;
    }
    
    .labels-grid {
        grid-template-columns: 1fr;
    }
    
    .label-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .labels-info-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .labels-info-content h4 {
        font-size: 1.2rem;
    }
    
    .labels-info-logos {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .label-card {
        padding: 1.5rem;
    }
    
    .label-card h3 {
        font-size: 1.2rem;
    }
    
    .label-feature-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.6rem;
    }
}
