/* ════════════════════════════════════════════════
   FDX RÉNOVATION — Styles  (Fedix-inspired design)
   ════════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────── */
:root {
  --blue:       #2d2d2d;
  --blue-light: #3d3d3d;
  --blue-pale:  #f5f5f3;
  --blue-mid:   #e8e8e5;
  --red:        #cc1616;
  --red-dark:   #a81010;
  --dark:       #1a1a1a;
  --gray:       #6b7280;
  --gray-light: #f9f9f7;
  --white:      #ffffff;
  --radius:     12px;
  --shadow:     0 4px 20px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --font:       'Inter', sans-serif;
  --transition: .2s ease;
}

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

/* ── CONTAINER ──────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 8px; font-weight: 700;
  font-size: .9rem; cursor: pointer; transition: all var(--transition);
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary   { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(230,57,70,.35); }
.btn-outline   { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-white     { background: var(--white); color: var(--blue); }
.btn-white:hover { background: #e8f0ff; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }
.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: 10px; }

/* ── TYPOGRAPHY ─────────────────────────────── */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--dark); margin-bottom: 48px; line-height: 1.25;
  position: relative; display: inline-block;
}
.section-title .title-bar {
  display: block; width: 52px; height: 4px;
  background: var(--red); border-radius: 2px; margin-top: 12px;
}
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  color: var(--red); text-transform: uppercase; margin-bottom: 12px;
}
.accent { color: var(--red); }
.highlight { color: var(--blue); }

/* ────────────────────────────────────────────
   ANNOUNCEMENT BAR
   ──────────────────────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 50%, var(--red-dark) 100%);
  color: var(--white); text-align: center;
  padding: 10px 16px; font-size: .82rem; font-weight: 500;
}

/* ────────────────────────────────────────────
   NAVBAR
   ──────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  padding-top: 14px; padding-bottom: 14px;
}
.logo { display: flex; align-items: center; gap: 4px; }
.logo-img { height: 44px; width: auto; display: block; }
.logo-main { font-size: 1.6rem; font-weight: 900; color: #4a4a4a; }
.logo-main .logo-x { color: var(--red); }
.logo-sub  { font-size: .85rem; font-weight: 600; color: #888; letter-spacing: .02em; }
.logo-light .logo-main { color: var(--white); }
.logo-light .logo-x    { color: #fca5a5; }
.logo-light .logo-sub  { color: rgba(255,255,255,.7); }

.nav-links { display: flex; align-items: center; gap: 0; flex: 1; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 8px 16px; font-size: .88rem;
  font-weight: 600; color: var(--dark); transition: color var(--transition);
}
.nav-links > li > a:hover { color: var(--blue); }

.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); min-width: 220px; border-radius: var(--radius);
  box-shadow: var(--shadow-md); border: 1px solid #e5e7eb; padding: 8px 0; z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 9px 18px; font-size: .86rem; color: var(--dark); transition: background var(--transition); }
.dropdown li a:hover { background: var(--blue-pale); color: var(--blue); }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-phone { font-weight: 700; color: var(--red); font-size: .9rem; }
.nav-phone:hover { color: var(--red-dark); }
.nav-cta { font-size: .82rem; padding: 10px 18px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }

/* ────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, #f8f8f6 0%, #f0f0ec 100%); overflow: hidden; }
.hero-inner { display: flex; align-items: center; gap: 64px; min-height: 560px; padding-top: 60px; padding-bottom: 60px; }

.hero-content { flex: 1; max-width: 560px; }
.hero-badge {
  display: inline-block; background: #2d2d2d; color: var(--white);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.15;
  color: var(--dark); margin-bottom: 18px;
}
.hero-sub { font-size: 1.05rem; color: var(--gray); margin-bottom: 24px; line-height: 1.7; }

.hero-checks { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.hero-checks li { display: flex; align-items: center; gap: 10px; font-size: .95rem; font-weight: 500; }
.check { color: var(--red); font-size: 1.1rem; font-weight: 900; flex-shrink: 0; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }

.hero-urgency {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .88rem; color: var(--dark); font-weight: 500;
  background: #fff4e5; border-left: 3px solid #f59e0b;
  padding: 8px 14px; border-radius: 6px; margin-bottom: 24px;
}
.hero-urgency strong { color: var(--red-dark); font-weight: 800; }

.hero-trust { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--gray); }
.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.hero-trust strong { color: var(--dark); font-weight: 800; }

/* Hero image */
.hero-img { flex: 1; max-width: 480px; position: relative; }
.hero-img img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-md); object-fit: cover; aspect-ratio: 4/3; }
.hero-img-placeholder {
  width: 100%; min-height: 400px; border-radius: 20px;
  background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-placeholder::after {
  content: "FDX Rénovation"; color: rgba(255,255,255,.4);
  font-size: 1.5rem; font-weight: 900;
}
.hero-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--white); border-radius: 10px;
  padding: 8px 14px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; font-size: .85rem;
}
.hero-img-badge .flag { font-size: 1.4rem; }
.hero-img-badge strong { display: block; font-weight: 800; color: var(--blue); }
.hero-img-badge span { font-size: .75rem; color: var(--gray); }

/* ────────────────────────────────────────────
   WHY US
   ──────────────────────────────────────────── */
.why-us { background: var(--white); padding: 80px 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
  background: var(--white); border: 1px solid var(--blue-mid);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-icon { font-size: 2rem; margin-bottom: 16px; }
.pillar-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.pillar-card p { font-size: .9rem; color: var(--gray); line-height: 1.7; }

/* ────────────────────────────────────────────
   REVIEWS
   ──────────────────────────────────────────── */
.reviews { background: var(--gray-light); padding: 80px 0; }
.reviews-avg { font-size: 1.1rem; color: var(--gray); margin-top: -32px; margin-bottom: 40px; }
.reviews-avg strong { font-size: 1.6rem; color: var(--dark); font-weight: 900; }

.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-3px); }
.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-card > p { font-size: .9rem; color: var(--dark); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .9rem; font-weight: 700; }
.reviewer span { font-size: .8rem; color: var(--gray); }

.trustindex-link { text-align: right; margin-top: 32px; font-size: .88rem; color: var(--gray); }
.trustindex-link a { color: var(--blue); }
.trustindex-link a:hover { text-decoration: underline; }

/* ────────────────────────────────────────────
   CTA BAND
   ──────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 60px 0;
}
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 800; color: var(--white); }

/* ────────────────────────────────────────────
   EXPERIENCE
   ──────────────────────────────────────────── */
.experience { background: var(--white); padding: 80px 0; }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.exp-card {
  background: var(--gray-light); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid #e5e7eb;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-mid); }
.exp-icon { font-size: 1.8rem; margin-bottom: 14px; }
.exp-card h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.exp-card p  { font-size: .875rem; color: var(--gray); line-height: 1.7; }

/* ────────────────────────────────────────────
   SERVICES TYPES
   ──────────────────────────────────────────── */
.services-types { background: var(--blue-pale); padding: 80px 0; }
.services-layout { display: flex; gap: 48px; align-items: flex-start; }
.services-list { flex: 1; display: flex; flex-direction: column; gap: 0; }

.service-item {
  display: flex; gap: 20px; padding: 24px 20px;
  border-radius: var(--radius); cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border-left: 4px solid transparent;
}
.service-item:hover, .service-item.active {
  background: var(--white); border-left-color: var(--red);
  box-shadow: var(--shadow); transform: translateX(4px);
}
.service-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: #2d2d2d; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem;
}
.service-item.active .service-num { background: var(--red); }
.service-item h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.service-item p  { font-size: .875rem; color: var(--gray); line-height: 1.65; }

.services-img-wrap { flex: 1; position: relative; max-width: 480px; }
.services-img-wrap img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-md); object-fit: cover; aspect-ratio: 4/3; }
.img-placeholder {
  width: 100%; min-height: 420px; border-radius: 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
}
.services-badge {
  position: absolute; top: 24px; right: 24px;
  background: var(--white); border-radius: 10px; padding: 10px 16px;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column;
  align-items: center; gap: 2px;
}
.services-badge span:first-child { color: #f59e0b; font-weight: 800; font-size: 1.1rem; }
.services-badge span:last-child  { font-size: .75rem; color: var(--gray); font-weight: 600; }

/* ────────────────────────────────────────────
   WHY CHOOSE
   ──────────────────────────────────────────── */
.why-choose { background: var(--white); padding: 80px 0; }
.why-choose-inner { display: flex; gap: 64px; align-items: center; }
.why-img-wrap { flex: 1; max-width: 480px; }
.why-img-wrap img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-md); object-fit: cover; aspect-ratio: 3/4; }

.why-content { flex: 1; }
.why-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.3; }
.why-intro { font-size: .95rem; color: var(--gray); margin-bottom: 28px; line-height: 1.7; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; line-height: 1.6; }
.why-list li strong { color: var(--dark); }

/* ────────────────────────────────────────────
   AVOID SECTION (Ce que vous évitez)
   ──────────────────────────────────────────── */
.avoid-section { background: var(--gray-light); padding: 80px 0; }
.avoid-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.avoid-inner .section-label { display: block; }
.avoid-list {
  display: flex; flex-direction: column; gap: 14px;
  margin: 16px auto 28px; text-align: left;
  max-width: 560px;
}
.avoid-list li {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); padding: 16px 20px;
  border-radius: var(--radius); box-shadow: var(--shadow);
  font-size: .98rem; font-weight: 500; color: var(--dark);
  border-left: 4px solid var(--red);
  transition: transform var(--transition);
}
.avoid-list li:hover { transform: translateX(4px); }
.cross { font-size: 1.1rem; flex-shrink: 0; }
.avoid-footer {
  font-size: 1.05rem; color: var(--dark); font-weight: 500;
  margin-top: 24px;
}
.avoid-footer strong { color: var(--red); font-weight: 800; }

/* ────────────────────────────────────────────
   IMAGINE SECTION
   ──────────────────────────────────────────── */
.imagine-section { background: var(--white); padding: 80px 0; text-align: center; }
.imagine-section .section-title { text-align: left; }
.imagine-section > .container > .section-label,
.imagine-section > .container > .section-title { display: inline-block; }
.imagine-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 40px; text-align: left;
}
.imagine-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--blue-mid);
  transition: transform var(--transition), box-shadow var(--transition);
}
.imagine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.imagine-img-wrap {
  width: 100%; height: 340px;
  overflow: hidden; background: var(--blue-pale);
}
.imagine-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.imagine-body {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 20px 22px;
}
.imagine-check {
  color: #16a34a; font-size: 1.2rem; font-weight: 900;
  flex-shrink: 0; line-height: 1.4;
}
.imagine-body p { font-size: .95rem; color: var(--dark); line-height: 1.5; }
.imagine-body strong { color: var(--dark); font-weight: 800; }

@media (max-width: 1024px) {
  .imagine-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .imagine-grid { grid-template-columns: 1fr; }
}

/* ────────────────────────────────────────────
   CTA FINAL
   ──────────────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, var(--red-dark) 100%);
  padding: 80px 0;
}
.cta-final-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.cta-final p  { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 36px; line-height: 1.7; }
.cta-final-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ────────────────────────────────────────────
   DEVIS FORM SECTION
   ──────────────────────────────────────────── */
.devis-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, var(--red-dark) 100%);
  padding: 80px 0;
}
.devis-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: start;
}
.devis-content { color: var(--white); padding-top: 12px; }
.devis-content .section-label { color: #fca5a5; }
.devis-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900;
  color: var(--white); margin-bottom: 16px; line-height: 1.25;
}
.devis-content h2 .accent { color: #fca5a5; }
.devis-intro { font-size: 1rem; color: rgba(255,255,255,.85); margin-bottom: 28px; line-height: 1.7; }
.devis-bullets {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.devis-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem; color: var(--white); font-weight: 500;
}
.devis-bullets .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-size: .75rem; font-weight: 900;
}
.devis-trust { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: rgba(255,255,255,.85); }
.devis-trust strong { color: var(--white); font-weight: 800; }

/* Form card */
.devis-form {
  background: var(--white); border-radius: 16px;
  padding: 32px 32px 28px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 14px;
}
.devis-form-title {
  font-size: 1.15rem; font-weight: 800;
  color: var(--dark); margin-bottom: 4px;
  padding-bottom: 14px; border-bottom: 1px solid var(--blue-mid);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: .82rem; font-weight: 700; color: var(--dark);
  letter-spacing: .01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 11px 14px;
  font-family: var(--font); font-size: .92rem; color: var(--dark);
  background: var(--gray-light); border: 1.5px solid transparent;
  border-radius: 8px; transition: all var(--transition);
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { background: #f4f4f1; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; background: var(--white);
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,22,22,.1);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:invalid:not(:placeholder-shown) { border-color: #ef4444; }

.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .82rem; color: var(--gray); line-height: 1.5;
  margin-top: 6px; cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 2px;
  accent-color: var(--red); flex-shrink: 0;
}
.devis-submit { width: 100%; margin-top: 8px; }
.form-note {
  font-size: .78rem; color: var(--gray); text-align: center;
  margin-top: 4px;
}
.form-success {
  background: #dcfce7; color: #166534;
  border: 1px solid #86efac; border-radius: 8px;
  padding: 12px 14px; font-size: .9rem; font-weight: 600;
  text-align: center; margin-top: 8px;
}

@media (max-width: 900px) {
  .devis-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .devis-form { padding: 24px 20px; }
}

/* ────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────── */
.footer { background: #111111; color: rgba(255,255,255,.75); padding: 64px 0 0; }
.logo-img-footer { filter: brightness(0) invert(1); height: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }

.footer-brand p { font-size: .85rem; margin-top: 16px; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-payments { display: flex; gap: 8px; margin-top: 16px; }
.pay-badge {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.8);
  padding: 4px 12px; border-radius: 6px; font-size: .75rem; font-weight: 600;
}
.footer-col h5 { font-size: .85rem; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col ul li + li { margin-top: 8px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: 8px; font-size: .85rem; line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ────────────────────────────────────────────
   FLOATING SIDE BUTTONS
   ──────────────────────────────────────────── */
.float-side {
  position: fixed; right: 0; top: 50%;
  transform: translateY(-50%); z-index: 1000;
  display: flex; flex-direction: column; gap: 0;
}
.float-btn {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: all var(--transition);
  position: relative;
}
.float-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.float-btn:hover { width: 54px; }
.float-wa    { background: #25d366; border-radius: 8px 0 0 8px; }
.float-phone { background: #2d2d2d; border-radius: 8px 0 0 8px; }
.float-mail  { background: #e63946; border-radius: 8px 0 0 8px; }
.float-devis { background: #f59e0b; border-radius: 8px 0 0 8px; }
.float-btn:hover { box-shadow: -4px 4px 12px rgba(0,0,0,.2); }

/* ────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .services-layout { flex-direction: column; }
  .services-img-wrap { max-width: 100%; }
  .why-choose-inner { flex-direction: column; }
  .why-img-wrap { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open { display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-md); padding: 16px 0; z-index: 200; }
  .nav-links.open > li > a { padding: 12px 24px; }
  .dropdown { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; }
  .has-dropdown:hover .dropdown { display: none; }
  .hamburger { display: flex; }

  .hero-inner { flex-direction: column; gap: 40px; padding-top: 40px; padding-bottom: 40px; }
  .hero-img { max-width: 100%; order: -1; }
  .hero-content { max-width: 100%; }
  .hero-cta { flex-direction: column; }

  .pillars-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .float-side { top: auto; bottom: 20px; transform: none; flex-direction: row; right: 12px; gap: 8px; }
  .float-btn { border-radius: 50% !important; width: 46px; height: 46px; box-shadow: 0 4px 12px rgba(0,0,0,.2); }
  .float-btn:hover { width: 46px; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 13px 22px; font-size: .92rem; }
  .cta-final-buttons { flex-direction: column; }
  .hero-content h1 { font-size: 1.8rem; }
}
