/* ============================================================
   MON PLOMBIER 237 — World-Class Design System
   Direction: Industrial Luxury | Bleu #003B8E + Rouge #C8102E
   Typographie: Oswald (display) + Lato (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&display=swap');

:root {
  --cyan: #00BCD4;
  --blue:        #003B8E;
  --blue-mid:    #0050C8;
  --blue-light:  #1A6FD4;
  --red:         #C8102E;
  --red-dark:    #9B0D22;
  --gold:        #00BCD4;
  --white:       #FFFFFF;
  --off-white:   #F4F6FA;
  --light:       #E8ECF3;
  --muted:       #8A96AA;
  --dark-mid:    #3A4A5E;
  --dark:        #0C1828;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Lato', sans-serif;

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.18);
  --shadow-xl:  0 40px 100px rgba(0,0,0,0.25);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.28s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ═══════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════ */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 100px 0; }
.section-sm  { padding: 64px 0; }

.label { color: #00BCD4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  padding: 6px 0;
  position: relative;
}

.label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.label.blue { color: var(--blue); }
.label.blue::before { background: var(--blue); }

.label.gold { color: var(--cyan); }
.label.gold::before { background: var(--gold); }

.title-xl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.title-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.title-md {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.accent    { color: var(--red); }
.accent-b  { color: var(--blue); }
.accent-g  { color: var(--cyan); }

.body-lg { font-size: 1.1rem; line-height: 1.85; color: var(--dark-mid); }
.body-md { font-size: 1rem;   line-height: 1.8;  color: var(--dark-mid); }
.body-sm { font-size: 0.9rem; line-height: 1.7;  color: var(--muted); }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}

.btn:hover::after { opacity: 1; }

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(200,16,46,0.3);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,16,46,0.4);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(0,59,142,0.3);
}
.btn-blue:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,59,142,0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border-color: var(--light);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-sm { padding: 10px 22px; font-size: 0.78rem; }

/* ═══════════════════════════════════════════════
   HEADER / NAVBAR — World-class
═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              padding var(--t) var(--ease);
}

/* Transparent on top of hero */
.site-header.hero-mode {
  background: transparent;
  padding: 8px 0;
}

/* Scrolled state */
.site-header.scrolled {
  background: rgba(8, 18, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06),
              0 8px 40px rgba(0,0,0,0.35);
  padding: 0;
}

/* Non-hero pages (always solid) */
.site-header.solid {
  background: rgba(8, 18, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: height var(--t) var(--ease);
}

.site-header.scrolled .nav-inner { height: 66px; }

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 46px; height: 46px;
  background: var(--red);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t) var(--ease);
}

.nav-logo:hover .nav-logo-mark { transform: rotate(-5deg) scale(1.05); }

.nav-logo-mark svg { width: 24px; height: 24px; fill: var(--white); }

.nav-logo-text { line-height: 1; }

.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  display: block;
}

.nav-logo-tag {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-top: 2px;
}

/* DESKTOP NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--t) var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
  transform-origin: left;
}

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

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-links a.active { color: var(--white); }

/* NAV RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  color: var(--cyan);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(212,168,67,0.3);
  transition: all var(--t) var(--ease);
}

.nav-phone-link svg { width: 14px; height: 14px; fill: var(--gold); }

.nav-phone-link:hover {
  background: rgba(212,168,67,0.1);
  border-color: var(--cyan);
}

/* HAMBURGER BUTTON — Clean 3-bar with X animation */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: all var(--t) var(--ease);
  position: relative;
  z-index: 1100;
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}

/* X state */
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   MOBILE OVERLAY NAV — Full screen premium
═══════════════════════════════════════════════ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  pointer-events: none;
  /* Panel slides from right */
}

.mobile-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 28, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.mobile-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--dark);
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.1, 1);
  box-shadow: -24px 0 80px rgba(0,0,0,0.5);
  overflow-y: auto;
  overflow-x: hidden;
}

/* Panel accent bar */
.mobile-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--red) 0%, var(--blue) 100%);
}

/* Open state */
.mobile-overlay.open {
  pointer-events: all;
}
.mobile-overlay.open .mobile-overlay-bg { opacity: 1; }
.mobile-overlay.open .mobile-panel { transform: translateX(0); }

/* Panel header */
.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.mobile-panel-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-panel-logo-mark {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}

.mobile-panel-logo-mark svg { width: 20px; height: 20px; fill: white; }

.mobile-panel-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--white);
}

.mobile-close {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all var(--t) var(--ease);
}

.mobile-close:hover {
  background: var(--red);
  border-color: var(--red);
}

.mobile-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Panel nav links */
.mobile-nav-links {
  padding: 32px 28px;
  flex: 1;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: all var(--t) var(--ease);
}

.mobile-nav-links a svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--t) var(--ease);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--white);
  padding-left: 4px;
}

.mobile-nav-links a:hover svg,
.mobile-nav-links a.active svg {
  opacity: 1;
  transform: translateX(0);
  color: var(--red);
}

.mobile-nav-links a.active { color: var(--red); }

/* Panel footer */
.mobile-panel-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.mobile-panel-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.mobile-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-contact-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.mobile-contact-icon svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

.mobile-contact-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.65);
}

.mobile-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all var(--t) var(--ease);
  box-shadow: 0 4px 20px rgba(200,16,46,0.35);
}

.mobile-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,16,46,0.45);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80') center/cover no-repeat;
  opacity: 0.12;
  transform: scale(1.05);
  animation: heroScale 10s ease-out forwards;
}

@keyframes heroScale {
  to { transform: scale(1); opacity: 0.1; }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #030C1E 0%,
    #031444 45%,
    #051A52 100%
  );
  opacity: 0.92;
}

/* Geometric accent */
.hero-geo {
  position: absolute;
  right: -5vw; top: 50%;
  transform: translateY(-50%);
  width: 55vw; height: 90vh;
  border: 1px solid rgba(200,16,46,0.12);
  border-radius: 2px;
  pointer-events: none;
}

.hero-geo::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(200,16,46,0.08);
}

.hero-geo::after {
  content: '';
  position: absolute;
  right: 0; top: 15%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,80,200,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,80,200,0.08) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 96px;
  min-height: 100vh;
}

.hero-text {}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s var(--ease) both;
}

.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 0.6s var(--ease) 0.1s both;
}

.hero-title .line-red { color: var(--red); }
.hero-title .line-outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.35);
  color: transparent;
}

.hero-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
  padding-left: 16px;
  border-left: 2px solid var(--red);
  line-height: 1.6;
  animation: fadeUp 0.6s var(--ease) 0.2s both;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  margin-bottom: 42px;
  animation: fadeUp 0.6s var(--ease) 0.25s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s var(--ease) 0.32s both;
}

.hero-divider {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 44px 0;
  animation: fadeUp 0.6s var(--ease) 0.38s both;
}

.hero-stats {
  display: flex;
  gap: 44px;
  animation: fadeUp 0.6s var(--ease) 0.44s both;
}

.stat {}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 5px;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  animation: fadeRight 0.8s var(--ease) 0.3s both;
}

.hero-img-frame {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(200,16,46,0.2) 0%, transparent 50%);
}

.hero-img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hero-badge-1 {
  position: absolute;
  bottom: -20px; left: -24px;
  z-index: 3;
  background: var(--red);
  color: var(--white);
  padding: 18px 24px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.hero-badge-1 .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1;
}

.hero-badge-1 .txt {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 3px;
}

.hero-badge-2 {
  position: absolute;
  top: -16px; right: -16px;
  z-index: 3;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hero-badge-2 svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin: 0 auto 6px; }

.hero-badge-2 .txt {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════════
   TICKER STRIP
═══════════════════════════════════════════════ */
.ticker {
  background: var(--red);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

.ticker-item svg {
  width: 14px; height: 14px;
  stroke: rgba(255,255,255,0.7);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--t) var(--ease);
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: all var(--t) var(--ease);
}

.svc-icon svg {
  width: 26px; height: 26px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .svc-icon {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.svc-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}

.svc-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  transition: all var(--t) var(--ease);
}

.svc-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform var(--t) var(--ease);
}

.svc-link:hover { color: var(--red); gap: 10px; }
.svc-link:hover svg { transform: translateX(3px); }

/* ═══════════════════════════════════════════════
   WHY US (dark section)
═══════════════════════════════════════════════ */
.why-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,80,200,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,80,200,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
}

.why-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red) 0%, transparent 100%);
}

.why-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.why-img-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

.why-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0.25) 0%, rgba(0,59,142,0.2) 100%);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  transition: all var(--t) var(--ease);
  background: rgba(255,255,255,0.02);
}

.why-point:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(200,16,46,0.25);
  transform: translateX(4px);
}

.why-pt-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: var(--r-sm);
  background: rgba(200,16,46,0.12);
  border: 1px solid rgba(200,16,46,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t) var(--ease);
}

.why-pt-icon svg {
  width: 20px; height: 20px;
  stroke: var(--red); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.why-point:hover .why-pt-icon {
  background: var(--red);
  border-color: var(--red);
}

.why-point:hover .why-pt-icon svg { stroke: var(--white); }

.why-pt-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}

.why-pt-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 10px;
  margin-top: 52px;
}

.gal-item {
  overflow: hidden;
  border-radius: var(--r-md);
  position: relative;
  cursor: pointer;
}

.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }

.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}

.gal-item:hover img { transform: scale(1.07); }

.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,20,68,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
  display: flex; align-items: flex-end;
  padding: 20px;
}

.gal-item:hover .gal-overlay { opacity: 1; }

.gal-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testi-bg { background: var(--off-white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light);
  position: relative;
  transition: all var(--t) var(--ease);
}

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

.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.testi-stars {
  display: flex; gap: 3px;
}

.testi-stars svg {
  width: 14px; height: 14px;
  fill: var(--gold);
  stroke: none;
}

.testi-quote svg {
  width: 28px; height: 28px;
  fill: var(--red);
  opacity: 0.15;
}

.testi-text {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--dark-mid);
  font-style: italic;
  margin-bottom: 22px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  color: var(--dark);
}

.testi-loc {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex; align-items: center; gap: 4px;
  margin-top: 2px;
}

.testi-loc svg {
  width: 11px; height: 11px;
  stroke: var(--muted); fill: none; stroke-width: 2;
}

/* ═══════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════ */
.cta-band {
  background: var(--red);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 24px,
    rgba(0,0,0,0.04) 24px, rgba(0,0,0,0.04) 25px
  );
}

.cta-band::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.15));
}

.cta-inner {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-title-block {}

.cta-band-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}

.cta-band-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
}

.cta-band-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,80,200,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,80,200,0.08) 1px, transparent 1px);
  background-size: 80px 80px;
}

.page-hero-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red) 50%, transparent);
}

.page-hero-content { position: relative; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--cyan); transition: color var(--t); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.3; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: #070F20;
  color: var(--white);
  border-top: 3px solid var(--red);
  padding: 72px 0 0;
}

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

.footer-brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin: 18px 0 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t) var(--ease);
  cursor: pointer;
}

.social-btn svg {
  width: 16px; height: 16px;
  stroke: rgba(255,255,255,0.5);
  fill: none; stroke-width: 1.8;
  transition: stroke var(--t);
}

.social-btn:hover { background: var(--red); border-color: var(--red); }
.social-btn:hover svg { stroke: var(--white); }

.footer-col-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--t) var(--ease);
  padding: 2px 0;
}

.footer-links a svg {
  width: 11px; height: 11px;
  stroke: currentColor; fill: none; stroke-width: 2;
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--t) var(--ease);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-links a:hover svg {
  opacity: 1;
  transform: translateX(0);
  stroke: var(--red);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.fc-icon {
  width: 34px; height: 34px; min-width: 34px;
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.15);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}

.fc-icon svg {
  width: 14px; height: 14px;
  stroke: var(--red); fill: none; stroke-width: 1.8;
}

.fc-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.fc-text a { color: inherit; transition: color var(--t); }
.fc-text a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

.footer-credit a {
  color: rgba(255,255,255,0.35);
  transition: color var(--t);
  font-weight: 700;
}

.footer-credit a:hover { color: var(--cyan); }

/* ═══════════════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.wa-label {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}

.wa-float:hover .wa-label {
  opacity: 1;
  transform: translateY(0);
}

.wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all var(--t) var(--ease);
  animation: waPulse 2.5s ease infinite;
  text-decoration: none;
}

.wa-btn svg {
  width: 26px; height: 26px;
  fill: var(--white);
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.1); }
}

.scroll-top-btn {
  position: fixed;
  bottom: 100px; right: 30px;
  z-index: 900;
  width: 42px; height: 42px;
  background: var(--blue);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--t) var(--ease);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.scroll-top-btn svg {
  width: 18px; height: 18px;
  stroke: var(--white); fill: none; stroke-width: 2;
}

.scroll-top-btn.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--red);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════ */
.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-mid);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--light);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: all var(--t) var(--ease);
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,80,200,0.08);
}

textarea.form-control { resize: vertical; min-height: 130px; }

select.form-control { cursor: pointer; }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; min-height: auto; padding: 96px 0 60px; align-items: start; }
  .hero-text { max-width: 100%; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; }
  .why-img-wrap { display: none; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gal-item.tall { grid-row: span 1; }
  .gal-item.wide { grid-column: span 1; }
  .gallery-mosaic .gal-item { height: 240px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
}

@media (max-width: 768px) {
  /* Hide desktop nav elements */
  .nav-links, .nav-phone-link, .nav-right .btn { display: none; }
  /* Show hamburger */
  .nav-toggle { display: flex; }

  .hero-eyebrow { animation: none; }
  .hero-title { font-size: clamp(1.8rem, 5vw, 2.8rem); animation: none; }
  .hero-tagline { animation: none; }
  .hero-desc { animation: none; max-width: 100%; }
  .hero-actions { animation: none; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-divider { animation: none; }
  .hero-stats { animation: none; gap: 28px; flex-wrap: wrap; }

  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  
  .section-pad { padding: 64px 0; }
  .why-pt-title { font-size: 0.88rem; }
  .testi-avatar { width: 40px; height: 40px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  
  .hero-content { padding: 80px 0 40px; }
  .hero-title { font-size: clamp(1.5rem, 4.5vw, 2.2rem); line-height: 1; }
  .hero-eyebrow-text { font-size: 0.7rem; }
  .hero-desc { font-size: 0.9rem; margin-bottom: 28px; }
  .hero-divider { margin: 32px 0; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.65rem; }
  
  .gallery-mosaic { grid-template-columns: 1fr; }
  .gallery-mosaic .gal-item { height: 220px; }
  .gallery-mosaic .gal-item.wide { grid-column: span 1; }
  
  .page-hero { padding: 120px 0 60px; }
  .title-xl { font-size: clamp(1.6rem, 4vw, 2.4rem); }
  .title-lg { font-size: clamp(1.4rem, 3.5vw, 2rem); }
  
  .wa-float { bottom: 20px; right: 16px; }
  .scroll-top-btn { bottom: 90px; right: 16px; }
}

.accent { color: #00BCD4; }
