/* ═══════════════════════════════════════════════════════════════
   JC Prestige — Feuille de style principale
   Design : Bleu marine & or élégant
   ═══════════════════════════════════════════════════════════════ */

/* ─── Variables CSS ──────────────────────────────────────────── */
:root {
  --navy:       #1a2744;
  --navy-dark:  #111b33;
  --navy-light: #243460;
  --gold:       #c9a84c;
  --gold-light: #e4c97a;
  --gold-dark:  #a8893a;
  --cream:      #f8f6f0;
  --white:      #ffffff;
  --gray-100:   #f4f4f5;
  --gray-200:   #e4e4e7;
  --gray-400:   #a1a1aa;
  --gray-600:   #52525b;
  --gray-800:   #27272a;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Montserrat', 'Segoe UI', sans-serif;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14);
  --transition: all .25s ease;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  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; }

/* ─── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-400); }
.text-center { text-align: center; }
.label-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title-white { color: var(--white); }
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle-white { color: rgba(255,255,255,.65); }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.5);
}
.btn-sm { padding: .625rem 1.25rem; font-size: .875rem; }

/* ─── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ─── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge-gold {
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
}
/* ─── HEADER STICKY (topbar + navbar) ────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
}

/* ─── TOP BAR ─────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: .75rem;
  padding: .5rem 0;
  display: none;
}
@media (min-width: 768px) { .topbar { display: block; } }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-label {
  color: rgba(201,168,76,.8);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .65rem;
}
.topbar-links { display: flex; align-items: center; gap: 1.5rem; }
.topbar-links a {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.topbar-links a:hover { color: var(--gold); }
.topbar-links svg { width: 12px; height: 12px; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: relative;
  z-index: auto;
  background: var(--navy);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.25); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(201,168,76,.3);
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-sub {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,.1);
  color: var(--gold);
}
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
  background: none;
  border: none;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-link {
  display: block;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: .25rem;
}
.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu-cta .btn { justify-content: center; }
.mobile-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  padding: .5rem;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/jcprestige-hero-nettoyage-apres-construction-bureau-professionnel-drummondville.webp');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,27,51,.92) 0%, rgba(26,39,68,.80) 60%, rgba(26,39,68,.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 780px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 .highlight { color: var(--gold); }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero-lead strong { color: rgba(255,255,255,.9); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-checks { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
.hero-check {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
}
.hero-check svg { color: var(--gold); flex-shrink: 0; }
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 60px; }

/* ─── STATS ──────────────────────────────────────────────────── */
.stats { padding: 3rem 0; background: var(--white); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: var(--radius-xl);
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label { font-size: .8125rem; color: var(--gray-400); font-weight: 500; }

/* ─── SECTIONS ───────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-bg-cream { background: var(--cream); }
.section-bg-navy {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.section-header { margin-bottom: 3.5rem; }
.section-title-underline::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ─── SERVICES GRID ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card { padding: 2rem; position: relative; overflow: hidden; }
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(26,39,68,.03);
  border-radius: 0 0 0 100%;
}
.service-icon {
  width: 3.25rem;
  height: 3.25rem;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(26,39,68,.2);
}
.service-card:hover .service-icon { background: var(--gold); }
.service-icon svg { color: var(--white); width: 22px; height: 22px; transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--navy); }
.service-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: .75rem;
}
.service-card p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; }
.service-highlight {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gold);
}
.service-highlight svg { width: 14px; height: 14px; }

/* ─── WHY US ─────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: var(--transition);
}
.why-card:hover { border-color: rgba(201,168,76,.3); }
.why-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(201,168,76,.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .75rem;
}
.why-icon svg { color: var(--gold); width: 18px; height: 18px; }
.why-card h4 { font-size: .9375rem; color: var(--white); margin-bottom: .4rem; font-family: var(--font-sans); font-weight: 600; }
.why-card p { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ─── ZONES ──────────────────────────────────────────────────── */
.zones-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.zone-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
}
.zone-pill:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.zone-pill svg { color: var(--gold); width: 14px; height: 14px; }
.zones-note { text-align: center; margin-top: 1.5rem; font-size: .875rem; color: var(--gray-400); }
.zones-note a { color: var(--navy); font-weight: 600; }
.zones-note a:hover { color: var(--gold); }

/* ─── CTA BOX ────────────────────────────────────────────────── */
.cta-box {
  background: var(--navy);
  border-radius: 1.5rem;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before, .cta-box::after {
  content: '';
  position: absolute;
  width: 18rem;
  height: 18rem;
  background: var(--gold);
  border-radius: 50%;
  opacity: .06;
  filter: blur(60px);
}
.cta-box::before { top: -4rem; left: 20%; }
.cta-box::after { bottom: -4rem; right: 20%; }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); color: var(--white); margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ─── PAGE HEADER ────────────────────────────────────────────── */
.page-header {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 24rem;
  height: 24rem;
  background: var(--gold);
  border-radius: 50%;
  opacity: .06;
  filter: blur(60px);
}
.page-header > .container { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); color: var(--white); margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ─── SERVICES PAGE ──────────────────────────────────────────── */
.service-detail { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; margin-bottom: 5rem; }
@media (min-width: 1024px) { .service-detail { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail.reverse .service-detail-content { order: 1; }
.service-detail-img { position: relative; }
.service-detail-img img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.service-detail-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--gold);
  color: var(--navy);
  padding: .75rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .875rem;
  box-shadow: var(--shadow-md);
}
.service-detail-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.service-detail-icon {
  width: 3rem;
  height: 3rem;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-detail-icon svg { color: var(--gold); width: 20px; height: 20px; }
.service-detail-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--navy); margin-bottom: 1rem; }
.service-detail-content p { color: var(--gray-600); line-height: 1.75; margin-bottom: 1.5rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  margin-bottom: 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(39,39,42,.8);
}
.feature-item svg { color: var(--gold); width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }

/* ─── MISSION PAGE ───────────────────────────────────────────── */
.mission-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .mission-grid { grid-template-columns: 1fr 1fr; } }
.mission-img-wrap { position: relative; }
.mission-img-wrap img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.mission-floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  max-width: 280px;
}
.mission-floating-card-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.mission-floating-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(201,168,76,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-floating-icon svg { color: var(--gold); width: 18px; height: 18px; }
.mission-floating-card h4 { font-size: .9rem; color: var(--navy); font-family: var(--font-sans); font-weight: 700; }
.mission-floating-card .sub { font-size: .75rem; color: var(--gray-400); }
.mission-floating-card p { font-size: .8rem; color: var(--gray-400); line-height: 1.5; }
.checklist { list-style: none; margin: 1.5rem 0 2rem; }
.checklist li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .4rem 0;
  font-size: .9rem;
  color: rgba(39,39,42,.8);
}
.checklist li svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { padding: 1.75rem; }
.value-icon {
  width: 3rem;
  height: 3rem;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.value-icon svg { color: var(--gold); width: 20px; height: 20px; }
.value-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: .6rem; }
.value-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.65; }
.zones-navy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .zones-navy-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .zones-navy-grid { grid-template-columns: repeat(7, 1fr); } }
.zone-navy-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  transition: var(--transition);
}
.zone-navy-card:hover { border-color: rgba(201,168,76,.4); background: rgba(255,255,255,.1); }
.zone-navy-card svg { color: var(--gold); width: 18px; height: 18px; margin: 0 auto .5rem; display: block; }
.zone-navy-card .city { font-size: .875rem; font-weight: 600; color: var(--white); }
.zone-navy-card .region { font-size: .65rem; color: rgba(255,255,255,.4); margin-top: .2rem; }

/* ─── GALERIE ────────────────────────────────────────────────── */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2.5rem; }
.filter-btn {
  padding: .5rem 1.25rem;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 500;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,27,51,.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { color: var(--white); font-size: .875rem; font-weight: 600; }
.gallery-overlay-cat { font-size: .7rem; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; }
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-lg); object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.25rem;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.gallery-empty { text-align: center; padding: 4rem 0; color: var(--gray-400); }

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 1rem; }
.contact-info > p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 3rem;
  height: 3rem;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-item:hover .contact-item-icon { background: var(--gold); }
.contact-item-icon svg { color: var(--white); width: 18px; height: 18px; transition: var(--transition); }
.contact-item:hover .contact-item-icon svg { color: var(--navy); }
.contact-item-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); margin-bottom: .2rem; }
.contact-item-value { font-weight: 700; color: var(--navy); font-size: 1.05rem; transition: color .2s; }
.contact-item:hover .contact-item-value { color: var(--gold); }
.contact-item-sub { font-size: .75rem; color: var(--gray-400); }
.asp-badge {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}
.asp-badge-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.asp-badge-header svg { color: var(--gold); width: 20px; height: 20px; }
.asp-badge-header span { color: var(--white); font-weight: 600; font-size: .9rem; }
.asp-badge p { color: rgba(255,255,255,.55); font-size: .8rem; line-height: 1.6; }
/* Form */
.form-card { padding: 2.5rem; }
.form-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: .4rem; }
.form-card .form-subtitle { font-size: .875rem; color: var(--gray-400); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--gray-800); }
.form-group label .req { color: var(--gold); }
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,39,68,.08); }
.form-control.error { border-color: #ef4444; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-error { font-size: .8rem; color: #ef4444; }
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  width: 4rem;
  height: 4rem;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.success-icon svg { color: #16a34a; width: 32px; height: 32px; }
.form-success h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: .75rem; }
.form-success p { color: var(--gray-600); margin-bottom: 1.5rem; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.7); }
.footer-main { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .75rem; }
.footer-contact-item svg { color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item span { font-size: .875rem; color: rgba(255,255,255,.6); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  text-align: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
}
@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ─── SVG ICONS (inline) ─────────────────────────────────────── */
.icon { display: inline-block; vertical-align: middle; }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeInUp .6s ease forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ─── UTILITIES ──────────────────────────────────────────────── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .two-col-grid { grid-template-columns: 1fr; } }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .service-detail-badge { bottom: -.75rem; right: -.75rem; }
  .mission-floating-card { display: none; }
}
