/* =========================================
   EXPERT HOTTE PRO – style.css
   ========================================= */

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

:root {
  --steel: #0f1923;
  --steel-mid: #1a2d3d;
  --steel-light: #243d52;
  --orange: #f06517;
  --orange-light: #ff8540;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d0;
  --text-main: #1a1a1a;
  --text-muted: #556070;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-main);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  height: 68px;
  border-bottom: 2px solid var(--orange);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  color: var(--white);
  letter-spacing: 2px;
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--cream-dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-light) !important; color: var(--white) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--steel);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 4vw 80px;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(240,101,23,0.04) 40px,
      rgba(240,101,23,0.04) 41px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 700px;
  animation: fadeUp 0.8s ease both;
}

.hero-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  color: var(--orange);
  font-style: normal;
  display: block;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--orange); transform: translateY(-2px); }

.hero-decoration {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border: 1.5px solid rgba(240,101,23,0.15);
  border-radius: 50%;
  pointer-events: none;
}
.hero-decoration::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1.5px solid rgba(240,101,23,0.1);
  border-radius: 50%;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--orange);
  padding: 1.5rem 4vw;
  display: flex;
  gap: 0;
  justify-content: space-around;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 0.2rem;
  display: block;
}

/* ── SECTIONS ── */
section { padding: 6rem 4vw; }

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  font-weight: 300;
  margin-bottom: 3.5rem;
}

/* ── SERVICES ── */
#services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: var(--cream-dark);
  border: 1.5px solid var(--cream-dark);
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.25s;
  cursor: default;
}
.service-card:hover { background: var(--cream); }
.service-card:hover .service-icon { background: var(--orange); }
.service-card:hover .service-icon svg { stroke: var(--white); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.25s;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--orange); fill: none; stroke-width: 1.8; transition: stroke 0.25s; }

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  color: var(--steel);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}
.service-card .service-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  font-weight: 500;
}

/* ── POURQUOI ── */
#pourquoi { background: var(--cream); }

.pourquoi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.visual-panel {
  background: var(--steel);
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.visual-panel::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(240,101,23,0.2);
  border-radius: 50%;
}
.visual-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.visual-quote span { color: var(--orange); }
.visual-detail {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  font-weight: 300;
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.reason-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}
.reason-item:last-child { border-bottom: none; padding-bottom: 0; }
.reason-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--orange);
  line-height: 1;
  min-width: 40px;
}
.reason-text h4 {
  font-weight: 500;
  font-size: 1rem;
  color: var(--steel);
  margin-bottom: 0.3rem;
}
.reason-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── ATTESTATION ── */
.attestation-section {
  background: var(--steel);
  padding: 5rem 4vw;
  text-align: center;
}
.attestation-section .section-title { color: var(--white); }
.attestation-section .section-subtitle { color: rgba(255,255,255,0.55); margin: 0 auto 3rem; }

.attestation-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(240,101,23,0.3);
  border-radius: 8px;
  padding: 3rem;
}
.attestation-icon {
  width: 70px;
  height: 70px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.attestation-icon svg { width: 32px; height: 32px; stroke: var(--white); fill: none; stroke-width: 1.8; }
.attestation-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.attestation-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
}
.attest-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.attest-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}
.attest-feat::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── DEVIS ── */
#devis { background: var(--cream); }

.devis-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.devis-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--steel);
}
.devis-info p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-main);
}
.contact-detail svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 1.8; flex-shrink: 0; }

.devis-form {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-main);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
  text-transform: uppercase;
}
.form-submit:hover { background: var(--orange-light); transform: translateY(-1px); }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ── FOOTER ── */
footer {
  background: var(--steel);
  padding: 3.5rem 4vw 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { font-size: 2rem; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; font-weight: 300; }
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-col p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.6; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ── COVERAGE BADGE ── */
.coverage-badge {
  background: rgba(240,101,23,0.12);
  border: 1px solid rgba(240,101,23,0.3);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  margin-top: 1rem;
  display: block;
  width: fit-content;
}
.coverage-badge::before {
  content: '◎ ';
  font-size: 0.65rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── NOTIFICATION ── */
#notif {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--steel);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  border-left: 3px solid var(--orange);
  font-size: 0.9rem;
  transform: translateX(120%);
  transition: transform 0.4s ease;
  z-index: 999;
  max-width: 320px;
}
#notif.show { transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .pourquoi-layout,
  .devis-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
}
