/*
Theme Name: The7 Child - Boudra Clean
Theme URI: https://www.boudra-srl.be
Description: Thème enfant de The7 pour Boudra Clean — Entreprise de nettoyage écologique
Author: ND Solution
Author URI: https://www.boudra-srl.be
Template: dt-the7
Version: 1.0.7
Text Domain: dt-the7-child
*/

/* =============================================
   BOUDRA CLEAN — VARIABLES & COULEURS
   ============================================= */
:root {
    --bc-green:      #7DC143;   /* vert lime logo */
    --bc-green-dark: #5D9A28;
    --bc-pink:       #E8198B;   /* rose magenta logo */
    --bc-pink-dark:  #C0147A;
    --bc-dark:       #1A1A1A;
    --bc-white:      #FFFFFF;
    --bc-light:      #F5FAF0;
    --bc-gray:       #666666;
    --bc-border:     #E0E0E0;
    --bc-radius:     8px;
    --bc-shadow:     0 4px 20px rgba(0,0,0,0.08);
}

/* =============================================
   LOGO HEADER
   ============================================= */
#site-title img,
.masthead .logo img,
.masthead a > img:not(.mobile-logo) {
    max-width: 50% !important;
    height: auto !important;
    width: auto !important;
}

/* =============================================
   TYPOGRAPHIE GLOBALE
   ============================================= */
body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: var(--bc-dark);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: var(--bc-dark);
    line-height: 1.3;
}

a {
    color: var(--bc-green);
    transition: color 0.3s ease;
}
a:hover {
    color: var(--bc-green-dark);
}

/* =============================================
   HEADER
   ============================================= */
#header {
    background: var(--bc-white) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

#header .logo a,
#header .site-title a {
    color: var(--bc-dark) !important;
}

/* Navigation principale */
#header .sf-menu > li > a {
    color: var(--bc-dark) !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
#header .sf-menu > li > a:hover,
#header .sf-menu > li.current-menu-item > a {
    color: var(--bc-green) !important;
}

/* Bouton CTA header */
#header .menu-btn,
#header .the7-btn-primary {
    background: var(--bc-green) !important;
    color: var(--bc-white) !important;
    border-radius: var(--bc-radius);
    padding: 10px 24px !important;
}

/* =============================================
   BOUTONS GLOBAUX
   ============================================= */
.bc-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--bc-radius);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: none;
}

.bc-btn-primary {
    background: var(--bc-green);
    color: var(--bc-white) !important;
}
.bc-btn-primary:hover {
    background: var(--bc-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,160,90,0.35);
}

.bc-btn-outline {
    background: transparent;
    color: var(--bc-white) !important;
    border: 2px solid var(--bc-white);
}
.bc-btn-outline:hover {
    background: var(--bc-white);
    color: var(--bc-green) !important;
}

.bc-btn-pink {
    background: var(--bc-pink);
    color: var(--bc-white) !important;
}
.bc-btn-pink:hover {
    background: var(--bc-pink-dark);
    transform: translateY(-2px);
}

/* =============================================
   HERO SECTION — compact, couleurs logo
   ============================================= */
.bc-hero {
    position: relative;
    background: var(--bc-green);
    overflow: hidden;
    padding: 0;
}

/* Accent rose subtil en haut à droite */
.bc-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at top right, var(--bc-pink) 0%, transparent 65%);
    opacity: 0.2;
    z-index: 0;
}

.bc-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 32px;
    padding: 48px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Côté gauche : texte */
.bc-hero-left {
    padding-right: 16px;
}

.bc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    color: var(--bc-white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.25);
}

.bc-hero h1 {
    color: var(--bc-white) !important;
    font-size: clamp(24px, 2.8vw, 38px);
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: none;
}

.bc-hero h1 span {
    color: var(--bc-pink);
}

.bc-hero-left > p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 420px;
}

.bc-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.bc-hero-phones {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bc-hero-phone-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.bc-hero-phone-item:hover { color: var(--bc-green); }

/* Côté droit : services pills */
.bc-hero-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.bc-hero-service {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    color: var(--bc-white);
    transition: all 0.25s;
}
.bc-hero-service:hover {
    background: rgba(125,193,67,0.2);
    border-color: var(--bc-green);
    transform: translateY(-2px);
}

.bc-hero-service-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 6px;
}

.bc-hero-service-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.85);
}

/* Responsive */
@media (max-width: 768px) {
    .bc-hero::before { width: 100%; clip-path: none; }
    .bc-hero-content {
        grid-template-columns: 1fr;
        padding: 36px 20px;
        text-align: center;
    }
    .bc-hero-left > p { max-width: 100%; }
    .bc-hero-actions, .bc-hero-phones { justify-content: center; }
    .bc-hero-right { max-width: 280px; margin: 0 auto; }
}

/* =============================================
   BANDE DE CONFIANCE
   ============================================= */
.bc-trust-bar {
    background: var(--bc-dark);
    padding: 18px 0;
}

.bc-trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bc-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 600;
}

.bc-trust-item .icon {
    color: var(--bc-green);
    font-size: 18px;
}

/* =============================================
   SECTIONS GÉNÉRALES
   ============================================= */
.bc-section {
    padding: 80px 0;
}

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

.bc-section-dark {
    background: var(--bc-dark);
}

.bc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.bc-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.bc-section-header .bc-label {
    display: inline-block;
    color: var(--bc-green);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.bc-section-header h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    margin-bottom: 16px;
}

.bc-section-header p {
    color: var(--bc-gray);
    font-size: 16px;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =============================================
   CARDS SERVICES
   ============================================= */
.bc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.bc-service-card {
    background: var(--bc-white);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--bc-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--bc-border);
    position: relative;
    overflow: hidden;
}

.bc-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bc-green), var(--bc-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bc-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

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

.bc-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bc-green), var(--bc-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--bc-white);
    box-shadow: 0 8px 24px rgba(45,160,90,0.3);
}

.bc-service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--bc-dark);
}

.bc-service-card p {
    color: var(--bc-gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   SECTION POURQUOI NOUS
   ============================================= */
.bc-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.bc-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.bc-feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--bc-green), var(--bc-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bc-white);
    flex-shrink: 0;
}

.bc-feature-text h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.bc-feature-text p {
    color: var(--bc-gray);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   SECTION STATS
   ============================================= */
.bc-stats-section {
    background: linear-gradient(135deg, var(--bc-green) 0%, var(--bc-blue) 100%);
    padding: 60px 0;
}

.bc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    text-align: center;
}

.bc-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--bc-white);
    line-height: 1;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.bc-stat-label {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin-top: 8px;
    font-weight: 500;
    display: block;
}

/* =============================================
   SECTION CTA
   ============================================= */
.bc-cta-section {
    background: linear-gradient(135deg, var(--bc-dark) 0%, #2B3A30 100%);
    padding: 80px 0;
    text-align: center;
}

.bc-cta-section h2 {
    color: var(--bc-white) !important;
    font-size: clamp(26px, 3.5vw, 38px);
    margin-bottom: 16px;
}

.bc-cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.bc-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   SECTION CONTACT
   ============================================= */
.bc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 768px) {
    .bc-contact-grid {
        grid-template-columns: 1fr;
    }
}

.bc-contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--bc-green);
}

.bc-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--bc-light);
    border-radius: var(--bc-radius);
}

.bc-contact-item .icon {
    width: 48px;
    height: 48px;
    background: var(--bc-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bc-white);
    font-size: 20px;
    flex-shrink: 0;
}

.bc-contact-item-text strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bc-gray);
    margin-bottom: 2px;
}

.bc-contact-item-text a,
.bc-contact-item-text span {
    font-size: 16px;
    font-weight: 600;
    color: var(--bc-dark);
    text-decoration: none;
}

.bc-contact-item-text a:hover {
    color: var(--bc-green);
}

/* Formulaire CF7 customisé */
.bc-contact-form .wpcf7-form .wpcf7-text,
.bc-contact-form .wpcf7-form .wpcf7-textarea,
.bc-contact-form .wpcf7-form .wpcf7-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bc-border);
    border-radius: var(--bc-radius);
    font-size: 15px;
    transition: border-color 0.3s;
    background: var(--bc-white);
    font-family: inherit;
    box-sizing: border-box;
}

.bc-contact-form .wpcf7-form .wpcf7-text:focus,
.bc-contact-form .wpcf7-form .wpcf7-textarea:focus {
    border-color: var(--bc-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(45,160,90,0.1);
}

.bc-contact-form .wpcf7-form input[type="submit"] {
    background: var(--bc-green);
    color: var(--bc-white);
    padding: 14px 36px;
    border: none;
    border-radius: var(--bc-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.bc-contact-form .wpcf7-form input[type="submit"]:hover {
    background: var(--bc-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,160,90,0.35);
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
    background: var(--bc-dark) !important;
}

.bc-footer {
    background: var(--bc-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.bc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .bc-footer-grid {
        grid-template-columns: 1fr;
    }
}

.bc-footer h4 {
    color: var(--bc-white) !important;
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bc-green);
    display: inline-block;
}

.bc-footer p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.bc-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bc-footer ul li {
    margin-bottom: 10px;
}

.bc-footer ul li a {
    color: rgba(255,255,255,0.65) !important;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bc-footer ul li a:hover {
    color: var(--bc-green) !important;
}

.bc-footer ul li a::before {
    content: '›';
    color: var(--bc-green);
}

.bc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.bc-footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.bc-footer-bottom a {
    color: var(--bc-green) !important;
}

.bc-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

.bc-footer-contact-item a {
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none;
}
.bc-footer-contact-item a:hover {
    color: var(--bc-green) !important;
}

.bc-footer-contact-item .icon {
    color: var(--bc-green);
    font-size: 16px;
    flex-shrink: 0;
}

/* Numéro entreprise */
.bc-enterprise-number {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

/* =============================================
   PAGE SERVICES
   ============================================= */
.bc-section,
.bc-container {
    display: block !important;
    float: none;
}

.bc-service-detail-card {
    background: var(--bc-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--bc-shadow);
    margin-bottom: 32px;
    display: grid !important;
    grid-template-columns: 1fr 2fr;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: both;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.bc-service-detail-card:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.bc-service-detail-icon-area {
    background: linear-gradient(135deg, var(--bc-green) 0%, var(--bc-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--bc-white);
    padding: 40px;
    min-height: 180px;
}

.bc-service-detail-content {
    padding: 36px;
}

.bc-service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--bc-dark);
}

.bc-service-detail-content p {
    color: var(--bc-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.bc-service-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.bc-service-detail-content ul li {
    padding: 4px 0;
    color: var(--bc-gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-service-detail-content ul li::before {
    content: '✓';
    color: var(--bc-green);
    font-weight: 700;
}

@media (max-width: 640px) {
    .bc-service-detail-card {
        grid-template-columns: 1fr;
    }
    .bc-service-detail-icon-area {
        min-height: 120px;
        font-size: 48px;
    }
}

/* =============================================
   PAGE À PROPOS
   ============================================= */
.bc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .bc-about-grid {
        grid-template-columns: 1fr;
    }
}

.bc-about-image-wrapper {
    position: relative;
}

.bc-about-image-placeholder {
    background: linear-gradient(135deg, var(--bc-green) 0%, var(--bc-blue) 100%);
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.3);
    overflow: hidden;
}

.bc-about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bc-yellow);
    color: var(--bc-dark);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(245,180,0,0.4);
    line-height: 1.2;
}

.bc-about-content .bc-label {
    display: inline-block;
    color: var(--bc-green);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.bc-about-content h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 20px;
}

.bc-about-content p {
    color: var(--bc-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .bc-hero {
        min-height: 480px;
        padding: 60px 0;
    }
    .bc-hero-content {
        padding: 0 20px;
    }
    .bc-section {
        padding: 56px 0;
    }
    .bc-container {
        padding: 0 20px;
    }
    .bc-trust-bar-inner {
        padding: 0 20px;
        gap: 20px;
    }
    .bc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bc-services-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   UTILITAIRES
   ============================================= */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
