/******************************************
 * UNIT Multiservice - style.css
 * Architecture basee sur Weldork
 * Couleurs : Orange #FF6600, Bleu #0057B8, Noir #0A0A0A
 * Polices  : Calibri (corps), Times New Roman (titres)
 ******************************************/

/* ---- Variables couleurs Bootstrap override ---- */
:root {
    --bs-primary:        #FF6600;
    --bs-primary-rgb:    255, 102, 0;
    --bs-secondary:      #888888;
    --bs-dark:           #0A0A0A;
    --bs-dark-rgb:       10, 10, 10;
    --bs-light:          #F5F5F5;
    --blue:              #0057B8;
    --blue-dark:         #003A7A;
    --orange:            #FF6600;
    --orange-dark:       #E05500;
    --font-title:        'Times New Roman', 'Libre Baskerville', Georgia, serif;
    --font-body:         'Calibri', 'Barlow', Arial, sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: #444;
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-title);
    color: #0A0A0A;
}

a { transition: .3s; }

/* ---- Spacing helpers ---- */
.mt-6  { margin-top:  5rem; }
.mb-6  { margin-bottom: 5rem; }
.pt-6  { padding-top: 5rem; }
.pb-6  { padding-bottom: 5rem; }
.fw-medium { font-weight: 600; }

/* ---- Bootstrap primary color patch ---- */
.bg-primary              { background-color: var(--orange) !important; }
.text-primary            { color: var(--orange) !important; }
.border-primary          { border-color: var(--orange) !important; }
.btn-primary             { background-color: var(--orange); border-color: var(--orange); color: #fff; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; transition: .4s; }
.btn-primary:hover       { background-color: var(--orange-dark); border-color: var(--orange-dark); color: #fff; }
.btn-outline-primary     { border-color: var(--orange); color: var(--orange); font-weight: 700; text-transform: uppercase; transition: .4s; }
.btn-outline-primary:hover { background-color: var(--orange); color: #fff; }
.btn-dark                { background-color: #0A0A0A; border-color: #0A0A0A; transition: .4s; }
.btn-dark:hover          { background-color: var(--orange); border-color: var(--orange); }


/* ==========================================
   SPINNER
   ========================================== */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
#spinner .spinner-border { color: var(--orange) !important; }


/* ==========================================
   BOUTONS CARRES
   ========================================== */
.btn { transition: .5s; font-weight: 600; }
.btn-primary, .btn-outline-primary:hover { color: #fff; }
.btn-secondary, .btn-outline-secondary:hover { color: var(--bs-dark); }
.btn-square     { width: 38px; height: 38px; }
.btn-sm-square  { width: 32px; height: 32px; }
.btn-lg-square  { width: 48px; height: 48px; }
.btn-xl-square  { width: 60px; height: 60px; }
.btn-xxl-square { width: 75px; height: 75px; }
.btn-square, .btn-sm-square, .btn-lg-square, .btn-xl-square, .btn-xxl-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0;
}


/* ==========================================
   TOPBAR
   ========================================== */
.topbar {
    background: #0A0A0A;
    border-bottom: 2px solid var(--orange);
}
.topbar small { font-family: var(--font-body); font-size: 13px; }
.topbar .btn-sm-square {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
}
.topbar .btn-sm-square:hover { background: var(--orange); border-color: var(--orange); color: #fff; }


/* ==========================================
   NAVBAR
   ========================================== */
.sticky-top {
    top: -100px;
    transition: .5s;
}
.navbar {
    background: #fff !important;
    border-bottom: 1px solid #eee;
}
.navbar-brand .logo-mark {
    width: 44px; height: 44px;
    background: var(--orange);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-title);
    font-size: 20px; font-weight: 700; color: #fff;
    border-radius: 2px;
    flex-shrink: 0;
}
.navbar-brand .logo-name {
    font-family: var(--font-title);
    font-size: 19px; font-weight: 700; color: #0A0A0A;
    display: block; line-height: 1.1;
}
.navbar-brand .logo-sub {
    font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #999;
    display: block;
}
.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #0A0A0A;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .05em;
    font-family: var(--font-body);
    outline: none;
    transition: color .3s;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active { color: var(--orange); }

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link { margin-right: 0; padding: 10px 0; }
    .navbar .navbar-nav { margin-top: 15px; border-top: 1px solid #eee; }
}
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block; border: none; margin-top: 0; top: 150%;
        opacity: 0; visibility: hidden; transition: .5s; border-radius: 0;
    }
    .navbar .nav-item:hover .dropdown-menu { top: 100%; visibility: visible; opacity: 1; }
}


/* ==========================================
   CAROUSEL HERO - style Weldork
   ========================================== */
.carousel .carousel-caption {
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    background: rgba(0,0,0,.75);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}
.carousel .carousel-caption h1 {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 5vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.carousel .carousel-caption .caption-sub {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255,255,255,.7);
    margin-bottom: 28px;
    font-style: italic;
}
.carousel .carousel-caption .caption-label {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 1px;
    margin-bottom: 18px;
}

/* Indicateurs image a gauche - signature Weldork */
.carousel .carousel-indicators {
    top: 0; bottom: 0; left: 0; right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}
.carousel .carousel-indicators [data-bs-target] {
    width: 70px; height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 2px solid rgba(255,255,255,.3);
    overflow: hidden;
    transition: border-color .3s;
    border-radius: 2px;
    opacity: .7;
}
.carousel .carousel-indicators [data-bs-target].active { border-color: var(--orange); opacity: 1; }
.carousel .carousel-indicators [data-bs-target] img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 992px) {
    .carousel .carousel-item { position: relative; min-height: 600px; }
    .carousel .carousel-item img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
    .carousel .carousel-indicators [data-bs-target] { width: 60px; height: 60px; }
    .carousel .carousel-caption { padding-left: 10rem; }
}
@media (max-width: 768px) {
    .carousel .carousel-item { min-height: 500px; }
    .carousel .carousel-indicators [data-bs-target] { width: 48px; height: 48px; }
    .carousel .carousel-caption { padding-left: 9rem; }
    .carousel .carousel-caption h1 { font-size: 2rem; }
}


/* ==========================================
   PAGE HEADER (pages internes)
   ========================================== */
.page-header {
    background: linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    padding: 60px 0;
    border-bottom: 3px solid var(--orange);
}
.page-header h1 { font-family: var(--font-title); color: #fff; font-size: clamp(28px, 4vw, 48px); }
.page-header .breadcrumb-item a { color: var(--orange); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,.6); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }


/* ==========================================
   STATS BAND
   ========================================== */
.stats-band {
    background: var(--orange);
}
.stats-band .stat-num {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.stats-band .stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.8);
    font-family: var(--font-body);
    font-weight: 600;
}
.stats-band .stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,.3);
}


/* ==========================================
   ABOUT - image avec cadre animé Weldork
   ========================================== */
.about-img {
    position: relative;
    padding-left: 45px;
}
.about-img::before {
    position: absolute;
    content: "";
    width: 200px; height: 300px;
    top: 0; left: 0;
    border: 5px solid var(--orange);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}
@keyframes animateUpDown {
    0%   { top: -25px; }
    50%  { top: -45px; }
    100% { top: -25px; }
}

.about-img .about-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #0A0A0A;
    color: #fff;
    padding: 20px 24px;
    border-left: 4px solid var(--orange);
    z-index: 2;
}
.about-img .about-badge .badge-num {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    display: block;
}
.about-img .about-badge .badge-txt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.6);
    display: block;
}

.about-check { font-family: var(--font-body); }
.about-check i { color: var(--orange); }

.about-quote {
    border: 4px solid var(--orange);
    padding: 20px 24px;
    text-align: center;
}
.about-quote h5 {
    font-family: var(--font-title);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0;
    color: #0A0A0A;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.about-feature .feat-icon {
    width: 60px; height: 60px;
    background: #f5f5f5;
    display: flex; align-items: center; justify-content: center;
    border-radius: 2px;
    flex-shrink: 0;
    color: var(--orange);
    font-size: 24px;
}


/* ==========================================
   SERVICES - effet de remplissage Weldork
   ========================================== */
.service { background: #f5f5f5; }

.service .service-item {
    position: relative;
    margin-top: 45px;
}
.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0,0,0,.07);
    transition: .3s;
}
.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%; height: 0;
    left: 0; bottom: 0;
    transition: .7s;
    background: #0A0A0A;
}
.service .service-inner:hover::before { height: 100%; top: 0; }

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
    position: relative;
    z-index: 1;
}
.service .service-item * { position: relative; transition: .5s; z-index: 1; }

.service .service-inner .service-text { padding: 0 28px 16px; }
.service .service-inner .service-text h5 {
    font-family: var(--font-title);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin-bottom: 8px;
}
.service .service-inner .service-text p { font-size: 14px; color: #666; line-height: 1.65; }

.service .service-item:hover .service-text h5,
.service .service-item:hover .service-text p { color: #fff; }

.service .service-item:hover a {
    padding-left: 40px !important;
    background: var(--orange) !important;
    color: #fff !important;
}
.service .service-inner a.btn-light {
    background: #f5f5f5;
    border: none;
    color: #0A0A0A;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 0;
    transition: .5s;
}


/* ==========================================
   CATALOGUE SECTION
   ========================================== */
.catalogue-section { background: #fff; }

.search-filter-bar {
    background: #0A0A0A;
    padding: 20px 24px;
    border-radius: 2px;
    margin-bottom: 40px;
}
.search-filter-bar input {
    border-radius: 0;
    border: none;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 14px;
}
.search-filter-bar input:focus { box-shadow: none; border-bottom: 2px solid var(--orange); }
.filter-btn {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.7);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-family: var(--font-body);
    border-radius: 0;
    cursor: pointer;
    transition: .3s;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.category-header-line {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 3px solid #f0f0f0;
}
.category-header-line .cat-icon {
    width: 42px; height: 42px;
    background: #0A0A0A;
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 18px;
    border-radius: 2px;
    flex-shrink: 0;
}
.category-header-line h3 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}
.category-header-line .cat-count {
    margin-left: auto;
    font-size: 12px;
    color: #aaa;
    background: #f5f5f5;
    padding: 3px 10px;
    border-radius: 2px;
}

/* Produit card dans catalogue */
.product-card-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 2px;
    overflow: hidden;
    transition: .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.product-card-item:hover {
    border-color: var(--orange);
    box-shadow: 0 6px 30px rgba(255,102,0,.12);
    transform: translateY(-4px);
}
.product-card-item .product-img {
    height: 150px;
    background: #f5f5f5;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    border-bottom: 2px solid #f0f0f0;
    transition: .3s;
}
.product-card-item:hover .product-img { border-color: var(--orange); }
.product-card-item .product-img i { font-size: 3rem; color: #ccc; transition: .3s; }
.product-card-item:hover .product-img i { color: var(--orange); }
.product-card-item .product-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card-item .product-name {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #0A0A0A;
}
.product-card-item .product-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}
.product-card-item .product-action {
    display: block;
    width: 100%;
    padding: 9px;
    background: #0A0A0A;
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    transition: .4s;
    text-align: center;
    border-radius: 0;
}
.product-card-item .product-action:hover { background: var(--orange); }


/* ==========================================
   ABOUT PAGE - VALEURS
   ========================================== */
.valeur-card {
    padding: 28px 24px;
    border: 1px solid #eee;
    border-top: 4px solid var(--orange);
    background: #fff;
    transition: .3s;
    height: 100%;
}
.valeur-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,.08);
    transform: translateY(-3px);
}
.valeur-card i { font-size: 2rem; color: var(--orange); margin-bottom: 14px; display: block; }
.valeur-card h5 { font-family: var(--font-title); font-weight: 700; text-transform: uppercase; font-size: 15px; margin-bottom: 10px; }
.valeur-card p { font-size: 14px; color: #888; line-height: 1.65; margin: 0; }

.pillar-item {
    padding-left: 18px;
    border-left: 4px solid var(--orange);
    margin-bottom: 24px;
}
.pillar-item h6 { font-family: var(--font-title); font-weight: 700; text-transform: uppercase; font-size: 14px; margin-bottom: 4px; }
.pillar-item p { font-size: 14px; color: #888; margin: 0; line-height: 1.6; }


/* ==========================================
   PORTFOLIO
   ========================================== */
.portfolio-section { background: #f5f5f5; }

.portfolio-item {
    background: #fff;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 2px;
    transition: .3s;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.portfolio-item:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,.12);
    transform: translateY(-4px);
    border-color: var(--orange);
}
.portfolio-item .port-img {
    height: 220px;
    background: linear-gradient(135deg, #0A0A0A, #1a1a2e);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.portfolio-item .port-img i { font-size: 3.5rem; color: rgba(255,255,255,.15); transition: .3s; }
.portfolio-item:hover .port-img i { color: var(--orange); }
.portfolio-item .port-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 1px;
}
.portfolio-item .port-info {
    padding: 18px 20px;
}
.portfolio-item .port-info h5 {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}
.portfolio-item .port-info small { font-size: 12px; color: #aaa; }


/* ==========================================
   TEAM
   ========================================== */
.team { background: #0A0A0A; }

.team .team-item {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,.08);
    transition: .3s;
}
.team .team-item:hover { border-color: var(--orange); }
.team .team-item .team-social {
    position: absolute;
    width: 0; height: 100%;
    top: 0; right: 0;
    transition: .5s;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    gap: 8px;
}
.team .team-item:hover .team-social { width: 100%; left: 0; }
.team .team-item .team-social .btn { opacity: 0; transition: .5s; }
.team .team-item:hover .team-social .btn { opacity: 1; }
.team .team-item .text-center h5 { color: #fff; font-family: var(--font-title); }
.team .team-item .text-center span { color: rgba(255,255,255,.5); font-size: 13px; }
.team .team-avatar {
    width: 100%; height: 200px;
    background: linear-gradient(135deg, #111, #1e1e1e);
    display: flex; align-items: center; justify-content: center;
}
.team .team-avatar i { font-size: 4rem; color: rgba(255,255,255,.1); }


/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section { background: #fff; }

.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}
.testimonial-img div {
    position: absolute;
    width: 100px; height: 100px;
    animation-duration: 5s;
}
.testimonial-img div:nth-child(1) { top: 10%;  left: 10%;  animation-delay: .1s; }
.testimonial-img div:nth-child(2) { top: 60%;  left: 20%;  animation-delay: .4s; }
.testimonial-img div:nth-child(3) { top: 20%;  left: 60%;  animation-delay: .7s; }
.testimonial-img div:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 1s; }
.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px; right: -1px; bottom: -1px; left: -1px;
    box-shadow: 0 0 10px 10px #fff inset;
    z-index: 1;
}
.testimonial-img div img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}

.testimonial-carousel .owl-item img { width: 80px; height: 80px; border-radius: 50%; }
.testimonial-carousel .owl-nav { margin-top: 15px; display: flex; }
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--orange);
    font-size: 45px;
    transition: .5s;
}
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover { color: #0A0A0A; }

.testimonial-item { font-family: var(--font-body); }
.testimonial-item .stars i { color: var(--orange); font-size: 14px; }
.testimonial-item h5 {
    font-family: var(--font-title);
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.testimonial-item span { font-size: 13px; color: #aaa; }
.testimonial-item p { font-size: 15px; color: #555; line-height: 1.7; font-style: italic; }


/* ==========================================
   FAQ
   ========================================== */
.faq-section { background: #f5f5f5; }

.accordion-button {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 700;
    color: #0A0A0A;
    background: #fff;
    border-radius: 0 !important;
}
.accordion-button:not(.collapsed) {
    background: #0A0A0A;
    color: #fff;
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after { filter: invert(1); }
.accordion-button:focus { box-shadow: none; border-color: var(--orange); }
.accordion-item { border-radius: 0 !important; border-color: #eee; margin-bottom: 8px; }
.accordion-body { font-size: 15px; color: #666; line-height: 1.75; background: #fff; }


/* ==========================================
   CONTACT - fond image style Weldork
   ========================================== */
.contact-page {
    background: linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.8)), url(../img/carousel-3.jpg) center no-repeat;
    background-size: cover;
}
.contact-info-box {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: .3s;
}
.contact-info-box:hover { background: rgba(255,255,255,.1); border-color: var(--orange); }
.contact-info-box .ci-icon {
    width: 44px; height: 44px;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    border-radius: 0;
}
.contact-info-box .ci-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.4);
    display: block;
    margin-bottom: 3px;
    font-family: var(--font-body);
}
.contact-info-box .ci-value {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

.call-now-btn {
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    transition: .4s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    border-radius: 0;
}
.call-now-btn:hover { background: #fff; color: var(--orange); }

.contact-form-box { background: #fff; padding: 36px; }
.contact-form-box h4 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}
.form-control, .form-select {
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 14px;
    border-color: #e0e0e0;
    padding: 11px 14px;
}
.form-control:focus, .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,102,0,.1);
}
.form-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #555; font-family: var(--font-body); }

.upload-zone {
    border: 2px dashed #ddd;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    background: #fafafa;
    border-radius: 0;
}
.upload-zone:hover { border-color: var(--orange); background: rgba(255,102,0,.03); }
.upload-zone.dragover { border-color: var(--orange); background: rgba(255,102,0,.05); }
.upload-zone i { font-size: 2rem; color: #ccc; margin-bottom: 8px; display: block; }
.upload-zone p { font-size: 13px; color: #888; margin: 0; }
.upload-zone span.link { color: var(--blue); font-weight: 600; cursor: pointer; }

.file-item {
    display: flex; align-items: center; gap: 10px;
    background: #f5f5f5;
    padding: 8px 12px;
    margin-top: 6px;
    font-size: 13px;
}
.file-item .fname { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-item .fsize { color: #aaa; font-size: 12px; }
.file-item .fremove { background: none; border: none; cursor: pointer; color: #ccc; padding: 0; transition: .3s; }
.file-item .fremove:hover { color: #c00; }

.submit-btn {
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    transition: .4s;
    border-radius: 0;
}
.submit-btn:hover { background: #0A0A0A; }

.map-frame { border: none; width: 100%; height: 280px; display: block; }

.form-success-msg {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success-msg i { font-size: 4rem; color: var(--orange); margin-bottom: 16px; }
.form-success-msg h4 { font-family: var(--font-title); margin-bottom: 10px; }
.form-success-msg p { color: #888; font-size: 14px; }


/* ==========================================
   NEWSLETTER - style Weldork
   ========================================== */
.newsletter-section {
    background: linear-gradient(rgba(0,0,0,.82), rgba(0,0,0,.82)), url(../img/carousel-2.jpg) center no-repeat;
    background-size: cover;
}
.newsletter-inner {
    background: #fff;
    padding: 40px 48px;
}
.newsletter-inner h3 {
    font-family: var(--font-title);
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 700;
}
.newsletter-inner .form-control { border-radius: 0; border: 1px solid #e0e0e0; }
.newsletter-inner .btn-primary { border-radius: 0; padding: 12px 28px; }


/* ==========================================
   FOOTER - style Weldork dark
   ========================================== */
footer {
    background: #0A0A0A;
}
.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
footer h5 {
    font-family: var(--font-title);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}
.footer-logo-block .logo-mark {
    width: 44px; height: 44px;
    background: var(--orange);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-title); font-size: 20px; font-weight: 700; color: #fff;
    border-radius: 2px;
}
.footer-logo-block .logo-name { font-family: var(--font-title); font-size: 18px; color: #fff; font-weight: 700; }
.footer-logo-block p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.7; }

.footer-contact p { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 8px; }
.footer-contact i { color: var(--orange); width: 18px; }

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,.5);
    margin-bottom: 8px;
    transition: .3s;
    font-family: var(--font-body);
    padding-left: 14px;
    position: relative;
}
.footer-links a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--orange);
    position: absolute;
    left: 0;
}
.footer-links a:hover { color: var(--orange); padding-left: 18px; }

.footer-gallery .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.footer-gallery .gallery-grid img { width: 100%; height: 60px; object-fit: cover; opacity: .6; transition: .3s; }
.footer-gallery .gallery-grid img:hover { opacity: 1; }

.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6);
    border-radius: 0;
    margin-right: 6px;
    transition: .3s;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer-bottom {
    background: #050505;
    padding: 16px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.3); transition: .3s; }
.footer-bottom a:hover { color: var(--orange); }

/* Horaires footer */
.biz-hours p { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 4px; font-family: var(--font-body); }
.biz-hours strong { color: rgba(255,255,255,.7); text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }


/* ==========================================
   BACK TO TOP & WHATSAPP
   ========================================== */
.back-to-top {
    position: fixed;
    display: none;
    right: 90px;
    bottom: 28px;
    z-index: 99;
    background: #0A0A0A;
    border: none;
    border-radius: 0;
    width: 44px; height: 44px;
    color: #fff;
    font-size: 16px;
    transition: .3s;
}
.back-to-top:hover { background: var(--orange); color: #fff; }

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99;
    width: 54px; height: 54px;
    background: #25D366;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.whatsapp-float i { font-size: 24px; color: #fff; }


/* ==========================================
   SECTION LABEL & TITRES
   ========================================== */
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

/* ==========================================
   MODAL ADMIN
   ========================================== */
.modal-header { border-bottom: 2px solid var(--orange); }
.modal-title { font-family: var(--font-title); font-size: 18px; font-weight: 700; }
.modal .btn-close:focus { box-shadow: none; }
.admin-table th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #aaa;
    font-family: var(--font-body);
    font-weight: 700;
    border-bottom: 2px solid #f0f0f0;
}
.admin-table td { font-size: 13px; vertical-align: middle; }
.admin-table tr:hover td { background: #fafafa; }
.status-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.status-active { background: rgba(255,102,0,.1); color: var(--orange); }
.status-inactive { background: #f5f5f5; color: #aaa; }

/* ==========================================
   NOTIFICATION TOAST
   ========================================== */
.toast-notif {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 9999;
    background: #0A0A0A;
    color: #fff;
    padding: 14px 20px;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transform: translateX(130%);
    transition: transform .3s ease;
    max-width: 280px;
    border-left: 4px solid var(--orange);
    font-family: var(--font-body);
}
.toast-notif.show { transform: translateX(0); }


/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .topbar { display: none !important; }
    .stats-band .stat-divider { display: none; }
    .about-img { padding-left: 20px; }
    .about-img::before { width: 120px; height: 180px; }
    .about-img .about-badge { right: 0; }
    .contact-form-box { padding: 24px 20px; }
    .newsletter-inner { padding: 24px; }
    .footer-top { padding: 40px 0; }
}
