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

/* ==========================================================================
   1. VARIABLES & CONFIGURATION DE BASE
   ========================================================================== */
:root {
    --primary-color: #f4a51c;    /* Orange Toiture dynamique et chaleureux */
    --secondary-color: #1a2530;  /* Anthracite / Ardoise foncé haut de gamme */
    --light-bg: #f8fafc;         /* Fond gris très clair pour découper les sections */
    --text-color: #4a5568;       /* Gris lisible pour le corps de texte */
    --white: #ffffff;
    --urgent-color: #e53e3e;     /* Rouge alerte pour les interventions week-end */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Urbanist', sans-serif;
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

section {
    padding: 80px 0;
}

/* Subtitles de sections pro */
.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* ==========================================================================
   2. BOUTONS
   ========================================================================== */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-block {
    display: block;
    text-align: center;
}

/* ==========================================================================
   3. TOP BAR & NAVIGATION
   ========================================================================== */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info span {
    margin-right: 20px;
}

.top-bar-info i, .top-bar-cta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.main-header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary-color);
    text-transform: uppercase;
    line-height: 1;
}

.logo-sub {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu ul {
    display: flex;
}

.nav-menu ul li {
    margin: 0 15px;
}

.nav-menu ul li a {
    font-weight: 600;
    color: var(--secondary-color);
    padding: 5px 0;
    font-size: 15px;
}

.nav-menu ul li a.active, .nav-menu ul li a:hover {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.btn-phone {
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
}

.btn-phone i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 12px;
}

.phone-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-color);
}

.phone-number {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}

.burger-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.burger-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero-section {
    background: linear-gradient(rgba(26, 37, 48, 0.85), rgba(26, 37, 48, 0.85)), url('renovation_murs_exterieurs_et_facade.jpg') no-repeat center center/cover;
    padding: 140px 0;
    color: var(--white);
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 48px;
    line-height: 1.2;
    margin: 15px 0 25px 0;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #cbd5e1;
}

.badge {
    background-color: rgba(244, 165, 28, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.hero-actions .btn-primary {
    margin-right: 15px;
}

/* ==========================================================================
   5. BADGES & RÉASSURANCE
   ========================================================================== */
.badges-section {
    background-color: var(--white);
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.badge-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 4px solid var(--primary-color);
    transition: var(--transition);
}

.badge-card:hover {
    transform: translateY(-5px);
}

.badge-card i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.badge-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.badge-card p {
    font-size: 14px;
}

/* ==========================================================================
   6. A PROPOS
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img-placeholder {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('renovation_toiture.jpg') no-repeat center center/cover;
    height: 450px;
    border-radius: 8px;
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.exp-years {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
}

.about-list {
    margin-top: 25px;
}

.about-list li {
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.about-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

/* ==========================================================================
   7. SERVICES
   ========================================================================== */
.services-section {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.service-card:hover {
    background-color: var(--secondary-color);
    color: #a0aec0;
}

.service-card:hover h3 {
    color: var(--white);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(244, 165, 28, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Style spécifique carte Urgence */
.service-card.urgent {
    border: 2px dashed var(--urgent-color);
}
.service-card.urgent .service-icon {
    background-color: rgba(229, 62, 62, 0.1);
}
.service-card.urgent .service-icon i {
    color: var(--urgent-color);
}

/* ==========================================================================
   8. GARANTIES & METHODE
   ========================================================================== */
.guarantees-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.guarantee-item {
    display: flex;
    margin-top: 30px;
}

.guarantee-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-right: 20px;
}

.guarantee-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.guarantees-visual {
    background: linear-gradient(rgba(26, 37, 48, 0.9), rgba(26, 37, 48, 0.9)), url('pose_toiture_bac_acier.jpg');
    padding: 40px;
    border-radius: 8px;
    color: var(--white);
    text-align: center;
}

.cta-box-inside h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-box-inside p {
    margin-bottom: 25px;
    color: #a0aec0;
}

/* Processus */
.process-section {
    background-color: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    position: relative;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.step-number {
    font-size: 42px;
    font-weight: 800;
    color: rgba(244, 165, 28, 0.2);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-heading);
}

.step h4 {
    margin-bottom: 10px;
    margin-top: 15px;
}

/* ==========================================================================
   9. BON DE DEMANDE DE DEVIS
   ========================================================================== */
.quote-section {
    background: var(--white);
}

.quote-container-box {
    max-width: 850px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.quote-form {
    margin-top: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 14px;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    background-color: var(--white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: 2px solid var(--primary-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* ==========================================================================
   10. FOOTER & COMPOSANTS MOBILES
   ========================================================================== */
.main-footer {
    background-color: var(--secondary-color);
    color: #cbd5e1;
    padding: 60px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.7fr;
    gap: 40px;
    padding-bottom: 40px;
}

.main-footer h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-contacts p {
    margin-top: 15px;
}

.footer-contacts i {
    color: var(--primary-color);
    margin-right: 8px;
}

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

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.emergency-alert {
    background-color: rgba(229, 62, 62, 0.1);
    border-left: 4px solid var(--urgent-color);
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.emergency-alert i {
    color: var(--urgent-color);
    font-size: 24px;
    margin-right: 15px;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding: 20px 0;
    font-size: 13px;
}

/* Sticky Appels mobiles */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
}

.btn-mobile-call {
    display: block;
    background-color: var(--urgent-color);
    color: var(--white);
    text-align: center;
    padding: 18px 10px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* ==========================================================================
   11. MEDIA QUERIES (RESPONSIVE COMPLET)
   ========================================================================== */
@media (max-width: 992px) {
    .top-bar { display: none; }
    .header-phone-action { display: none; } /* On le masque ici car on met en avant le bouton d'appel mobile global */
    
    .burger-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
    }

    .nav-menu ul li {
        margin: 15px 0;
    }

    /* Changement d'état burger icon */
    .burger-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .burger-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .burger-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .about-grid, .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero-content h1 { font-size: 32px; }
    .quote-container-box { padding: 25px 15px; }
    
    /* Affichage de la barre d'appel collante sur smartphone uniquement */
    .mobile-sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 60px; /* Évite la superposition sur le footer */
    }
}
iframe {
	display: block
}
.no-link {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none;
}