/* ===== VARIABLES ===== */
:root {
  --blue: #0033A0;
  --blue-dark: #001565;
  --blue-light: #1a52cc;
  --black: #000000;
  --dark: #1a1a1a;
  --gray-dark: #2d2d2d;
  --gray: #555;
  --gray-light: #999;
  --border: #e5e5e5;
  --light: #f5f7fa;
  --white: #fff;
  --whatsapp: #25D366;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-blue: 0 4px 24px rgba(0,51,160,0.2);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.3px; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 700; }

/* ===== LAYOUT ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--blue); margin-bottom: 0.6rem; }
.section-title { margin-bottom: 0.8rem; }
.section-sub { color: var(--gray); max-width: 520px; font-size: 1rem; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.8rem; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; transition: all 0.2s; cursor: pointer; border: none; }
.btn-blue { background: var(--blue); color: var(--white); box-shadow: var(--shadow-blue); }
.btn-blue:hover { background: var(--blue-light); transform: translateY(-1px); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--gray-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue); font-weight: 700; }
.btn-white:hover { background: var(--light); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-phone { background: var(--blue); color: white; padding: 0.6rem 1.4rem; border-radius: 50px; font-weight: 700; font-size: 0.9rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s; }
.btn-phone:hover { background: var(--blue-light); }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem; height: 70px; max-width: 1140px; margin: 0 auto; gap: 1rem; }
.navbar-logo img { height: 115px; width: auto; object-fit: contain; }
.navbar-logo-text { font-size: 1.3rem; font-weight: 900; color: var(--blue-dark); letter-spacing: -0.5px; }
.navbar-logo-text span { color: var(--blue); }
.navbar-nav { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.navbar-nav a { padding: 0.5rem 0.9rem; border-radius: var(--radius); color: var(--gray-dark); font-size: 0.9rem; font-weight: 500; transition: all 0.2s; white-space: nowrap; }
.navbar-nav a:hover, .navbar-nav a.active { color: var(--blue); background: rgba(0,51,160,0.06); }
.navbar-right { display: flex; align-items: center; gap: 1rem; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; display: block; }

/* DROPDOWN */
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 0.5rem; min-width: 220px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: all 0.2s; transform: translateY(4px); z-index: 200; }
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a { display: block; padding: 0.5rem 1rem; border-radius: var(--radius); color: var(--gray-dark); font-size: 0.88rem; transition: all 0.15s; }
.dropdown a:hover { background: var(--light); color: var(--blue); }
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 8rem 0 4rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(0,21,101,0.92) 0%, rgba(0,10,60,0.85) 50%, rgba(0,0,0,0.7) 100%); }
.hero-content { position: relative; z-index: 1; color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600; margin-bottom: 1.5rem; backdrop-filter: blur(4px); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { margin-bottom: 1.2rem; color: var(--white); }
.hero h1 span { color: #88aaff; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 540px; line-height: 1.7; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--white); letter-spacing: -0.5px; }
.hero-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== HERO V2 (index) ===== */
.hero-left { padding: 8rem 0 4rem; }
.hero-left .hero-bg::after { background: linear-gradient(100deg, rgba(0,5,40,0.97) 0%, rgba(0,8,52,0.88) 50%, rgba(0,0,0,0.15) 100%); }
/* 2-col grid */
.hero-grid { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: center; }
.hero-v2 { position: relative; z-index: 1; }
/* Badge — compact, pas de débordement */
.hero-v2-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; color: rgba(255,255,255,0.82); margin-bottom: 1.8rem; background: rgba(255,255,255,0.07); backdrop-filter: blur(4px); overflow: visible; }
.hero-v2-title { font-size: clamp(2.6rem, 5vw, 4.6rem); font-weight: 900; color: white; line-height: 1.04; letter-spacing: -2px; margin-bottom: 1.2rem; }
.hero-v2-hl { color: white; text-decoration: underline; text-decoration-color: #f97316; text-underline-offset: 7px; text-decoration-thickness: 4px; text-decoration-skip-ink: none; }
.hero-v2-sub { font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 1.6rem; max-width: 480px; }
.hero-v2-sub strong { color: white; font-weight: 700; }
.hero-v2-pills { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1.6rem; }
.hero-pill { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.5rem 1rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.18); border-radius: 50px; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.88); }
.hero-pill i { font-size: 0.75rem; color: #88aaff; }
.hero-v2-proof { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.65rem 1.2rem; background: rgba(255,255,255,0.08); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.14); border-radius: 50px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 2rem; }
.hero-avatars { display: flex; }
.hero-av { width: 28px; height: 28px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; font-size: 0.62rem; font-weight: 800; color: white; margin-left: -7px; flex-shrink: 0; }
.hero-av:first-child { margin-left: 0; }
.hero-stars-row { display: flex; gap: 2px; }
.hero-stars-row i { color: #f59e0b; font-size: 0.78rem; }
.hero-v2-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-btn-main { display: inline-flex; align-items: center; gap: 0.75rem; padding: 1.05rem 2.2rem; background: var(--blue); color: white; border-radius: var(--radius); font-weight: 900; font-size: 1.1rem; letter-spacing: -0.3px; box-shadow: 0 6px 28px rgba(0,51,160,0.5); transition: all 0.2s; }
.hero-btn-main:hover { background: var(--blue-light); transform: translateY(-2px); }
.hero-btn-sec { display: inline-flex; align-items: center; gap: 0.7rem; padding: 1.05rem 1.8rem; background: rgba(255,255,255,0.1); color: white; border: 2px solid rgba(255,255,255,0.4); border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; backdrop-filter: blur(4px); transition: all 0.2s; }
.hero-btn-sec:hover { background: rgba(255,255,255,0.2); border-color: white; }
/* Carte stats droite */
.hero-right-col { display: flex; align-items: center; justify-content: flex-end; }
.hero-stats-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 0; width: 100%; }
.hsc-item { padding: 1.1rem 0; }
.hsc-num { font-size: 2.2rem; font-weight: 900; color: white; letter-spacing: -1px; line-height: 1; }
.hsc-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 600; margin-top: 0.2rem; }
.hsc-divider { height: 1px; background: rgba(255,255,255,0.15); }
.hsc-cta { margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.9rem; background: var(--blue); color: white; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; transition: all 0.2s; }
.hsc-cta:hover { background: var(--blue-light); }
/* Floating widget */
.phone-sticky { position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 998; background: white; border-radius: 14px; padding: 0.75rem 1.1rem; box-shadow: 0 4px 24px rgba(0,0,0,0.18); display: flex; align-items: center; gap: 0.75rem; max-width: 210px; animation: slidein 0.5s ease 1s both; }
@keyframes slidein { from { transform: translateX(130%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.phone-sticky-icon { width: 40px; height: 40px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1rem; flex-shrink: 0; animation: wapulse 2s infinite; }
.phone-sticky-label { font-size: 0.7rem; color: var(--gray); font-weight: 600; line-height: 1.3; }
.phone-sticky-num { font-size: 0.88rem; font-weight: 900; color: var(--blue); display: block; }
@media(max-width:1024px) { .hero-grid { grid-template-columns: 1fr; } .hero-right-col { display: none; } }
@media(max-width:768px) {
  .hero-left .hero-bg::after { background: rgba(0,5,40,0.93); }
  .hero-v2-badge { white-space: normal; }
  .phone-sticky { display: none; }
}

/* ===== URGENCE BAR ===== */
.urgence-bar { background: var(--blue-dark); color: var(--white); padding: 0.9rem 1.5rem; text-align: center; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; font-size: 0.95rem; }
.urgence-bar a { color: #fff; font-weight: 800; font-size: 1.15rem; border-bottom: 1px solid rgba(255,255,255,0.4); }
.urgence-bar a:hover { border-color: white; }

/* ===== SERVICES QUICK ===== */
.services-quick { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 3px solid var(--blue); }
.sq-item { padding: 1.5rem 1rem; text-align: center; border-right: 1px solid var(--border); transition: all 0.2s; cursor: default; }
.sq-item:last-child { border-right: none; }
.sq-item:hover { background: var(--light); }
.sq-icon { font-size: 1.5rem; color: var(--blue); margin-bottom: 0.5rem; }
.sq-label { font-size: 0.82rem; font-weight: 600; color: var(--gray-dark); }

/* ===== TWO SERVICES BLOCK ===== */
.services-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.sb-block { padding: 4rem 3rem; position: relative; overflow: hidden; }
.sb-block.dark { background: var(--dark); color: var(--white); }
.sb-block.blue { background: var(--blue-dark); color: var(--white); }
.sb-block-badge { display: inline-block; background: rgba(255,255,255,0.12); padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.2rem; }
.sb-block h2 { color: var(--white); margin-bottom: 1rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.sb-block p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.7; }
.sb-block ul { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.sb-block ul li { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.sb-block ul li i { color: #88aaff; font-size: 0.9rem; }
.sb-block.dark ul li i { color: #aaa; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card { text-align: center; padding: 2rem 1.5rem; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all 0.25s; }
.why-card:hover { border-color: var(--blue); box-shadow: var(--shadow-blue); transform: translateY(-3px); }
.why-icon { width: 56px; height: 56px; background: rgba(0,51,160,0.08); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--blue); margin: 0 auto 1rem; }
.why-card h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.why-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.65; }

/* ===== ZONES ===== */
.zones-intro { text-align: center; margin-bottom: 3rem; }
.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.zone-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; transition: all 0.25s; cursor: pointer; }
.zone-card:hover { border-color: var(--blue); background: var(--light); box-shadow: var(--shadow); transform: translateY(-2px); }
.zone-num { font-size: 2.5rem; font-weight: 900; color: var(--blue); letter-spacing: -2px; margin-bottom: 0.3rem; }
.zone-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; }
.zone-cities { font-size: 0.78rem; color: var(--gray); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-q { padding: 1.2rem 1.5rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: background 0.2s; }
.faq-q:hover { background: var(--light); }
.faq-q i { color: var(--blue); font-size: 0.9rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.5rem 1.2rem; color: var(--gray); font-size: 0.92rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ===== CONTACT CTA ===== */
.cta-block { background: var(--blue-dark); color: var(--white); padding: 5rem 0; text-align: center; }
.cta-block h2 { color: var(--white); margin-bottom: 1rem; }
.cta-block p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1.05rem; }
.phone-big { display: inline-flex; align-items: center; gap: 1rem; font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; color: var(--white); letter-spacing: -1.5px; }
.phone-big i { font-size: 0.7em; }
.phone-big:hover { color: #88aaff; }

/* ===== CONTACT FORM ===== */
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--gray-dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,51,160,0.1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: var(--white); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand img { height: 100px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer-contact-item i { color: var(--blue-light); width: 16px; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; width: 56px; height: 56px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: white; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; animation: wapulse 2.5s infinite; }
.wa-float:hover { transform: scale(1.1); animation: none; }
@keyframes wapulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7); } }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: var(--blue-dark); padding: 7rem 0 3.5rem; color: var(--white); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=60') center/cover; opacity: 0.08; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 580px; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.6rem; }

/* ===== ZONE PAGE ===== */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.6rem; }
.city-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 0.9rem 1rem; font-size: 0.88rem; font-weight: 600; color: var(--gray-dark); transition: all 0.2s; text-align: center; }
.city-card:hover { border-color: var(--blue); color: var(--blue); background: rgba(0,51,160,0.04); }
.dept-header { background: var(--blue); color: var(--white); padding: 1rem 1.5rem; border-radius: var(--radius-lg); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.dept-num { font-size: 2.5rem; font-weight: 900; opacity: 0.8; letter-spacing: -2px; }
.dept-info h3 { color: var(--white); }
.dept-info p { color: rgba(255,255,255,0.75); font-size: 0.88rem; }

/* ===== ZONE PAGE NEW LAYOUT ===== */
.zone-page-layout { display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.zone-sidebar { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: 130px; }
.zone-sidebar h3 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2.5px; color: var(--gray-light); font-weight: 700; margin-bottom: 1rem; }
.zone-sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.zone-sidebar-list li a { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 0.8rem; border-radius: var(--radius); color: var(--gray-dark); font-weight: 600; font-size: 0.85rem; transition: all 0.2s; }
.zone-sidebar-list li a:hover, .zone-sidebar-list li.active a { background: var(--blue); color: white; }
.dept-badge { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; background: rgba(0,51,160,0.1); border-radius: 7px; font-size: 0.72rem; font-weight: 800; color: var(--blue); flex-shrink: 0; transition: all 0.2s; }
.zone-sidebar-list li a:hover .dept-badge, .zone-sidebar-list li.active a .dept-badge { background: rgba(255,255,255,0.2); color: white; }

/* ===== CITY PHOTO GRID ===== */
.city-photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 1.2rem; }
.city-photo-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all 0.3s; display: block; text-decoration: none; color: inherit; background: var(--white); }
.city-photo-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.13); transform: translateY(-4px); border-color: var(--blue); }
.city-photo-card img { width: 100%; height: 135px; object-fit: cover; display: block; }
.city-photo-card-body { padding: 0.9rem 1rem; }
.city-photo-card-body h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.15rem; color: var(--dark); }
.city-photo-card-body p { font-size: 0.75rem; color: var(--gray); }
.city-arrow { display: flex; align-items: center; gap: 0.3rem; font-size: 0.72rem; color: var(--blue); font-weight: 700; margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.5px; }
@media(max-width:900px) { .zone-page-layout { grid-template-columns: 1fr; } .zone-sidebar { position: static; } }

/* ===== SERVICE DETAIL ===== */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.service-detail-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.service-detail-img img { width: 100%; height: 380px; object-fit: cover; }
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1.2rem; }
.step-num { width: 40px; height: 40px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.step-content h4 { font-weight: 700; margin-bottom: 0.3rem; }
.step-content p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--blue); color: var(--white); padding: 2rem 0; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stats-bar-item { padding: 0.5rem; border-right: 1px solid rgba(255,255,255,0.2); }
.stats-bar-item:last-child { border-right: none; }
.stats-bar-num { font-size: 2rem; font-weight: 900; letter-spacing: -0.5px; }
.stats-bar-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: all 0.25s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--blue); }
.card-icon { width: 52px; height: 52px; background: rgba(0,51,160,0.07); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--blue); margin-bottom: 1.2rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--gray); font-size: 0.88rem; line-height: 1.65; }
.card-tag { display: inline-block; margin-top: 1rem; padding: 0.25rem 0.75rem; background: rgba(0,51,160,0.07); color: var(--blue); border-radius: 50px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .services-quick { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .burger { display: flex; }
  .navbar-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem; gap: 0.3rem; }
  .services-blocks { grid-template-columns: 1fr; }
  .sb-block { padding: 2.5rem 1.5rem; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .services-quick { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero { padding: 6rem 0 3rem; }
  .hero-cta { flex-direction: column; }
  .zones-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .urgence-bar { flex-direction: column; gap: 0.4rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}
