/*
Theme Name: Béziers Rénovation
Theme URI: https://beziers-renovation.fr
Author: Antigravity
Description: Thème premium pour Béziers Rénovation, converti à partir d'un design HTML statique.
Version: 1.0.0
Text Domain: beziers-renovation
*/

:root {
    --primary-gradient: linear-gradient(130deg, #FF9123 20%, #FF6600 50%, #FF9123 50%, #FF9123 100%);
    --secondary-gradient: linear-gradient(130deg, #004988 20%, #052E51 50%, #004988 50%, #1B79C9 100%);
    --primary-color: #FF6600;
    --secondary-color: #004988;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --container-width: 1300px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.header-scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-menu-btn.toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    background-color: var(--primary-color);
}

.mobile-menu-btn.toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -7px);
    background-color: var(--primary-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo a {
    text-decoration: none;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
    margin-left: 2px;
}

.custom-logo-link {
    display: inline-block;
}

.custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0 40px;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    /* Pillow style like in the reference */
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
}

.btn-secondary {
    background: var(--secondary-gradient);
}

/* Shimmer / Mirror Effect (Effet Miroir) */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    transition: none;
}

.btn:hover::after {
    left: 150%;
    transition: all 0.6s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #ddd;
    color: var(--dark-color);
}

.btn-outline:hover {
    border-color: var(--dark-color);
    background: #f8f8f8;
}

/* Hero Section */
#hero-section {
    padding: 80px 0 120px;
    background-color: #fdfdfb;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-text .hero-tagline {
    display: block;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.hero-text h1 {
    font-size: 3.75rem;
    /* 60px */
    line-height: 1.1;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1.5px;
    white-space: nowrap;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 15px;
}

.hero-ctas .btn {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Staggered Images Layout */
.hero-images {
    position: relative;
    height: 500px;
}

.img-card {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--white);
    background: var(--white);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, z-index 0s;
}

.img-card:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
    cursor: pointer;
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.img-card:hover img {
    transform: scale(1.1);
}

.card-1 {
    width: 280px;
    height: 380px;
    top: 50px;
    left: 0;
    z-index: 2;
}

.card-1:hover {
    transform: scale(1.05) rotate(-2deg);
}

.card-2 {
    width: 240px;
    height: 180px;
    top: 0;
    left: 200px;
    z-index: 1;
}

.card-3 {
    width: 320px;
    height: 240px;
    top: 150px;
    left: 260px;
    z-index: 3;
}

.card-4 {
    width: 180px;
    height: 220px;
    bottom: -40px;
    right: 0;
    z-index: 4;
}

/* Solution Section */
#solution-section {
    padding: 100px 0;
    background-color: #f1f7fd;
    /* Fond bleu très clair comme sur la capture */
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-header {
    margin-bottom: 35px;
}

.dash-orange {
    display: block;
    width: 40px;
    height: 4px;
    background-color: #FF6600;
    margin-bottom: 20px;
}

.solution-text h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    line-height: 1.2;
    font-weight: 800;
}

.dot-orange {
    color: #FF6600;
}

.solution-text .description {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.solution-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1rem;
}

.solution-text .slogan {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

/* Grille de cartes décalée */
.solution-cards {
    display: flex;
    gap: 30px;
}

.cards-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cards-column.col-2 {
    margin-top: 50px;
    /* Décalage vertical pour l'effet Lego */
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #fff1e6;
    /* Fond orangé clair pour l'icône */
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Smileys/Icons placeholders (On pourrait utiliser des SVGs) */
.icon-box::before {
    content: '';
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-user::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6600'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.icon-quote::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6600'%3E%3Cpath d='M14 17h3l2-5V7h-6v5h3l-2 5zM6 17h3l2-5V7H5v5h3l-2 5z'/%3E%3C/svg%3E");
}

.icon-lock::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6600'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E");
}

.icon-tools::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6600'%3E%3Cpath d='M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.5 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z'/%3E%3C/svg%3E");
}

.icon-check::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6600'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .solution-cards {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .solution-cards {
        flex-direction: column;
    }

    .cards-column.col-2 {
        margin-top: 0;
    }
}

/* SECTION SERVICES - ULTRA PREMIUM DESIGN */
.premium-services {
    position: relative;
    padding: 120px 0 160px 0;
    overflow: hidden;
    background-color: #fcfdfe;
}

.bg-layer-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 100%;
    background: var(--secondary-gradient);
    z-index: 1;
}

.bg-layer-white {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    background-color: var(--white);
    z-index: 0;
}

.services-glass-layout {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Panneau d'info Style Verre */
.info-glass-panel {
    width: 38%;
    padding: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--white);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.luxury-dash {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    margin-bottom: 30px;
    border-radius: 2px;
}

.info-glass-panel h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.info-glass-panel h2 strong {
    font-weight: 800;
}

.info-text-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.info-cta {
    margin-top: 40px;
}

.btn-ghost {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Slider Section */
.slider-wrapper-premium {
    width: 62%;
    padding-left: 20px;
    /* Reduced padding to bring cards closer to the text */
    position: relative;
    z-index: 2;
}

.slider-viewport {
    overflow: hidden;
    /* THE FIX: Cards now disappear behind the virtual 'limit' of the white area */
    padding: 20px 0 60px 0;
    /* Space for shadows that were being clipped */
    margin-top: -20px;
}

.slider-track-premium {
    display: flex;
    gap: 35px;
    padding-left: 10px;
    /* Offset to show the edge of the first card better */
    /* La courbe Elastic est la clé ici */
    transition: transform 1s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.service-premium-card {
    flex: 0 0 360px;
    width: 360px;
    height: 500px;
    position: relative;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
    opacity: 0.7;
    /* Slightly dimmed for focus, but clear enough */
    transform: scale(0.95);
    /* Subtle scale for depth */
}

/* Active slide class (added via JS) */
.service-premium-card.active-slide {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.card-visual {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.card-overlay-luxury {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 46, 81, 0.9) 0%, transparent 60%);
    transition: background 0.4s ease;
}

.card-info-premium {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    z-index: 10;
}

.card-tag {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.card-title-link a {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover States Premium */
.service-premium-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.service-premium-card:hover .card-visual img {
    transform: scale(1.1);
}

.service-premium-card:hover .card-overlay-luxury {
    background: linear-gradient(to top, #FF6600 0%, transparent 80%);
}

.service-premium-card:hover .card-title-link a {
    color: var(--white);
}

/* Custom Pagination Premium */
.premium-pagination {
    margin-top: 50px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.pag-bullet {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.pag-bullet.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

/* Responsive */
@media (max-width: 1300px) {
    .bg-layer-blue {
        width: 100%;
    }

    .bg-layer-white {
        display: none;
    }

    .services-glass-layout {
        flex-direction: column;
    }

    .info-glass-panel {
        width: 100%;
        margin-bottom: 60px;
    }

    .slider-wrapper-premium {
        width: 100%;
        padding-left: 0;
    }
}

/* Section Services - Mosaïque Interactive Premium */
#services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.services-header {
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 400;
}

.services-header h2 strong {
    font-weight: 800;
}

.services-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
}

/* Grille Mosaïque */
.services-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 30px;
}

.mosaic-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

.mosaic-card {
    height: 100%;
    width: 100%;
    position: relative;
    background-color: var(--dark-color);
}

.mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

.mosaic-overlay {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 58, 110, 0.9) 0%, rgba(0, 58, 110, 0.4) 50%, transparent 100%);
    transition: background 0.4s ease;
    z-index: 2;
}

.service-cat {
    display: inline-block;
    color: #FF9123;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mosaic-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

.mosaic-overlay h3 a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mosaic-overlay p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
    max-width: 350px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* Hover Effects Mosaic Premium */
.mosaic-item:hover .mosaic-card img {
    transform: scale(1.1);
    opacity: 0.6;
}

.mosaic-item:hover .mosaic-overlay {
    background: linear-gradient(to top, rgba(255, 102, 0, 0.9) 0%, rgba(255, 102, 0, 0.4) 50%, transparent 100%);
}

.mosaic-item:hover .service-cat {
    transform: translateY(0);
    opacity: 1;
}

.mosaic-item:hover p {
    max-height: 100px;
    margin-bottom: 20px;
    opacity: 1;
}

.mosaic-item:hover h3 a {
    color: var(--white);
}

/* Footer Services */
.services-footer {
    margin-top: 50px;
    text-align: center;
}

.services-footer p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-footer a {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.services-footer a:hover {
    color: #FF6600;
}

@media (max-width: 992px) {
    .services-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 350px);
    }

    .mosaic-overlay h3 {
        font-size: 1.5rem;
    }

    .service-cat {
        opacity: 1;
        transform: translateY(0);
    }

    .mosaic-overlay p {
        max-height: 100px;
        opacity: 1;
    }
}

/* SECTION MÉTIERS - DARK PREMIUM 3x3 */
.dark-trades-section {
    padding: 120px 0;
    background-color: #031424;
    /* Bleu très profond, presque noir */
    color: var(--white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 70px;
}

.luxury-dash-center {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    margin-bottom: 25px;
    border-radius: 2px;
}

.section-header-center h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.section-header-center h2 strong {
    font-weight: 800;
}

.section-header-center p {
    font-size: 1.25rem;
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
}

.trades-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trade-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 45px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trade-glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.trade-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transition: all 0.6s;
}

.trade-glass-card:hover::before {
    left: 100%;
}

.trade-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    margin-bottom: 25px;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: 28px;
    -webkit-mask-size: 28px;
}

/* Icones SVG (Mask technique) */
.icon-plumbing {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v10"/><path d="M18 15a6 6 0 1 1-12 0"/><path d="M6 15h12"/><path d="M9 20h6"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v10"/><path d="M18 15a6 6 0 1 1-12 0"/><path d="M6 15h12"/><path d="M9 20h6"/></svg>');
}

.icon-bolt {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 2 3 14h9l-1 8 10-12h-9l1-8z"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 2 3 14h9l-1 8 10-12h-9l1-8z"/></svg>');
}

.icon-bath {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 12c.3.5.7 1 1.2 1.4.3.4.8.8 1.3 1.1s1 .5 1.5.7l.5.2c.4.1.9.2 1.4.2s1-.1 1.4-.2l.5-.2c.5-.2 1-.4 1.5-.7s1-.7 1.3-1.1c.5-.4.9-.9 1.2-1.4"/><path d="M12 12.5a4 4 0 1 1-8 0 4 4 0 0 1 8 0z"/><path d="M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h11"/><path d="M18 11h4"/><path d="M18 15h4"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2 12c.3.5.7 1 1.2 1.4.3.4.8.8 1.3 1.1s1 .5 1.5.7l.5.2c.4.1.9.2 1.4.2s1-.1 1.4-.2l.5-.2c.5-.2 1-.4 1.5-.7s1-.7 1.3-1.1c.5-.4.9-.9 1.2-1.4"/><path d="M12 12.5a4 4 0 1 1-8 0 4 4 0 0 1 8 0z"/><path d="M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h11"/><path d="M18 11h4"/><path d="M18 15h4"/></svg>');
}

.icon-kitchen {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3h18"/><path d="M3 21h18"/><path d="M3 7v10"/><path d="M21 7v10"/><path d="M7 7v10"/><path d="M17 7v10"/><rect x="7" y="10" width="10" height="4"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3h18"/><path d="M3 21h18"/><path d="M3 7v10"/><path d="M21 7v10"/><path d="M7 7v10"/><path d="M17 7v10"/><rect x="7" y="10" width="10" height="4"/></svg>');
}

.icon-wall {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="2"/><path d="M3 9h18"/><path d="M3 15h18"/><path d="M9 3v18"/><path d="M15 3v18"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="2"/><path d="M3 9h18"/><path d="M3 15h18"/><path d="M9 3v18"/><path d="M15 3v18"/></svg>');
}

.icon-window {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="2"/><path d="M3 12h18"/><path d="M12 3v18"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="2"/><path d="M3 12h18"/><path d="M12 3v18"/></svg>');
}

.icon-paint {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m21 8-2 2-1.5-1.5L19 6.5l.5-.5 1.5 2Z"/><path d="M17.5 10c.2.3.4.6.6.9.3.2.5.5.7.8.2.3.4.7.5 1.1s.2.8.2 1.2c0 1.1-.4 2.1-1.2 2.9l-1.6 1.6-1.5-1.5-1.5-1.5 1.6-1.6c.8-.8 1.8-1.2 2.9-1.2.4 0 .8.1 1.2.2.4.1.8.3 1.1.5.3.2.6.4.8.7.3.3.6.5.9.6Z"/><path d="M10 21c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8Z"/><path d="M10 9c.6 0 1 .4 1 1"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m21 8-2 2-1.5-1.5L19 6.5l.5-.5 1.5 2Z"/><path d="M17.5 10c.2.3.4.6.6.9.3.2.5.5.7.8.2.3.4.7.5 1.1s.2.8.2 1.2c0 1.1-.4 2.1-1.2 2.9l-1.6 1.6-1.5-1.5-1.5-1.5 1.6-1.6c.8-.8 1.8-1.2 2.9-1.2.4 0 .8.1 1.2.2.4.1.8.3 1.1.5.3.2.6.4.8.7.3.3.6.5.9.6Z"/><path d="M10 21c4.4 0 8-3.6 8-8s-3.6-8-8-8-8 3.6-8 8 3.6 8 8 8Z"/><path d="M10 9c.6 0 1 .4 1 1"/></svg>');
}

.icon-air {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v4"/><path d="M12 18v4"/><path d="M4.9 4.9l2.8 2.8"/><path d="M16.3 16.3l2.8 2.8"/><path d="M2 12h4"/><path d="M18 12h4"/><path d="M4.9 19.1l2.8-2.8"/><path d="M16.3 7.7l2.8-2.8"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v4"/><path d="M12 18v4"/><path d="M4.9 4.9l2.8 2.8"/><path d="M16.3 16.3l2.8 2.8"/><path d="M2 12h4"/><path d="M18 12h4"/><path d="M4.9 19.1l2.8-2.8"/><path d="M16.3 7.7l2.8-2.8"/></svg>');
}

.icon-garden {
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22v-5"/><path d="M9 8V2"/><path d="M15 8V2"/><path d="M12 8V2"/><path d="M3 15h18"/><path d="M3 18h18"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22v-5"/><path d="M9 8V2"/><path d="M15 8V2"/><path d="M12 8V2"/><path d="M3 15h18"/><path d="M3 18h18"/></svg>');
}

.trade-glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.trade-glass-card ul {
    list-style: none;
    padding: 0;
}

.trade-glass-card li {
    font-size: 1rem;
    margin-bottom: 12px;
    opacity: 0.7;
    position: relative;
    padding-left: 20px;
    transition: opacity 0.3s ease;
}

.trade-glass-card li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.trade-glass-card:hover li {
    opacity: 1;
}

.trades-bottom-cta {
    margin-top: 60px;
    text-align: center;
}

.trades-bottom-cta p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.trades-bottom-cta a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.trades-bottom-cta a:hover {
    opacity: 0.8;
}

/* Trades mosaic grid styling below */

/* SECTION SEO - SPLIT CONTENT PREMIUM */
.seo-split-content {
    padding: 140px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.seo-bg-accent {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 60%;
    background: #f8fbff;
    border-radius: 100px;
    transform: rotate(-15deg);
    z-index: 0;
}

.split-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.seo-text-block .luxury-dash {
    background: var(--primary-gradient);
    margin-bottom: 25px;
}

.seo-text-block h2 {
    font-size: 3.2rem;
    margin-bottom: 35px;
    line-height: 1.15;
    font-weight: 300;
    color: var(--secondary-color);
}

.seo-text-block h2 strong {
    font-weight: 800;
}

.seo-text-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.seo-cta {
    margin-top: 45px;
}

.seo-image-block {
    position: relative;
}

.image-reveal-frame {
    position: relative;
    border-radius: 40px;
    padding: 15px;
    /* Décalage pour l'effet de cadre */
    z-index: 1;
}

.frame-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #f1f7fd;
    border-radius: 40px;
    z-index: 0;
}

.image-reveal-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow: 0 40px 80px rgba(0, 58, 110, 0.15);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-reveal-frame:hover img {
    transform: scale(1.02);
}

.experience-badge-premium {
    position: absolute;
    top: 50px;
    right: -40px;
    background: var(--white);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.experience-badge-premium .badge-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.experience-badge-premium .badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    line-height: 1.4;
}

/* SECTION FAQ PREMIUM */
.premium-faq {
    padding: 140px 0;
    background-color: #f8fbff;
}

.faq-accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.faq-question {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--secondary-color);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-toggle::before {
    width: 14px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 40px 30px 40px;
    display: none;
    border-top: 1px solid #f0f0f0;
    padding-top: 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FOOTER PREMIUM */
.premium-footer {
    background-color: #010a13;
    padding: 100px 0 0 0;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-brand .logo span {
    color: var(--white);
    opacity: 0.6;
}

.footer-brand p {
    font-size: 1.05rem;
    opacity: 0.6;
    margin-bottom: 30px;
    line-height: 1.6;
}

.trust-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--primary-color);
}

.contact-card-footer p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.contact-card-footer a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
}

.footer-legal {
    background-color: #000;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-flex p {
    font-size: 0.85rem;
    opacity: 0.5;
}

.legal-links {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 1;
}

/* Media queries moved to responsive.css for better performance and debugging */