/* =====================================================
   STYLE.CSS — NP Toiture v2 — toiture-bastogne.be
   Design premium · Bleu nuit + Or · Inter
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy:         #1e3a8a;
  --navy-mid:     #1e40af;
  --blue:         #2563EB;
  --blue-mid:     #3B82F6;
  --blue-light:   #D6E4F0;
  --blue-bg:      #F0F7FF;
  --gold:         #F0A500;
  --gold-dark:    #CC8C00;
  --gold-light:   #FFF8E6;
  --red:          #C0392B;
  --red-dark:     #922B21;
  --green:        #1E8449;
  --white:        #FFFFFF;
  --gray-light:   #F5F7FA;
  --gray-border:  #E2E8F0;
  --text:         #1A1A1A;
  --text-muted:   #64748B;
  --font:         'Inter', 'Segoe UI', Arial, sans-serif;
  --max-width:    1200px;
  --header-h:     76px;
  --r-sm:   6px;  --r-md:  12px;  --r-lg:  20px;  --r-full: 999px;
  --shadow-sm:  0 1px 4px rgba(10,22,40,0.08);
  --shadow-md:  0 4px 20px rgba(10,22,40,0.12);
  --shadow-lg:  0 8px 40px rgba(10,22,40,0.18);
  --shadow-xl:  0 16px 60px rgba(10,22,40,0.24);
  --shadow-gold: 0 4px 24px rgba(240,165,0,0.35);
  --t-fast: 0.15s ease;  --t-mid: 0.3s ease;  --t-slow: 0.5s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1,h2,h3,h4,h5,h6 { font-weight: 800; line-height: 1.15; color: var(--navy); letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { margin-bottom: 1rem; line-height: 1.7; }
p:last-child { margin-bottom: 0; }
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }
.text-gold   { color: var(--gold); }

.container  { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--navy); }
.section-gray { background: var(--gray-light); }
.section-blue { background: var(--blue-bg); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p  { color: rgba(255,255,255,0.7); }

.label-top { display: inline-flex; align-items: center; gap: 6px; background: var(--gold-light); color: var(--gold-dark); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--r-full); margin-bottom: 16px; }
.label-top.light { background: rgba(240,165,0,0.15); color: var(--gold); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }

/* BOUTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--r-md); font-family: var(--font); font-weight: 700; font-size: 1rem; cursor: pointer; border: 2px solid transparent; text-align: center; transition: all var(--t-mid); white-space: nowrap; text-decoration: none; position: relative; overflow: hidden; }

.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary::after { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent); animation: shimmer 3s ease-in-out infinite; }
@keyframes shimmer { 0% { left: -100%; } 50%, 100% { left: 150%; } }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }

.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-urgence { background: var(--red); color: var(--white); border-color: var(--red); animation: pulse-red 2.5s ease-in-out infinite; }
.btn-urgence:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 4px 24px rgba(192,57,43,0.4); animation: none; }
@keyframes pulse-red { 0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); } 50% { box-shadow: 0 0 0 8px rgba(192,57,43,0.15); } }

.btn-lg   { padding: 18px 40px; font-size: 1.1rem; }
.btn-sm   { padding: 10px 20px; font-size: 0.9rem; }
.btn-full { width: 100%; }

/* INFO BAR */
.info-bar { background: var(--navy); color: rgba(255,255,255,0.85); text-align: center; padding: 10px 20px; font-size: 0.88rem; font-weight: 500; position: sticky; top: 0; z-index: 1002; border-bottom: 1px solid rgba(255,255,255,0.06); }
.info-bar strong { color: var(--gold); }
.info-bar a { color: var(--gold); font-weight: 700; }
.info-bar a:hover { text-decoration: underline; }
.info-bar-content { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; max-width: var(--max-width); margin: 0 auto; }
.btn-call-mobile { display: none; background: var(--gold); color: var(--navy); padding: 5px 14px; border-radius: var(--r-full); font-size: 0.82rem; font-weight: 700; }

/* HEADER */
.site-header { position: sticky; top: 40px; z-index: 1000; height: var(--header-h); display: flex; align-items: center; background: var(--white); border-bottom: 1px solid var(--gray-border); transition: box-shadow var(--t-mid), background var(--t-mid); }
.site-header.scrolled { box-shadow: var(--shadow-md); }
body.hero-page .site-header { background: transparent; border-bottom-color: rgba(255,255,255,0.1); position: fixed; width: 100%; top: 40px; }
body.hero-page .site-header.scrolled { background: rgba(30,58,138,0.97); border-bottom-color: rgba(255,255,255,0.08); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; gap: 16px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 42px; height: 42px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name    { font-size: 1.2rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.logo-tagline { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
body.hero-page .logo-name, body.hero-page .logo-tagline { color: var(--white); }
body.hero-page .site-header.scrolled .logo-name { color: var(--white); }
body.hero-page .site-header.scrolled .logo-tagline { color: rgba(255,255,255,0.55); }

.main-nav { display: none; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 0.92rem; font-weight: 600; color: var(--text); border-radius: var(--r-sm); transition: color var(--t-fast), background var(--t-fast); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-bg); }
body.hero-page .nav-link { color: rgba(255,255,255,0.88); }
body.hero-page .nav-link:hover, body.hero-page .nav-link.active { color: var(--gold); background: rgba(255,255,255,0.08); }
.chevron { width: 14px; height: 14px; transition: transform var(--t-fast); }
.nav-item:hover .chevron { transform: rotate(180deg); }

.nav-dropdown { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-8px); background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 8px; min-width: 260px; opacity: 0; visibility: hidden; transition: all var(--t-mid); z-index: 200; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-link { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--r-sm); font-size: 0.9rem; font-weight: 600; color: var(--text); transition: background var(--t-fast), color var(--t-fast); }
.dropdown-link:hover { background: var(--blue-bg); color: var(--blue); }
.dropdown-icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--blue-mid); }

.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-tel { display: none; align-items: center; gap: 6px; font-size: 0.9rem; font-weight: 700; color: var(--navy); transition: color var(--t-fast); }
body.hero-page .header-tel { color: var(--white); }
.header-tel svg { width: 16px; height: 16px; }
.header-tel:hover { color: var(--gold); }

.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: var(--r-sm); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--t-mid); }
body.hero-page .hamburger span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE MENU */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(30,58,138,0.6); z-index: 998; backdrop-filter: blur(2px); }
.mobile-overlay.open { display: block; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: min(360px, 92vw); height: 100vh; overflow-y: auto; background: var(--white); z-index: 999; padding: 24px 20px; display: flex; flex-direction: column; gap: 4px; transition: right var(--t-mid); box-shadow: var(--shadow-xl); }
.mobile-menu.open { right: 0; }
.mobile-nav-link { display: block; padding: 12px 14px; font-size: 1rem; font-weight: 600; color: var(--navy); border-radius: var(--r-sm); transition: background var(--t-fast), color var(--t-fast); }
.mobile-nav-link:hover { background: var(--gray-light); color: var(--blue); }
.mobile-services-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); padding: 12px 14px 4px; }
.mobile-sub-link { display: block; padding: 9px 14px 9px 24px; font-size: 0.92rem; font-weight: 500; color: var(--text); border-radius: var(--r-sm); transition: background var(--t-fast); }
.mobile-sub-link:hover { background: var(--blue-bg); color: var(--blue); }
.mobile-menu-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-border); }
.mobile-menu-cta .btn { justify-content: center; }
.mobile-menu-cta .btn-blue { background: var(--navy); border-color: var(--navy); }

/* HERO PLEIN ECRAN */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
body.hero-page { padding-top: 0; }
.hero-bg { position: absolute; inset: 0; background-image: url('images/480428641_534192049681705_4164054505594042076_n.jpg'); background-size: cover; background-position: center 30%; transform: scale(1.05); transition: transform 8s ease-out; }
.hero-bg.loaded { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(30,58,138,0.90) 0%, rgba(30,58,138,0.72) 55%, rgba(30,58,138,0.38) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 660px; color: var(--white); padding: 120px 0 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,165,0,0.18); border: 1px solid rgba(240,165,0,0.4); color: var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--r-full); margin-bottom: 20px; }
.hero-badge svg { width: 13px; height: 13px; }
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900; line-height: 1.08; margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-sub { font-size: clamp(1rem, 1.8vw, 1.15rem); color: rgba(255,255,255,0.82); margin-bottom: 36px; line-height: 1.7; max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-direction: column; gap: 10px; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.82); font-weight: 500; }
.hero-trust-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.4); font-size: 0.72rem; animation: bounce-scroll 2.2s ease-in-out infinite; }
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce-scroll { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* PAGE HERO INTERNE */
.page-hero { position: relative; min-height: 360px; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(30,58,138,0.92) 45%, rgba(30,58,138,0.45)); }
.page-hero-content { position: relative; z-index: 1; color: var(--white); padding: 60px 0; max-width: 700px; }
.page-hero-content h1 { color: var(--white); margin-bottom: 16px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero-sub { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.7; }
.page-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* BREADCRUMB */
.breadcrumb { background: var(--gray-light); border-bottom: 1px solid var(--gray-border); padding: 10px 0; }
.breadcrumb-list { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb-list li:not(:last-child)::after { content: '›'; margin-left: 6px; color: var(--gray-border); }
.breadcrumb-list a { color: var(--blue-mid); font-weight: 500; }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list li:last-child { font-weight: 600; color: var(--text); }

/* STATS BAND */
.stats-band { background: var(--navy); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; text-align: center; }
.stat-number { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; color: var(--gold); line-height: 1; letter-spacing: -0.03em; display: block; }
.stat-label  { font-size: 0.88rem; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 6px; }

/* URGENCE — bande navy sobre avec accent rouge */
.urgence-section { background: var(--navy-mid); padding: 44px 0; position: relative; border-top: 3px solid var(--red); }
.urgence-section::before { display: none; }
.urgence-inner { display: flex; flex-direction: column; gap: 24px; }
.urgence-header { display: flex; align-items: flex-start; gap: 16px; }
.urgence-icon { width: 52px; height: 52px; background: rgba(192,57,43,0.18); border: 1.5px solid rgba(192,57,43,0.5); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; animation: pulse-warn 2s ease-in-out infinite; }
@keyframes pulse-warn { 0%,100% { background: rgba(192,57,43,0.18); } 50% { background: rgba(192,57,43,0.30); } }
.urgence-icon svg { width: 26px; height: 26px; color: #e74c3c; }
.urgence-header h2 { color: var(--white); font-size: clamp(1.3rem, 2.5vw, 1.7rem); margin-bottom: 6px; }
.urgence-header p  { color: rgba(255,255,255,0.72); margin: 0; font-size: 0.95rem; }
.urgence-points { display: flex; flex-direction: column; gap: 10px; }
.urgence-point { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: rgba(255,255,255,0.82); font-weight: 500; }
.urgence-point svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold); }
.urgence-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: all var(--t-mid); box-shadow: var(--shadow-sm); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.service-card-photo { position: relative; height: 200px; overflow: hidden; background: var(--gray-light); }
.service-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.service-card:hover .service-card-photo img { transform: scale(1.06); }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-icon { width: 44px; height: 44px; background: var(--blue-bg); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: background var(--t-mid); }
.service-card:hover .service-card-icon { background: var(--gold-light); }
.service-card-icon svg { width: 22px; height: 22px; color: var(--blue); transition: color var(--t-mid); }
.service-card:hover .service-card-icon svg { color: var(--gold-dark); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p  { font-size: 0.9rem; color: var(--text-muted); flex: 1; line-height: 1.6; }
.service-card-cta { display: flex; align-items: center; gap: 6px; color: var(--blue); font-size: 0.88rem; font-weight: 700; margin-top: 16px; transition: gap var(--t-fast), color var(--t-fast); }
.service-card:hover .service-card-cta { gap: 10px; color: var(--gold-dark); }

/* GALERIE */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.gallery-item { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,58,138,0.82) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: opacity var(--t-mid); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { color: var(--white); font-size: 0.88rem; font-weight: 600; }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(5,10,20,0.95); z-index: 9999; align-items: center; justify-content: center; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--r-md); box-shadow: var(--shadow-xl); }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.1); border: none; color: white; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; transition: background var(--t-fast); }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* AVIS */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: box-shadow var(--t-mid); }
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars svg { width: 18px; height: 18px; color: var(--gold); }
.review-text     { font-size: 0.95rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.review-author   { display: flex; align-items: center; gap: 12px; }
.review-avatar   { width: 42px; height: 42px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; flex-shrink: 0; }
.review-name     { font-weight: 700; font-size: 0.92rem; color: var(--navy); }
.review-location { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ZONES */
.zones-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.zone-pill { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--r-md); font-size: 0.9rem; font-weight: 600; color: var(--navy); text-decoration: none; transition: all var(--t-fast); }
.zone-pill svg { width: 14px; height: 14px; color: var(--blue-mid); flex-shrink: 0; }
.zone-pill:hover { background: var(--blue-bg); border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* DEVIS FORM */
.devis-section { background: var(--navy); }
.devis-wrapper { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 920px; margin: 0 auto; }
.devis-form-card { background: var(--white); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow-xl); }
.devis-form-title { font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; padding-bottom: 14px; border-bottom: 3px solid var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.required { color: var(--red); }
.form-control { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-border); border-radius: var(--r-md); font-family: var(--font); font-size: 0.95rem; color: var(--text); background: var(--white); transition: border-color var(--t-fast), box-shadow var(--t-fast); outline: none; appearance: none; -webkit-appearance: none; }
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.12); }
textarea.form-control { resize: vertical; min-height: 90px; }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 40px; cursor: pointer; }
.form-submit-btn { width: 100%; padding: 16px; font-size: 1.05rem; margin-top: 8px; }
.form-tel-note { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-muted); justify-content: center; margin-top: 12px; }
.form-tel-note svg { width: 14px; height: 14px; }
.form-tel-note a { color: var(--blue); font-weight: 600; }
.form-success { display: none; text-align: center; padding: 32px 20px; }
.form-success.visible { display: block; }
.form-success-icon { width: 64px; height: 64px; background: var(--green); border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.form-success-icon svg { width: 30px; height: 30px; color: white; }
.devis-info { color: rgba(255,255,255,0.9); }
.devis-info-title { font-size: 1.3rem; font-weight: 800; color: var(--white); margin-bottom: 24px; }
.devis-contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.devis-contact-item:last-of-type { border-bottom: none; }
.devis-contact-icon { width: 40px; height: 40px; background: rgba(240,165,0,0.15); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.devis-contact-icon svg { width: 18px; height: 18px; color: var(--gold); }
.devis-contact-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-bottom: 2px; }
.devis-contact-value { font-weight: 600; color: var(--white); }
.devis-contact-value a { color: var(--gold); }
.devis-guarantee { margin-top: 20px; padding: 16px; background: rgba(240,165,0,0.1); border: 1px solid rgba(240,165,0,0.3); border-radius: var(--r-md); font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.5; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px; background: rgba(37,99,235,0.15); border-radius: 50%; }
.cta-band::after  { content: ''; position: absolute; bottom: -100px; right: -80px; width: 350px; height: 350px; background: rgba(240,165,0,0.06); border-radius: 50%; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; }
.cta-band p  { color: rgba(255,255,255,0.68); font-size: 1.1rem; max-width: 500px; margin: 0 auto 32px; position: relative; z-index: 1; }
.cta-band-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; position: relative; z-index: 1; }

/* CONTENT BLOCKS */
.content-block { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.content-block img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.content-block h2 { margin-bottom: 16px; }
.check-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.check-list li { display: flex; gap: 10px; font-size: 0.95rem; }
.check-list li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--green); margin-top: 2px; }
.arrow-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.arrow-list li { display: flex; gap: 10px; font-size: 0.95rem; }
.arrow-list li .arr { color: var(--gold-dark); font-weight: 700; flex-shrink: 0; }
.info-card { padding: 20px; background: var(--blue-bg); border-radius: var(--r-md); border-left: 4px solid var(--blue); margin-bottom: 16px; }
.info-card h4 { color: var(--navy); margin-bottom: 6px; }
.info-card p  { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }
.step { display: flex; gap: 20px; position: relative; padding-bottom: 28px; }
.step:not(:last-child)::before { content: ''; position: absolute; left: 20px; top: 44px; bottom: 0; width: 2px; background: var(--gray-border); }
.step-number { width: 40px; height: 40px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; position: relative; z-index: 1; }
.step-content { padding-top: 6px; }
.step-content h4 { color: var(--navy); margin-bottom: 6px; }
.step-content p  { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
.inclus-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.inclus-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--white); border-radius: var(--r-md); border: 1px solid var(--gray-border); }
.inclus-icon { width: 32px; height: 32px; background: var(--gold-light); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.inclus-icon svg { width: 16px; height: 16px; color: var(--gold-dark); }
.inclus-text { font-size: 0.9rem; color: var(--text); line-height: 1.5; }
.inclus-text strong { color: var(--navy); }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-col .logo { margin-bottom: 16px; }
.footer-logo-col .logo-name { color: var(--white); }
.footer-logo-col .logo-tagline { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-contact-line { display: flex; align-items: flex-start; gap: 10px; font-size: 0.87rem; color: rgba(255,255,255,0.65); }
.footer-contact-line svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact-line a { color: var(--gold); font-weight: 600; }
.footer-contact-line a:hover { text-decoration: underline; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: background var(--t-fast), color var(--t-fast); }
.social-link:hover { background: var(--gold); color: var(--navy); }
.social-link svg { width: 16px; height: 16px; }
.footer-col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link { font-size: 0.88rem; color: rgba(255,255,255,0.6); font-weight: 500; transition: color var(--t-fast); }
.footer-link:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* FLOAT CALL */
.float-call { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: var(--gold); color: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(240,165,0,0.5); z-index: 990; transition: transform var(--t-fast), box-shadow var(--t-fast); animation: pulse-float 3s ease-in-out infinite; }
@keyframes pulse-float { 0%,100% { box-shadow: 0 4px 20px rgba(240,165,0,0.5); } 50% { box-shadow: 0 4px 32px rgba(240,165,0,0.75); } }
.float-call:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(240,165,0,0.7); animation: none; }
.float-call svg { width: 24px; height: 24px; }

/* SCROLL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.hero-content .hero-badge { animation: fadeSlideUp 0.6s ease both 0.2s; }
.hero-content h1           { animation: fadeSlideUp 0.7s ease both 0.35s; }
.hero-content .hero-sub    { animation: fadeSlideUp 0.7s ease both 0.5s; }
.hero-content .hero-ctas   { animation: fadeSlideUp 0.7s ease both 0.65s; }
.hero-content .hero-trust  { animation: fadeSlideUp 0.7s ease both 0.8s; }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.page-hero-content .hero-badge         { animation: fadeSlideUp 0.6s ease both 0.1s; }
.page-hero-content h1                   { animation: fadeSlideUp 0.6s ease both 0.2s; }
.page-hero-content .page-hero-sub      { animation: fadeSlideUp 0.6s ease both 0.3s; }
.page-hero-content .page-hero-ctas     { animation: fadeSlideUp 0.6s ease both 0.4s; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.contact-card { background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--r-lg); padding: 24px; display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow-sm); }
.contact-card-icon { width: 48px; height: 48px; background: var(--blue-bg); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon svg { width: 22px; height: 22px; color: var(--blue); }
.contact-card-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.contact-card-value { font-weight: 700; color: var(--navy); font-size: 1rem; margin-top: 2px; }
.contact-card-value a { color: var(--blue); }

/* ZONE PAGES */
.zone-services-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.zone-service-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--white); border-radius: var(--r-md); border: 1px solid var(--gray-border); text-decoration: none; transition: all var(--t-fast); }
.zone-service-item:hover { border-color: var(--blue); background: var(--blue-bg); transform: translateX(4px); }
.zone-service-item-icon { width: 36px; height: 36px; background: var(--blue-bg); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.zone-service-item-icon svg { width: 18px; height: 18px; color: var(--blue); }
.zone-service-item h4 { color: var(--navy); margin-bottom: 4px; font-size: 0.95rem; }
.zone-service-item p  { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.other-zones { display: flex; flex-wrap: wrap; gap: 8px; }
.other-zone-link { padding: 6px 14px; background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--r-full); font-size: 0.85rem; font-weight: 600; color: var(--blue); transition: all var(--t-fast); }
.other-zone-link:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; border-radius: var(--r-lg); overflow: hidden; }
.photo-strip img { width: 100%; height: 160px; object-fit: cover; transition: transform var(--t-slow); }
.photo-strip img:hover { transform: scale(1.04); }

/* RESPONSIVE ≥768 */
@media (min-width: 768px) {
  .main-nav { display: flex; } .header-tel { display: flex; } .hamburger { display: none; } .btn-call-mobile { display: none !important; }
  .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); } .zones-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); } .form-row { grid-template-columns: 1fr 1fr; }
  .inclus-grid { grid-template-columns: repeat(2, 1fr); } .zone-services-grid { grid-template-columns: repeat(2, 1fr); }
  .devis-wrapper { grid-template-columns: 1.3fr 1fr; }
  .content-block { grid-template-columns: 1fr 1fr; align-items: center; }
  .content-block.reverse > *:first-child { order: 2; } .content-block.reverse > *:last-child { order: 1; }
  .urgence-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .urgence-cta { flex-direction: column; flex-shrink: 0; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
  .photo-strip img { height: 220px; }
}

/* RESPONSIVE ≥1024 */
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
  .zones-grid    { grid-template-columns: repeat(5, 1fr); }
  .hero-content  { padding: 140px 0 100px; }
  .photo-strip img { height: 260px; }
}

/* MOBILE */
@media (max-width: 767px) {
  .section { padding: 52px 0; } .btn-lg { padding: 16px 28px; }
  .hero-ctas { flex-direction: column; } .hero-ctas .btn { width: 100%; }
  .page-hero-ctas { flex-direction: column; } .page-hero-ctas .btn { width: 100%; }
  .cta-band-btns { flex-direction: column; align-items: center; } .cta-band-btns .btn { width: 100%; max-width: 320px; }
  .urgence-cta .btn { width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .btn-call-mobile { display: flex !important; }
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-page-section { padding: 80px 0; }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 900px) {
  .contact-page-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}

.contact-form-full textarea { min-height: 140px; }
.form-note { font-size: 0.78rem; color: var(--gray); margin-top: 10px; }

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(37,99,235,.08); }
.contact-card-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-card-body h3 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-card-link { display: block; font-size: 1.05rem; font-weight: 600; color: var(--blue); margin-bottom: 4px; text-decoration: none; }
.contact-card-link:hover { text-decoration: underline; }
.contact-card-body p { font-size: .85rem; color: var(--gray); margin: 0; line-height: 1.5; }
.urgence-note { color: #c0392b !important; font-weight: 600 !important; margin-top: 4px !important; }

.contact-engagements { margin-top: 24px; padding: 24px; background: var(--light); border-radius: 12px; }
.contact-engagements h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }

/* STEPS GRID */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37,99,235,.10);
  border-color: var(--blue);
}
.step-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  opacity: .2;
  margin-bottom: 8px;
  line-height: 1;
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: .875rem; color: var(--gray); line-height: 1.6; }

/* PHOTO STRIP */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } }
.photo-strip-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (min-width: 1024px) { .photo-strip-item img { height: 280px; } }

/* CHECK LIST */
.check-list { list-style: none; padding: 0; margin: 16px 0; }
.check-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--text);
  font-size: .925rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* CONTENT BLOCK (text + image side by side) */
.content-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) {
  .content-block { grid-template-columns: 1fr 1fr; gap: 60px; }
}
.content-block-text .section-tag { margin-bottom: 12px; }
.content-block-text h2 { margin-bottom: 16px; }
.content-block-text p { margin-bottom: 12px; color: var(--gray); line-height: 1.7; }
.content-block-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 32px rgba(30,58,138,.12);
}

/* CTA BAND FIXES */
.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
