@charset "UTF-8";
/* CSS Document */

/* ==========================================================================
   VARIABLES GLOBALES ET THÈME DU SITE (Couleurs imposées)
   ========================================================================== */
:root {
    --color-black: #000000;
    --color-black-accent: #0f1215;
    --color-blue-gray: #48688b;
    --color-orange: #fa8319;
    --color-white: #FFFFFF;
    --color-gray-muted: #cccccc;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base et Reset Anti-Débordement Horizontal */
* {
    box-sizing: border-box;
}

body {
    background-color: var(--color-black);
    font-family: var(--font-primary);
    color: var(--color-white);
    overflow-x: hidden !important;
    width: 100%;
}

.text-orange { color: var(--color-orange); }
.bg-black-2 { background-color: var(--color-black-accent); }
.section-space { padding: 90px 0; }
.section-space-medium { padding: 60px 0; }

.accent-line {
    width: 70px;
    height: 4px;
    background-color: var(--color-orange);
    margin-top: 15px;
    border-radius: 2px;
}

/* ==========================================================================
   HEADER-STICKY & MENUS DYNAMIQUES
   ========================================================================== */
header {
    position: relative;
    z-index: 1000;
    width: 100%;
}

.header-area {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
    width: 100%;
}

/* Mode Sticky Déclenché en Scroll */
.header-area.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.company-title {
    color: var(--color-white);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: var(--transition-smooth);
}

.main-menu nav ul li a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 0;
    display: inline-block;
    position: relative;
    transition: var(--transition-smooth);
}

.main-menu nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-orange);
    transition: var(--transition-smooth);
}

.main-menu nav ul li a:hover::after {
    width: 100%;
}

.main-menu nav ul li a:hover {
    color: var(--color-orange);
}

.icon-box {
    background: rgba(250, 131, 25, 0.15);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Trigger */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
}

.hamburger-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hamburger-btn:hover span:nth-child(2) {
    transform: translateX(4px);
    background-color: var(--color-orange);
}

/* Offcanvas Menu Mobile */
.mobile-side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--color-black-accent);
    z-index: 2000;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.mobile-side-menu.open {
    right: 0;
}

.close-icon {
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-icon:hover {
    transform: rotate(90deg);
    color: var(--color-orange);
}

.mobile-nav-links ul li a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Bandeau Rouge / Orangé vif Mobile pour le numéro demandé */
.phone-mobile-bandeau {
    background: linear-gradient(90deg, #d32f2f, #b71c1c);
    width: 100%;
}

.phone-mobile-bandeau a:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   HERO SECTION ET BOUTONS SPÉCIFIQUES
   ========================================================================== */
.hero-section {
    min-height: 85vh;
    width: 100%;
    position: relative;
}

/* Style requis : Bouton de téléphone fond rouge, police blanche sous h1 */
.btn-hero-phone {
    background: linear-gradient(135deg, #d32f2f 0%, #9a0007 100%);
    color: var(--color-white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.25rem;
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
    transition: var(--transition-smooth);
    border: 2px solid rgba(255,255,255,0.1);
}

.btn-hero-phone:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(211, 47, 47, 0.6);
    color: var(--color-white);
}

.btn-orange {
    background-color: var(--color-orange);
    color: var(--color-white);
    border: none;
    transition: var(--transition-smooth);
}

.btn-orange:hover {
    background-color: #df7110;
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   CARDS DE PRESTATIONS ET GLOW EFFECT
   ========================================================================== */
.service-card-custom {
    background-color: var(--color-black-accent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card-custom .image-wrapper {
    overflow: hidden;
    position: relative;
    height: 220px;
}

.service-card-custom .image-wrapper img {
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card-custom:hover {
    transform: translateY(-10px);
    border-color: var(--color-blue-gray);
    box-shadow: 0 15px 35px rgba(72, 104, 139, 0.2);
}

.service-card-custom:hover .image-wrapper img {
    transform: scale(1.1);
}

/* ==========================================================================
   PLUGIN D'IMAGE AVANT / APRÈS (Style Essential Blocks)
   ========================================================================== */
.eb-image-comparison-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 16px;
    border: 3px solid rgba(255,255,255,0.1);
    user-select: none;
}

.eb-image-comparison-container .img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.eb-image-comparison-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eb-image-comparison-container .after-image {
    width: 50%; /* Position par défaut au milieu */
    border-right: 2px solid var(--color-orange);
}

.label-tag {
    position: absolute;
    bottom: 20px;
    padding: 6px 14px;
    background-color: rgba(0, 0, 0, 0.75);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 10;
}

.label-after { right: 20px; border-left: 3px solid var(--color-blue-gray); }
.label-before { left: 20px; border-left: 3px solid var(--color-orange); }

/* Curseur central Coulissant */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--color-orange);
    cursor: ew-resize;
    z-index: 20;
    transform: translateX(-50%);
}

.handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 44px;
    height: 44px;
    background-color: var(--color-orange);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* ==========================================================================
   ACCORDÉON TECHNIQUE INTERACTIF
   ========================================================================== */
.eb-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.eb-accordion-item {
    background-color: var(--color-black-accent);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.eb-accordion-title-wrapper {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    outline: none;
}

.eb-accordion-title-wrapper:hover, .eb-accordion-item.active {
    background-color: rgba(72, 104, 139, 0.08);
}

.eb-accordion-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0;
    padding-right: 15px;
}

.eb-accordion-item.active .eb-accordion-title {
    color: var(--color-orange);
}

.eb-accordion-content-wrapper {
    padding: 0 20px 20px 20px;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.03);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   FORMULAIRE DE CONTACT ET RECAPTCHA
   ========================================================================== */
.quote-form-box {
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.quote-form-box .form-control, .quote-form-box .form-select {
    padding: 14px;
    border-radius: 6px;
}

.quote-form-box .form-control:focus, .quote-form-box .form-select:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 8px rgba(250, 131, 25, 0.25);
    background-color: rgba(0,0,0,0.8);
}
/* Ciblage strict des placeholders du formulaire de devis */
#quoteForm .form-control::placeholder {
    color: #aaaaaa !important;
    opacity: 1 !important; /* Requis pour Firefox qui applique une opacité par défaut */
}

/* Compatibilité complète pour les anciens navigateurs */
#quoteForm .form-control::-webkit-input-placeholder {
    color: #aaaaaa !important;
}

#quoteForm .form-control::-moz-placeholder {
    color: #aaaaaa !important;
    opacity: 1 !important;
}

#quoteForm .form-control:-ms-input-placeholder {
    color: #aaaaaa !important;
}

#quoteForm .form-control::-ms-input-placeholder {
    color: #aaaaaa !important;
}

/* ==========================================================================
   FOOTER GALLERY & LIGHTBOX ZOOM MODAL
   ========================================================================== */
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-orange);
}

.gallery-item-wrapper {
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 4px;
}

.gallery-zoom-img {
    transition: var(--transition-smooth);
}

.gallery-zoom-img:hover {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1);
}

/* Lightbox Structure */
.custom-lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.custom-lightbox-content {
    max-width: 85%;
    max-height: 80%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
    animation: zoomAnimation 0.3s ease;
}

@keyframes zoomAnimation {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.custom-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-white);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

/* ==========================================================================
   MEDIA QUERIES - GARANTIE ZÉRO COMPORTEMENT ADVERSE HORIZONTAL
   ========================================================================== */
@media (max-width: 991.98px) {
    .section-space { padding: 60px 0; }
    .eb-image-comparison-container { height: 320px; }
    .company-title { font-size: 1.15rem; }
}

@media (max-width: 575.98px) {
    .display-3 { font-size: 1.85rem !important; }
    .btn-hero-phone {
        font-size: 0.95rem;
        padding: 14px 20px;
        width: 100%;
        justify-content: center;
    }
    .eb-image-comparison-container { height: 240px; }
    .eb-accordion-title { font-size: 0.95rem; }
}
iframe {
	display: block
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}