/*
Theme Name:        2B Clean - Hello Elementor Child
Theme URI:         https://www.2b-clean.fr
Description:       Thème enfant de Hello Elementor pour 2B Clean - Entreprise de nettoyage professionnel Nice, Monaco, Alpes-Maritimes
Author:            2B Clean
Author URI:        https://www.2b-clean.fr
Template:          hello-elementor
Version:           1.0.0
Requires at least: 5.9
Tested up to:      6.5
Requires PHP:      7.4
License:           GNU General Public License v2 or later
License URI:       https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       2bclean-child
Tags:              cleaning, professional, child-theme, elementor
*/

/* ================================================================
   2B CLEAN — DESIGN SYSTEM & GLOBAL STYLES
   ================================================================ */

/* ── Variables ── */
:root {
  /* Palette */
  --c-navy:        #0b1c3a;
  --c-navy-light:  #122248;
  --c-navy-mid:    #0f1e45;
  --c-green:       #7dc242;
  --c-green-dark:  #5fa32e;
  --c-green-light: #a0d660;
  --c-blue:        #3b82f6;
  --c-blue-light:  #60b4f5;
  --c-white:       #ffffff;
  --c-off-white:   #f5f7fa;
  --c-gray-50:     #f9fafb;
  --c-gray-100:    #f0f2f5;
  --c-gray-200:    #e2e6ed;
  --c-gray-400:    #9ca3af;
  --c-gray-600:    #6b7280;
  --c-text:        #1a2540;
  --c-text-light:  #5a6a85;

  /* Typographie */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Espacements */
  --section-py:   80px;
  --container:    1200px;
  --r:            12px;
  --r-lg:         20px;

  /* Ombres */
  --shadow-sm:  0 2px 8px rgba(11,28,58,.08);
  --shadow-md:  0 8px 32px rgba(11,28,58,.12);
  --shadow-lg:  0 20px 60px rgba(11,28,58,.18);

  /* Transitions */
  --t: .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset complémentaire ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t); }

/* ================================================================
   HEADER / TOPBAR / NAVBAR
   ================================================================ */

/* Top bar */
.site-topbar {
  background: var(--c-navy);
  padding: 8px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  font-family: var(--font-body);
}
.site-topbar .topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-sep { opacity: .3; }
.site-topbar a:hover { color: var(--c-green); }

/* Navbar principale */
.site-header.header-custom {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t);
}
.site-header.header-custom.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
.site-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo-wrap img { height: 46px; width: auto; }
.logo-text-block { line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--c-navy);
  display: block;
}
.logo-name span { color: var(--c-green); }
.logo-tagline {
  font-size: .68rem;
  color: var(--c-text-light);
  font-weight: 400;
  display: block;
  letter-spacing: .03em;
}

/* Nav links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.site-nav > li { position: relative; list-style: none; }
.site-nav > li > a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .9rem;
  color: var(--c-text);
  padding: 8px 13px;
  border-radius: 8px;
  display: block;
  transition: all var(--t);
}
.site-nav > li > a:hover,
.site-nav > li.current-menu-item > a,
.site-nav > li.current-menu-ancestor > a {
  color: var(--c-green);
  background: rgba(125,194,66,.08);
}
.site-nav .menu-item-has-children > a::after {
  content: '▾';
  margin-left: 5px;
  font-size: .72rem;
  opacity: .7;
}

/* Dropdown */
.site-nav .sub-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--c-white);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-gray-200);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--t);
  z-index: 200;
  list-style: none;
  padding: 6px 0;
}
.site-nav .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: .88rem;
  font-family: var(--font-body);
  color: var(--c-text);
  border-bottom: 1px solid var(--c-gray-100);
  transition: all var(--t);
}
.site-nav .sub-menu li:last-child a { border-bottom: none; }
.site-nav .sub-menu li a:hover { background: var(--c-gray-50); color: var(--c-green); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--c-navy);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.header-phone .phone-icon { color: var(--c-green); }

/* Cacher les boutons secondaires en dessous de 1280px pour éviter le débordement */
@media (max-width: 1280px) {
  .header-actions .btn-outline-dark:not(.btn-devis),
  .header-phone { display: none; }
}
@media (max-width: 1100px) {
  .site-nav > li > a { padding: 8px 9px; font-size: .84rem; }
}

/* Hamburger mobile */
.menu-toggle-btn {
  display: none;
  background: none;
  border: 1px solid var(--c-gray-200);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: var(--c-navy);
  margin-left: auto;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-navy);
  z-index: 9999;
  padding: 24px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  align-self: flex-end;
  padding: 8px;
}
.mobile-nav ul { list-style: none; margin-top: 32px; }
.mobile-nav ul li a {
  display: block;
  color: rgba(255,255,255,.9);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav ul li a:hover { color: var(--c-green); }

/* ================================================================
   BOUTONS GLOBAUX
   ================================================================ */
.btn, .elementor-button {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display) !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  padding: 13px 28px !important;
  cursor: pointer;
  border: none;
  transition: all var(--t) !important;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1 !important;
}
.btn-primary, .elementor-button.btn-primary {
  background: var(--c-green) !important;
  color: var(--c-white) !important;
}
.btn-primary:hover {
  background: var(--c-green-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(125,194,66,.4) !important;
  color: var(--c-white) !important;
}
.btn-outline-white {
  background: transparent !important;
  color: var(--c-white) !important;
  border: 2px solid rgba(255,255,255,.55) !important;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1) !important;
  border-color: var(--c-white) !important;
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent !important;
  color: var(--c-navy) !important;
  border: 2px solid var(--c-navy) !important;
}
.btn-outline-dark:hover {
  background: var(--c-navy) !important;
  color: var(--c-white) !important;
}
.btn-sm { padding: 9px 20px !important; font-size: .85rem !important; }

/* ================================================================
   COMPOSANTS RÉUTILISABLES (Classes Elementor Custom CSS + PHP)
   ================================================================ */

/* Section label */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--c-green);
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 2px;
}

/* Titres section */
.section-title {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  color: var(--c-navy) !important;
}
.section-title .accent        { color: var(--c-green) !important; }
.section-title .accent-blue   { color: var(--c-blue-light) !important; }
.section-title .accent-white  { color: var(--c-white) !important; }

/* Stats bar */
.stats-bar {
  background: var(--c-navy-light);
  padding: 28px 0;
}
.stats-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat-icon {
  width: 46px; height: 46px;
  background: rgba(125,194,66,.15);
  border: 1px solid rgba(125,194,66,.28);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-green);
  flex-shrink: 0;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.58);
  line-height: 1.3;
}

/* Service cards */
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-200);
  border-radius: var(--r);
  padding: 28px 20px 22px;
  text-align: center;
  transition: all var(--t);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  border-color: var(--c-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  color: inherit;
}
.service-card .sc-icon {
  width: 60px; height: 60px;
  background: rgba(125,194,66,.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--c-green);
  transition: all var(--t);
}
.service-card:hover .sc-icon { background: var(--c-green); color: var(--c-white); }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-navy);
  margin-bottom: 8px;
}
.service-card p {
  font-size: .83rem;
  color: var(--c-text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}
.service-card .sc-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Feature list (checkmarks) */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  font-size: .95rem;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-gray-100);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .check {
  width: 22px; height: 22px;
  background: var(--c-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list .check svg { width: 12px; height: 12px; color: white; }

/* Avant/Après slider */
.ba-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  user-select: none;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba-after { clip-path: inset(0 50% 0 0); transition: clip-path .05s; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 3;
}
.ba-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: white;
  color: var(--c-navy);
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  letter-spacing: -.05em;
}
.ba-label {
  position: absolute;
  bottom: 14px;
  font-size: .76rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: .04em;
}
.ba-label.before { left: 14px; background: rgba(11,28,58,.8); color: white; backdrop-filter: blur(6px); }
.ba-label.after  { right: 14px; background: var(--c-green); color: white; }

/* Why us bar */
.why-bar {
  background: var(--c-navy);
  padding: 52px 0;
}
.why-bar-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 800;
  color: var(--c-white);
  text-align: center;
  margin-bottom: 36px;
}
.why-bar-title .accent { color: var(--c-green); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.why-item { text-align: center; }
.why-icon {
  width: 54px; height: 54px;
  background: rgba(125,194,66,.1);
  border: 1px solid rgba(125,194,66,.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  color: var(--c-green);
}
.why-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--c-white);
  margin-bottom: 6px;
}
.why-item p {
  font-size: .79rem;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--c-gray-200);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow var(--t);
  background: var(--c-white);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--c-navy);
  gap: 12px;
}
.faq-icon {
  width: 28px; height: 28px;
  background: var(--c-gray-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--c-green);
  transition: all var(--t);
  font-weight: 300;
}
.faq-item.open .faq-icon { background: var(--c-green); color: white; transform: rotate(45deg); }
.faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all .32s ease;
  font-size: .9rem;
  color: var(--c-text-light);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 20px 18px; }

/* Testimonials */
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 28px 24px;
}
.testi-stars { color: #f59e0b; margin-bottom: 12px; font-size: 1rem; }
.testi-text {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 16px;
}
.testi-author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  color: var(--c-green);
}

/* Réalisations cards */
.real-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}
.real-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.real-card:hover img { transform: scale(1.06); }
.real-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(11,28,58,.85));
  color: white;
}
.real-title { font-weight: 700; font-size: .9rem; }
.real-sub   { font-size: .74rem; opacity: .75; }

/* Process steps */
.process-row {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px; right: 24px;
  height: 2px;
  background: var(--c-gray-200);
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.process-step .step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-navy);
  border: 2px solid var(--c-green);
  color: var(--c-green);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.process-step.active .step-num { background: var(--c-green); color: white; border-color: var(--c-green); }
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.process-step p { font-size: .8rem; color: var(--c-text-light); line-height: 1.45; }

/* Dark process (fond navy) */
.process-dark .process-row::before { background: rgba(255,255,255,.12); }
.process-dark .step-num { background: rgba(125,194,66,.12) !important; }
.process-dark .process-step h4 { color: white; }
.process-dark .process-step p { color: rgba(255,255,255,.55); }

/* CTA section */
.cta-section {
  background: var(--c-navy);
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}
.cta-section::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(125,194,66,.1), transparent 65%);
  pointer-events: none;
}
.cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cta-title .accent      { color: var(--c-green); }
.cta-title .accent-blue { color: var(--c-blue-light); }
.cta-sub { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 18px; }
.cta-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.cta-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; color: rgba(255,255,255,.65);
}
.cta-badge svg { color: var(--c-green); flex-shrink: 0; }
.cta-btns { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.cta-btns .btn { justify-content: center; min-width: 220px; }

/* Breadcrumb */
.breadcrumb-wrap {
  background: rgba(255,255,255,.06);
  padding: 10px 0;
  margin-bottom: 8px;
}
.breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .81rem;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--c-green); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .current { color: rgba(255,255,255,.85); }

/* Hero section */
.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--c-navy);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .28;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, var(--c-navy) 42%, rgba(11,28,58,.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 24px 72px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125,194,66,.15);
  border: 1px solid rgba(125,194,66,.3);
  color: var(--c-green-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 660px;
}
.hero-content h1 .green  { color: var(--c-green); }
.hero-content h1 .blue   { color: var(--c-blue-light); }
.hero-desc {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  max-width: 520px;
  line-height: 1.72;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--c-navy);
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.72);
  font-size: .88rem;
}
.footer-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 24px 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr 1.5fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 2px;
}
.footer-brand-name span { color: var(--c-green); }
.footer-tagline {
  font-size: .72rem;
  color: rgba(255,255,255,.38);
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.footer-desc {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 20px;
}
.social-links { display: flex; gap: 8px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  transition: all var(--t);
}
.social-links a:hover { background: var(--c-green); color: white; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .84rem;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 16px;
}
.footer-links-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links-list a { color: rgba(255,255,255,.62); font-size: .86rem; transition: color var(--t); }
.footer-links-list a:hover { color: var(--c-green); }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.62);
  font-size: .86rem;
}
.footer-contact-list svg { color: var(--c-green); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .77rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--c-green); }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ================================================================
   OVERRIDES ELEMENTOR
   ================================================================ */
.elementor-section.section-navy,
.e-container.section-navy { background: var(--c-navy) !important; }

.elementor-section.section-alt,
.e-container.section-alt { background: var(--c-off-white) !important; }

.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3,1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .site-nav, .header-actions .btn-outline-dark,
  .header-actions .header-phone { display: none; }
  .menu-toggle-btn { display: flex; }
}
@media (max-width: 768px) {
  :root { --section-py: 52px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: row; align-items: flex-start; }
  .process-row { flex-direction: column; gap: 24px; }
  .process-row::before { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: 1.9rem; }
  .cta-btns { flex-direction: column; }
}
