/* ═══════════════════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════════════════ */
:root {
  --navy:          #1C2B3A;
  --slate:         #2D4A5E;
  --accent:        #E8692A;
  --accent-hover:  #D45E22;
  --accent-pale:   #FEF3EC;
  --accent-light:  #FDCBA8;

  /* icon palette – plomberie */
  --blue:          #1565C0;
  --blue-pale:     #E8F0FE;
  --blue-light:    #BBDEFB;
  /* chauffage */
  --orange:        #E65100;
  --orange-pale:   #FFF3E0;
  /* climatisation */
  --teal:          #00838F;
  --teal-pale:     #E0F7FA;
  /* électricité */
  --purple:        #6A1FC2;
  --purple-pale:   #F3E5F5;
  /* carrelage */
  --brown:         #795548;
  --brown-pale:    #EFEBE9;

  --white:         #FFFFFF;
  --off-white:     #F8FAFB;
  --grey-100:      #F1F5F9;
  --grey-200:      #E2E8F0;
  --grey-400:      #94A3B8;
  --grey-500:      #64748B;
  --grey-700:      #334155;
  --grey-900:      #0F172A;
  --text:          #1E293B;
  --text-muted:    #64748B;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(28,43,58,.14);
  --shadow-lg:  0 8px 32px rgba(28,43,58,.22);
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  20px;
  --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ─── UTILITIES ─────────────────────────────────────────── */
.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

.section { padding-block: 96px; }
.bg-light { background: var(--off-white); }

.text-accent { color: var(--accent); }

.section-badge {
  display: inline-block;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .75rem;
}

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

/* ─── REVEAL ANIMATION ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--grey-200), var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  max-width: 1200px;
  margin-inline: auto;
  transition: padding var(--transition);
}

.navbar.scrolled .nav-inner { padding-block: .85rem; }

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.logo-initials {
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: .3rem .55rem;
  border-radius: var(--radius-sm);
}

.logo-name {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--white);
  transition: color var(--transition);
}

.navbar.scrolled .logo-name { color: var(--navy); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem .8rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.navbar.scrolled .nav-links a { color: var(--grey-700); }

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,.15);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--accent);
  background: var(--accent-pale);
}

.nav-cta {
  display: flex !important;
  align-items: center;
  gap: .4rem;
  background: var(--accent) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: .5rem 1.15rem !important;
  border-radius: 100px !important;
  margin-left: .5rem;
  box-shadow: 0 2px 12px rgba(232,105,42,.4);
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  box-shadow: 0 4px 20px rgba(232,105,42,.5) !important;
  transform: translateY(-1px);
  color: var(--white) !important;
}

.navbar.scrolled .nav-cta { background: var(--accent) !important; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.navbar.scrolled .nav-burger span { background: var(--navy); }

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1.25rem 1.5rem 1.75rem;
  border-top: 1px solid var(--grey-200);
  box-shadow: var(--shadow-md);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-700);
  border-bottom: 1px solid var(--grey-100);
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile a.nav-cta-mobile {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent);
  color: var(--white);
  padding: .75rem 1.25rem;
  border-radius: 100px;
  font-weight: 700;
  margin-top: .75rem;
  width: fit-content;
  border-bottom: none;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--slate) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Accent glow */
.hero::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,105,42,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
  padding-block: 9rem 6rem;
}

.hero-content { max-width: 700px; }

/* Certification badges */
.hero-badges {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 100px;
}

.hero-badge-chip svg { color: var(--accent); flex-shrink: 0; }

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}

.hero h1 span { color: var(--accent); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-desc strong { color: var(--white); font-weight: 600; }

/* Trade pills */
.hero-trades {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.trade-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: .84rem;
  font-weight: 600;
  padding: .35rem .85rem;
  border-radius: 100px;
  letter-spacing: .01em;
}

.trade-pill svg { color: var(--accent); flex-shrink: 0; }

/* Buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: .9rem 1.85rem;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(232,105,42,.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,105,42,.55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: .9rem 1.85rem;
  border-radius: 100px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ═══════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--white);
  padding-block: 2.25rem;
  border-bottom: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding-inline: 2.5rem;
}

.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--grey-200);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
}

.about-left h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.about-left p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-keys {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.key-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.key-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-pale);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent);
}

.key-text strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}

.key-text p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}

/* About card */
.about-card {
  background: linear-gradient(145deg, var(--navy), var(--slate));
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Certifications */
.about-certs {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: .35rem .8rem;
  border-radius: 100px;
  letter-spacing: .02em;
}

.cert-badge svg { color: var(--accent); width: 14px; height: 14px; }

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

.info-line {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.78);
}

.info-line svg { flex-shrink: 0; margin-top: .1rem; color: var(--accent); }
.info-line a { color: rgba(255,255,255,.9); font-weight: 600; }
.info-line a:hover { color: var(--white); }

.about-cta {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  padding: .85rem 1.5rem;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(232,105,42,.4);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.about-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 24px rgba(232,105,42,.5);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
  font-size: .88rem;
  font-weight: 600;
  color: var(--grey-700);
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
}

.icon-blue   { background: var(--blue-pale);   color: var(--blue);   }
.icon-orange { background: var(--orange-pale);  color: var(--orange); }
.icon-teal   { background: var(--teal-pale);    color: var(--teal);   }
.icon-purple { background: var(--purple-pale);  color: var(--purple); }
.icon-brown  { background: var(--brown-pale);   color: var(--brown);  }

/* Services toggle */
.services-grid.collapsed .service-card:nth-child(n+13) { display: none; }

@media (max-width: 767px) {
  .services-grid.collapsed .service-card:nth-child(n+7) { display: none; }
}

.services-toggle {
  text-align: center;
  margin-top: 2rem;
}

.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  color: var(--grey-700);
  font-size: .95rem;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-show-more:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-show-more svg { transition: transform .3s ease; }
.btn-show-more.open svg { transform: rotate(180deg); }

/* ═══════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--grey-100);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--grey-400);
  font-size: .82rem;
  font-weight: 500;
  background: var(--grey-100);
}

.gallery-item.no-img img { display: none; }
.gallery-item.no-img .gallery-placeholder { display: flex; }
.gallery-item.no-img { cursor: default; }
.gallery-item.no-img .gallery-overlay { display: none; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,43,58,.85) 0%, rgba(28,43,58,.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity .25s ease;
}

.gallery-item:not(.no-img):hover .gallery-overlay { opacity: 1; }

.gallery-label {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: .75rem;
  font-size: .95rem;
  color: var(--text-muted);
}

.overall-rating strong { color: var(--navy); font-size: 1.05rem; }

.stars-row { color: #FFC107; font-size: 1.3rem; letter-spacing: .05em; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin-inline: auto;
}

.t-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.t-stars { color: #FFC107; font-size: 1.1rem; letter-spacing: .05em; }

.t-text {
  color: var(--grey-700);
  font-size: .95rem;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.t-footer {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-100);
}

.t-avatar {
  width: 38px;
  height: 38px;
  background: var(--accent-pale);
  color: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.t-info { flex: 1; min-width: 0; }

.t-info strong {
  display: block;
  font-size: .9rem;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-info span { font-size: .78rem; color: var(--text-muted); }

.t-source {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 600;
  flex-shrink: 0;
}

.btn-all-reviews {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  color: var(--grey-700);
  font-size: .95rem;
  font-weight: 600;
  padding: .8rem 1.75rem;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.btn-all-reviews:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.ci-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.ci-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-pale);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ci-item strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}

.ci-item p { font-size: .9rem; color: var(--text-muted); line-height: 1.5; }
.ci-item a { color: var(--accent); font-weight: 600; }
.ci-item a:hover { text-decoration: underline; }

.ci-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: .9rem 1.5rem;
  border-radius: 100px;
  margin-top: 1.75rem;
  box-shadow: 0 4px 16px rgba(232,105,42,.4);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.ci-call-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,105,42,.5);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--grey-700);
}

.required { color: var(--accent); }

.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  background: var(--off-white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,105,42,.12);
  background: var(--white);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.form-group select { cursor: pointer; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: .95rem;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(232,105,42,.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: .25rem;
}

.btn-submit:hover:not(:disabled) {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232,105,42,.5);
}

.btn-submit:disabled { opacity: .65; cursor: not-allowed; }

.form-feedback {
  margin-top: 1rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  display: none;
}

.form-feedback.success {
  display: block;
  background: #F0FDF4;
  color: #166534;
  border: 1px solid #BBF7D0;
}

.form-feedback.error {
  display: block;
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ─── MAP ────────────────────────────────────────────────── */
.map-wrap {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.footer-logo img { height: 40px; width: auto; object-fit: contain; }

.footer-brand p {
  font-size: .9rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .85rem;
}

.stars-sm { color: #FFC107; }

.footer-nav h4,
.footer-contact h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }

.footer-nav li a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}

.footer-nav li a:hover { color: var(--white); }

.footer-contact p {
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: .5rem;
}

.footer-phone {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .3rem;
}

.footer-hours {
  font-size: .82rem !important;
  color: rgba(255,255,255,.45) !important;
  margin-top: .5rem !important;
}

.footer-bottom {
  padding: 1.5rem 0 5rem;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}

.lightbox[hidden] { display: none; }

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
  cursor: pointer;
}

.lb-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1100px);
  max-height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.lb-content img {
  max-height: 82svh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.lb-caption { color: rgba(255,255,255,.65); font-size: .88rem; }

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background var(--transition);
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.22); }

.lb-close { top: 1.25rem; right: 1.25rem; }
.lb-prev  { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-right { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding-block: 64px; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .hero-inner { padding-block: 7rem 5rem; }

  .stats-bar { padding-block: 0; }
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-sep { display: none; }
  .stat-item {
    padding: 1.35rem 1rem;
    border-right: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
  }
  .stat-item:nth-child(3),
  .stat-item:nth-child(7)  { border-right: none; }
  .stat-item:nth-child(5),
  .stat-item:nth-child(7)  { border-bottom: none; }
  .stat-num   { font-size: 1.6rem; }
  .stat-label { font-size: .72rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
}

/* ═══════════════════════════════════════════════════════════
   FAB CALL
═══════════════════════════════════════════════════════════ */
.fab-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: .75rem 1.25rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.fab-call:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,.3);
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding-inline: .75rem; }
  .stat-num { font-size: 1.5rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .contact-form-wrap { padding: 1.5rem; }
}
