/* DõmHõ - Styles globaux */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #F59E0B;
  --orange-dark: #D97706;
  --dark: #111111;
  --dark2: #1C1C1C;
  --dark3: #2A2A2A;
  --text: #F5F5F5;
  --text-muted: #A0A0A0;
  --white: #FFFFFF;
  --radius: 10px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: var(--dark); color: var(--text); line-height: 1.6; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(17,17,17,0.95); backdrop-filter: blur(10px);
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between;
  height: 70px; border-bottom: 1px solid rgba(245,158,11,0.2);
}
.nav-logo { font-size: 1.5rem; font-weight: 800; color: var(--orange); text-decoration: none; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.nav-cta { background: var(--orange); color: var(--dark) !important; padding: 0.5rem 1.2rem; border-radius: 6px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--orange-dark) !important; color: var(--dark) !important; }

/* HAMBURGER MOBILE */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--text); display: block; transition: 0.3s; }
.mobile-menu { display: none; }

/* HERO */
.hero {
  min-height: 100vh; padding: 120px 5% 80px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0f0f0f 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
}
.hero-content { max-width: 700px; position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.4); color: var(--orange); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; }
.hero h1 span { color: var(--orange); }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 550px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--orange); color: var(--dark); padding: 0.9rem 2rem; border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,158,11,0.3); }
.btn-secondary { border: 2px solid rgba(245,158,11,0.5); color: var(--orange); padding: 0.9rem 2rem; border-radius: 8px; font-weight: 600; font-size: 1rem; text-decoration: none; transition: all 0.2s; }
.btn-secondary:hover { border-color: var(--orange); background: rgba(245,158,11,0.1); }

/* STATS */
.stats { background: var(--dark2); padding: 3rem 5%; display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; border-top: 1px solid #2a2a2a; border-bottom: 1px solid #2a2a2a; }
.stat { text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 900; color: var(--orange); display: block; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }

/* SECTIONS */
section { padding: 80px 5%; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 0.8rem; }
.section-title span { color: var(--orange); }
.section-sub { color: var(--text-muted); margin-bottom: 3rem; font-size: 1rem; max-width: 600px; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--dark2); border: 1px solid #2a2a2a; border-radius: var(--radius);
  padding: 2rem; transition: all 0.3s; text-decoration: none; display: block;
}
.service-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.7rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.service-primary { border-color: rgba(245,158,11,0.3); background: linear-gradient(135deg, #1C1C1C, #222215); }
.service-primary h3 { color: var(--orange); }

/* ZONE */
.zone-section { background: var(--dark2); }
.zone-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.zone-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.5rem; }
.zone-list li { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.95rem; }
.zone-list li::before { content: '📍'; font-size: 0.8rem; }
.zone-radius { background: var(--dark3); border: 1px solid rgba(245,158,11,0.3); border-radius: var(--radius); padding: 2rem; text-align: center; }
.zone-radius .num { font-size: 4rem; font-weight: 900; color: var(--orange); display: block; }
.zone-radius p { color: var(--text-muted); font-size: 0.9rem; }

/* AVIS */
.avis-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.avis-card { background: var(--dark2); border: 1px solid #2a2a2a; border-radius: var(--radius); padding: 1.8rem; }
.stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 0.8rem; }
.avis-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.avis-author { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.avis-date { font-size: 0.8rem; color: var(--text-muted); }

/* POURQUOI NOUS */
.pourquoi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.pourquoi-card { background: var(--dark2); border-radius: var(--radius); padding: 1.8rem; border-left: 3px solid var(--orange); }
.pourquoi-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--white); }
.pourquoi-card p { color: var(--text-muted); font-size: 0.88rem; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, #1a1500, #1C1C1C); border: 1px solid rgba(245,158,11,0.3); border-radius: 16px; padding: 4rem; text-align: center; margin: 0 5% 80px; }
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); margin-bottom: 2rem; }
.cta-banner .tel { font-size: 1.8rem; font-weight: 900; color: var(--orange); display: block; margin-bottom: 1.5rem; }

/* FOOTER */
footer { background: #0a0a0a; border-top: 1px solid #222; padding: 3rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
footer h4 { color: var(--orange); font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; }
footer p, footer a { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; text-decoration: none; display: block; }
footer a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid #222; padding-top: 1.5rem; color: var(--text-muted); font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }

/* PAGE INTÉRIEURE HERO */
.page-hero { padding: 120px 5% 60px; background: linear-gradient(135deg, #0d0d0d, #1a1a1a); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { color: var(--text-muted); margin-top: 1rem; max-width: 600px; }

/* CONTENT BLOCKS */
.content-section { padding: 60px 5%; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.content-block h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; }
.content-block h2 span { color: var(--orange); }
.content-block p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.check-list { list-style: none; margin-top: 1rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.8rem; color: var(--text-muted); margin-bottom: 0.7rem; font-size: 0.95rem; }
.check-list li::before { content: '✓'; color: var(--orange); font-weight: 900; flex-shrink: 0; margin-top: 0.1rem; }
.highlight-box { background: var(--dark2); border: 1px solid rgba(245,158,11,0.3); border-radius: var(--radius); padding: 2rem; }
.highlight-box h3 { color: var(--orange); font-size: 1.1rem; margin-bottom: 0.8rem; }
.highlight-box p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.3rem; }
.contact-item p, .contact-item a { color: var(--white); font-weight: 600; text-decoration: none; font-size: 1rem; }
.contact-item a:hover { color: var(--orange); }

/* FAQ */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid #2a2a2a; padding: 1.5rem 0; }
.faq-q { font-weight: 700; font-size: 1rem; color: var(--white); cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; }
.faq-q::after { content: '+'; color: var(--orange); font-size: 1.3rem; flex-shrink: 0; }
.faq-a { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-top: 0.8rem; }

/* BREADCRUMB */
.breadcrumb { padding: 90px 5% 0; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--orange); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.active { display: flex; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: var(--dark); padding: 2rem 5%; gap: 1.5rem; border-bottom: 1px solid #2a2a2a; z-index: 99; }
  .mobile-menu a { color: var(--text); text-decoration: none; font-size: 1.1rem; font-weight: 500; }
  .mobile-menu a:hover { color: var(--orange); }
  .zone-content, .content-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats { gap: 2rem; }
  .cta-banner { margin: 0 3% 60px; padding: 2.5rem 1.5rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .zone-list { grid-template-columns: 1fr; }
}
