:root {
  --gold: #F5C518;
  --gold-light: #FFD94A;
  --gold-dark: #C9A000;
  --red: #E63946;
  --red-dark: #B52D38;
  --danger-red: #ef4444;
  --danger-red-dark: #dc2626;
  --navy: #1A3A6B;
  --navy-light: #2453A3;
  --black: #0D0F14;
  --dark: #161B27;
  --mid: #2A2F3E;
  --gray: #6B7280;
  --silver: #9CA3AF;
  --off-white: #F7F8FA;
  --white: #FFFFFF;
  --green: #10B981;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, .12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .18);
  --shadow-gold: 0 8px 30px rgba(245, 197, 24, .35);
  --shadow-red: 0 8px 30px rgba(230, 57, 70, .35);

  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--roboto);
  background: var(--white);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Helpers ───────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: inherit;
  margin-bottom: .6rem;
}

.section-header h2 i {
  color: var(--gold);
  margin-right: .5rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
}


/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--black) 0%, #1a1f2e 55%, #1e0a0b 100%);
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 85%, rgba(245, 197, 24, .08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 85% 15%, rgba(230, 57, 70, .1) 0%, transparent 60%);
}

.hero-content {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 620px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(245, 197, 24, .12);
  border: 1px solid rgba(245, 197, 24, .35);
  color: var(--gold-light);
  padding: .5rem 1.2rem;
  border-radius: var(--radius-xl);
  font-size: .86rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  margin-top: 0;
  animation: float 3s ease-in-out infinite;
}

.badge i {
  color: var(--gold);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--gold-light) 30%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-p {
  color: rgba(255, 255, 255, .78);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 520px;
}


.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .8);
  font-size: .88rem;
  background: rgba(255, 255, 255, .06);
  padding: .38rem .9rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, .12);
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}


/* ── Colonne droite : cartes action ─────── */
.hero-visual {
  flex: 0 0 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.6rem;
}

/* Panneau urgence */
.urgence-card {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.urgence-card-title {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: .3rem;
}

.urgence-icon {
  color: var(--red);
  font-size: 1rem;
}

/* Panneau devis */

.devis-card-header {
  margin-bottom: 1rem;
}

.devis-card-header strong {
  color: var(--white);
  font-size: 1rem;
  display: block;
  margin-bottom: .25rem;
}

.devis-card-header p {
  color: rgba(255, 255, 255, .55);
  font-size: .85rem;
}

/* Carte lien services */
.services-link-card {
  text-align: center;
  padding: 1rem 1.6rem;
  background: rgba(255, 255, 255, .03);
}

.services-link-card a {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: var(--transition);
}

.services-link-card a:hover {
  color: var(--gold);
}

/* Boutons hero */
.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  padding: .85rem 1.2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.hero-btn-primary {
  background: var(--navy-light);
  color: var(--white);
  border: none;
}

.hero-btn-primary:hover {
  background: var(--navy);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hero-btn-outline {
  background: var(--green);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .25);
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-1px);
}

.hero-btn-devis {
  background: transparent;
  color: var(--navy-light);
  border: 1px solid var(--navy-light);
}

.hero-btn-devis:hover {
  background: rgba(26, 58, 107, .15);
  transform: translateY(-1px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-5px)
  }
}

/* =============================================
   STATS BAND
   ============================================= */
.unlock-stats {
  background: var(--off-white);
  padding: 3rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid #e8eaf0;
}

.top-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin-bottom: 2.2rem;
}

.top-icons .item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
}

.top-icons i {
  color: var(--navy-light);
  font-size: 1rem;
}

.bottom-stats {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.stat-card {
  background: var(--white);
  border: 1px solid #e5e8ef;
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  min-width: 150px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-card i {
  font-size: 1.7rem;
  color: var(--navy-light);
  margin-bottom: .4rem;
  display: block;
}

.stat-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.stat-card p {
  font-size: .82rem;
  color: var(--gray);
  margin-top: .2rem;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 5rem 0;
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.4rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  border: 1px solid #e5e8ef;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 197, 24, .3);
}

.service-img {
  position: relative;
  height: 180px;
  margin: -1.8rem -1.6rem 1.2rem;
  /* déborde jusqu'aux bords de la card */
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 58, 107, .15) 0%, rgba(26, 58, 107, .5) 100%);
}

.service-img-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(245, 197, 24, .93);
  color: var(--black);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 20px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--dark);
}

.service-card p {
  font-size: .87rem;
  color: var(--gray);
  margin-bottom: .8rem;
}

.service-features {
  margin-top: .4rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .83rem;
  color: var(--gray);
  margin-bottom: .35rem;
}

.service-features i {
  color: var(--gold);
  font-size: .75rem;
}

.services a.more,
.tarifs a.more {
  display: block;
  width: fit-content;
  margin: 2.5rem auto 0;
  padding: .7rem 2.2rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: .92rem;
  transition: var(--transition);

  &:hover {
    transform: translateY(-2px) scale(1.1);
  }
}

.services a.more {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.tarifs a.more {
  background: var(--navy-light);
  color: var(--white);
}


/* =============================================
   WHY US
   ============================================= */
.why-us {
  background: var(--white);
  padding: 4.5rem clamp(1rem, 4vw, 2.5rem);
}

.why {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--dark);
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.reason {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
}

.reason .icone {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(245, 197, 24, .15), rgba(245, 197, 24, .04));
  border: 2px solid rgba(245, 197, 24, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
}

.reason .icone svg {
  stroke: var(--gold);
}

.reason h3 {
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--dark);
}

.reason p {
  font-size: .86rem;
  color: var(--gray);
}

.why-us .information {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  margin: 2rem auto;
  padding: .45rem 1.1rem;
  background: rgba(245, 197, 24, .1);
  border: 1px solid rgba(245, 197, 24, .3);
  border-radius: var(--radius-xl);
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark);
}

.information svg {
  color: var(--gold);
  flex-shrink: 0;
  transform: none !important;
}

.indic {
  max-width: 600px;
  margin: 1.5rem auto 0;
  font-size: .83rem;
  color: var(--gray);
  text-align: center;
}

/* =============================================
   TARIFS
   ============================================= */
.tarifs {
  padding: 5rem 0;
  background: var(--dark);
  color: var(--white);
}

.tarifs .section-header p {
  color: rgba(255, 255, 255, .6);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.4rem;
}

.tarif-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}

.tarif-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(245, 197, 24, .4);
}

.tarif-card.serrure {
  border-top-color: var(--navy-light);
}

.tarif-card.blindee {
  border-top-color: var(--green);
}

.tarif-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.tarif-table {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-size: .9rem;
}

.tarif-row:last-child {
  border-bottom: none;
}

.tarif-row span {
  color: rgba(255, 255, 255, .65);
}

.tarif-row strong {
  color: var(--gold);
  font-weight: 700;
}

.tarif-row.highlight {
  background: rgba(245, 197, 24, .1);
  border: 1px solid rgba(245, 197, 24, .25);
  border-radius: var(--radius-sm);
  padding: .65rem 1rem;
}

.tarif-row.highlight strong {
  color: var(--gold-light);
}

.tarif-row.highlight i {
  color: var(--gold);
  margin-right: .3rem;
}

/* =============================================
   AVIS CLIENTS
   ============================================= */
.reviews-section {
  background: var(--off-white);
  padding: 5rem clamp(1rem, 4vw, 2.5rem);
}

.reviews-section h2 {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.rating-summary {
  text-align: center;
  margin-bottom: 2.5rem;
}

.rating-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
}

.rating-score .stars,
.stars {
  color: #F59E0B;
}

.rating-count,
.rating-date {
  display: block;
  font-size: .83rem;
  color: var(--gray);
  margin-top: .2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  border: 1px solid #e5e8ef;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-card h3 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--dark);
}

.review-card .date {
  font-size: .78rem;
  color: var(--gray);
}

.translated {
  font-size: .86rem;
  color: #444;
  line-height: 1.55;
}

.original {
  font-size: .78rem;
  color: var(--gray);
  margin-top: .4rem;
}

.review-buttons {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: .65rem 1.5rem;
  background: var(--navy-light);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .88rem;
  transition: var(--transition);
}

.btn:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy-light);
  color: var(--navy-light);
}

.btn-outline:hover {
  background: var(--navy-light);
  color: var(--white);
}

/* =============================================
   PRESTATIONS / ÉTAPES
   ============================================= */
.steps-section {
  background: var(--white);
  padding: 5rem clamp(1rem, 4vw, 2.5rem);
}

.steps-intro {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.steps-intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: .7rem;
}

.steps-intro p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.steps-title {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 0 auto 1.8rem;
  max-width: 1100px;
  display: block;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
  gap: 1.1rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.step-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-card h4 {
  font-size: .76rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.step-card h5 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--dark);
  margin: .35rem 0 .5rem;
}

.step-card p {
  font-size: .83rem;
  color: var(--gray);
}

.quality-block {
  max-width: 1100px;
  margin: 0 auto;
  background: #FFF8EC;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
}

.quality-block h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: .6rem;
}

.quality-block p {
  color: #555;
  margin-bottom: 1rem;
}

.quality-list {
  padding-left: 0;
}

.quality-list li {
  font-size: .9rem;
  color: #333;
  margin-bottom: .55rem;
  padding-left: 1.2rem;
  position: relative;
}

.quality-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

/* =============================================
   BLOG / ACTUS
   ============================================= */
.actus-section {
  background: var(--off-white);
  padding: 5rem clamp(1rem, 4vw, 2.5rem);
}

.actus-section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: .8rem;
}

.actus-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.actus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.actu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e8ef;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.actu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.actu-card img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}

.actu-content {
  padding: 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tag {
  background: var(--gold-dark);
  color: var(--white);
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  font-size: .73rem;
  font-weight: 700;
}

.tag.urgent {
  background: var(--red);
}

.tag.securite {
  background: var(--navy-light);
}

.time {
  float: right;
  font-size: .78rem;
  color: var(--gray);
}

.actu-content h3 {
  margin: .8rem 0 .4rem;
  font-size: .97rem;
  font-weight: 700;
  color: var(--dark);
}

.actu-content p {
  font-size: .85rem;
  color: var(--gray);
  flex: 1;
  margin-bottom: .8rem;
}

.read-link {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: .85rem;
}

.read-link:hover {
  text-decoration: underline;
}

.actus-btn-wrapper {
  text-align: center;
  margin-top: 2.2rem;
}

.actus-btn {
  background: var(--gold);
  color: var(--black);
  padding: .7rem 1.9rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  display: inline-block;
}

.actus-btn:hover {
  transform: translateY(-2px) scale(1.1);
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: 5rem 0;
  background: var(--white);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  width: min(680px, 90%);
  margin: 0 auto;
}

.faq-card {
  background: var(--off-white);
  border: 1px solid #e5e8ef;
  border-radius: var(--radius-md);
  height: 58px;
  overflow: hidden;
  position: relative;
  cursor: default;
  transition: var(--transition);
}

.faq-card:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1rem 3.2rem 1rem 1.3rem;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  color: var(--dark);
}
@media (max-width:500px) {

.faq-card {
  height: 60px;
}

.faq-question {
  padding: 1rem 3.2rem 1.3rem 1.8rem;
  font-size: .78rem;
}
.faq-answer {
  font-size: .78rem;
}
}

.faq-card>i {
  position: absolute;
  right: 1.1rem;
  top: 1rem;
  font-size: 1rem;
  color: var(--gold-dark);
  cursor: default;
}

.faq-card>hr {
  border: none;
  border-top: 1px solid #e5e8ef;
  width: calc(100% - 2.6rem);
  margin: 0 1.3rem .7rem;
}

.faq-answer {
  padding: 0 1.3rem 1.1rem;
  font-size: .88rem;
  color: var(--gray);
}

.faq-answer p strong {
  color: var(--dark);
}

.less-sign {
  position: absolute;
  right: 1.1rem;
  top: 1.35rem;
  width: 16px;
  height: 2px;
  background: var(--dark);
  display: block;
}

.display {
  height: auto !important;
  background: #FFFDF5;
  border-color: rgba(245, 197, 24, .35);
}

.view {
  display: none !important;
}

/* =============================================
   ZONES D'INTERVENTION
   ============================================= */
.zones-section {
  background: var(--off-white);
  padding: 5rem clamp(1rem, 4vw, 2.5rem);
}

.zones-section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: .8rem;
  color: var(--dark);
}

.zones-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2.5rem;
  display: block;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
  gap: 1.1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.zone-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  border: 1px solid #e5e8ef;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.zone-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.zone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
}

.dept {
  font-size: .97rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.time {
  font-size: .75rem;
  color: var(--gray);
  float: none;
}

.zone-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .2rem;
}

.count {
  font-size: .78rem;
  color: var(--gray);
  margin-bottom: .7rem;
}

.cities span {
  display: block;
  font-size: .8rem;
  color: #555;
  margin-bottom: .2rem;
}

.zone-link {
  display: inline-block;
  margin-top: .7rem;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: .83rem;
}

.zone-link:hover {
  text-decoration: underline;
}

.urgent-block {
  max-width: 1100px;
  margin: 2.2rem auto 0;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  text-align: center;
  border-left: 5px solid var(--red);
}

.urgent-block h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: .6rem;
}

.urgent-block p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 1.4rem;
}

.urgent-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-orange {
  background: var(--red);
  color: var(--white);
  padding: .7rem 1.7rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
  box-shadow: var(--shadow-red);
}

.btn-orange:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .4);
  color: var(--white);
  padding: .7rem 1.7rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  transition: var(--transition);
}

.btn-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
}

/* =============================================
   NOS TROUVER
   ============================================= */
.contact-section {
  background: var(--white);
  padding: 5rem clamp(1rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr min(420px, 45%);
  gap: 3rem;
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}

.contact-left h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  margin-bottom: .7rem;
  color: var(--dark);
}

.contact-text {
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.7rem;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.contact-buttons a {
  padding: .65rem 1.3rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  transition: var(--transition);
}

.btn-phone {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-phone:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
}

.btn-whatsapp:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.btn-form {
  background: var(--off-white);
  color: var(--dark);
  border: 1px solid #ddd;
}

.btn-form:hover {
  background: #eee;
}

.contact-right h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.address {
  font-size: .88rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.map-container {
  width: 100%;
  height: 230px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   SECTION CONTACT (formulaire)
   ============================================= */
.contact {
  padding: 5rem 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.info {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.info-div {
  background: var(--white);
  border: 1px solid #e5e8ef;
  border-radius: var(--radius-md);
  padding: 1.3rem;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.info-div:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.info-div h3 {
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.info-div h3 i {
  color: var(--gold-dark);
}

.info-div>ul,
.info-div>p {
  margin-left: 0;
}

.info-div>ul li {
  font-size: .88rem;
  color: var(--gray);
}

.phone-big {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.guarantees {
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
}

.guarantee>i {
  width: 42px;
  height: 42px;
  background: rgba(245, 197, 24, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-div h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 1.3rem;
  display: block;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.contact-div h3::after {
  content: '';
  display: block;
  width: 50%;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: .3rem auto 0;
}

.contact-form {
  background: var(--white);
  border: 1px solid #e5e8ef;
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem 1.2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .25rem;
  color: var(--dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--dark);
  transition: var(--transition);
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, .2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 105px;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form button {
  grid-column: 1 / -1;
  padding: .8rem 1.8rem;
  border: none;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 800;
  font-size: .92rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.contact-form button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

.contact-form .intro {
  grid-column: 1/-1;
  font-size: .82rem;
  color: var(--gray);
}

.contact-form .note {
  grid-column: 1/-1;
  text-align: center;
  font-size: .78rem;
  color: var(--gray);
}


/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width:950px) {
  .contact-section {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width:768px) {
  .hero {
    padding-top: 90px;
  }

  .hero-content {
    flex-direction: column;
    gap: 0;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }



  .highlight-p {
    font-size: .88rem;
    margin: 0 auto 1.5rem;
  }

  .features-grid {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .info {
    width: 100%;
  }

  .guarantees {
    width: 100%;
  }
}

@media (max-width:480px) {

  .tarif-row {
    flex-direction: column;
    align-items: flex-start;
    gap: .15rem;
  }

  .nav-btn {
    width: 40px;

    height: 40px;
    font-size: .95rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}
