/* ═══════════════════════════════════════════════════
   L-TRAN CONTRACTING — Main Stylesheet
   Brand: Navy #002952 · Red #e61a14 · Gold #c8a96e
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* ── Reset & Tokens ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #002952;
  --navy-dk: #001a38;
  --navy-lt: #0a3d6b;
  --red:     #e61a14;
  --red-dk:  #c8140e;
  --gold:    #c8a96e;
  --gold-lt: #dfc48f;
  --white:   #ffffff;
  --off-white: #f8f7f4;
  --cream:   #f2efe9;
  --dark:    #0f1724;
  --gray:    #6b7280;
  --gray-lt: #9ca3af;
  --border:  #e5e7eb;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Albert Sans', sans-serif;

  --max-w: 1280px;
  --pad-x: clamp(1.25rem, 5vw, 5rem);
  --section-py: clamp(4rem, 8vw, 7rem);

  --shadow-sm: 0 1px 4px rgba(0,41,82,0.08);
  --shadow-md: 0 4px 20px rgba(0,41,82,0.12);
  --shadow-lg: 0 12px 40px rgba(0,41,82,0.16);

  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ── Typography ── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.body-lg { font-size: clamp(1rem, 1.5vw, 1.125rem); line-height: 1.7; }
.body-sm { font-size: 0.875rem; line-height: 1.6; }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--section-py) 0; }
.section--dark  { background: var(--dark); color: var(--white); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--cream { background: var(--cream); }
.section--off   { background: var(--off-white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(230,26,20,0.3);
}
.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,26,20,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0,41,82,0.25);
}
.btn-navy:hover {
  background: var(--navy-lt);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: 1.125rem 2.25rem; font-size: 0.875rem; }

/* ── Section Headers ── */
.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}
.section-header--center { align-items: center; text-align: center; }
.section-header p {
  max-width: 52ch;
  color: var(--gray);
}
.section-header--center p { margin: 0 auto; }

/* ── Diagonal cut separator (signature element) ── */
.cut-top {
  position: relative;
  margin-top: -3vw;
  padding-top: calc(3vw + var(--section-py));
  clip-path: polygon(0 3vw, 100% 0, 100% 100%, 0 100%);
}
.cut-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3vw), 0 100%);
  padding-bottom: calc(3vw + var(--section-py));
}
.cut-both {
  clip-path: polygon(0 3vw, 100% 0, 100% calc(100% - 3vw), 0 100%);
  padding-top: calc(3vw + var(--section-py));
  padding-bottom: calc(3vw + var(--section-py));
}

/* ── Gold accent line ── */
.gold-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.topbar {
  background: var(--navy);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(200,169,110,0.2);
  position: relative;
  overflow: hidden;
}
.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    110deg, transparent, transparent 18px,
    rgba(255,255,255,0.018) 18px, rgba(255,255,255,0.018) 19px
  );
  pointer-events: none;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.8125rem;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  transition: all var(--transition);
}
.topbar-link:hover { color: var(--gold); background: rgba(200,169,110,0.08); }
.topbar-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
.topbar-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.3);
  padding: 0.2rem 0.75rem;
  border-radius: 3px;
}

.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--red) 100%);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
}
.logo-mark {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}
.logo-rule {
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold) 60%, transparent);
  margin: 2px 0;
}
.logo-sub {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark);
  background: none;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-dropdown-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1rem; right: 1.75rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.nav-dropdown-btn:hover { color: var(--navy); }
.nav-dropdown-btn:hover::after { transform: scaleX(1); }
.nav-dropdown-btn svg {
  width: 10px; height: 10px;
  transition: transform var(--transition);
}
.nav-dropdown.open .nav-dropdown-btn svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.375rem 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  transition: background var(--transition), color var(--transition);
}
.dropdown-item::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.dropdown-item:hover {
  background: var(--off-white);
  color: var(--navy);
}
.dropdown-item:hover::before { opacity: 1; }

/* Nav CTA */
.nav-cta { margin-left: 0.75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--off-white); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s;
}
.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 nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  padding: 7rem 2rem 2rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 0.5rem; }
.mobile-sub-links {
  display: none;
  flex-direction: column;
  gap: 0;
  padding-left: 1rem;
  background: rgba(255,255,255,0.03);
}
.mobile-sub-links.open { display: flex; }
.mobile-sub-link {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}
.mobile-sub-link:hover { color: var(--gold); }
.mobile-nav-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  margin-top: 1.5rem;
}
.mobile-contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.mobile-contact a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(540px, 88vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dk);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.35;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,25,56,0.96) 0%,
    rgba(0,41,82,0.82) 50%,
    rgba(0,41,82,0.55) 100%
  );
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero-content { display: flex; flex-direction: column; gap: 1.75rem; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold);
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--gold);
}
.hero-title { color: var(--white); }
.hero-title span { color: var(--gold); }
.hero-desc {
  color: rgba(255,255,255,0.75);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* Hero visual panel */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.hero-img-main::before {
  content: 'DECK PROJECT';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.15);
}
.hero-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-img-sm {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
}
.hero-badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}
.hero-badge-stars { color: #f59e0b; font-size: 0.875rem; }
.hero-badge-text { font-size: 0.8125rem; font-weight: 600; color: var(--dark); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes scrollBounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(4px); }
}

/* ══════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════ */
.trust-bar {
  background: var(--navy);
  padding: 1.5rem 0;
  position: relative;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
  gap: 0.2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════
   SERVICES CARDS
   ══════════════════════════════════════ */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  aspect-ratio: 16/9;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.service-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-lt);
  text-transform: uppercase;
}
.service-card-top-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.service-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.service-card-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.service-card-icon svg { width: 22px; height: 22px; color: var(--white); }
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
}
.service-card-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.65; }
.service-card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 0.625rem; }

/* ══════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream);
}
.why-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-lt);
  text-transform: uppercase;
}
.why-img-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  max-width: calc(100% - 2rem);
  background: rgba(0,41,82,0.82);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 0.9rem 1.15rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 14px 30px -10px rgba(0,20,45,0.6);
  border: 1px solid rgba(255,255,255,0.14);
}
.why-img-badge-icon {
  width: 2.1rem; height: 2.1rem; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center;
}
.why-img-badge-icon svg { width: 1.05rem; height: 1.05rem; stroke: var(--gold-lt); fill: none; stroke-width: 1.8; }
.why-img-badge-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-lt);
  line-height: 1;
}
.why-img-badge-text { font-size: 0.7rem; line-height: 1.3; color: rgba(255,255,255,0.82); }
.why-content { display: flex; flex-direction: column; gap: 1.75rem; }
.why-features { display: flex; flex-direction: column; gap: 1.25rem; }
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-feature-icon {
  width: 40px; height: 40px;
  background: rgba(0,41,82,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-feature-icon svg { width: 18px; height: 18px; color: var(--navy); }
.why-feature-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.why-feature-text p { font-size: 0.875rem; color: var(--gray); line-height: 1.55; }

/* ══════════════════════════════════════
   CUSTOMER EXPERIENCE CARDS
   ══════════════════════════════════════ */
.cx-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.cx-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.cx-card-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.cx-card-icon svg { width: 22px; height: 22px; color: var(--navy); }
.cx-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
}
.cx-card-text { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* ══════════════════════════════════════
   GALLERY PREVIEW
   ══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.gallery-item {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,41,82,0);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(0,41,82,0.3); }
.gallery-item-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-lt);
}
.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 16/7; }
.gallery-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 1; grid-row: 2; aspect-ratio: 4/3; }
.gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; aspect-ratio: 4/3; }
.gallery-item:nth-child(5) { grid-column: 3; grid-row: 2; aspect-ratio: 4/3; }

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.testimonial-location { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════ */
.cta-banner {
  background: var(--red);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
}
.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}
.cta-banner-title { color: var(--white); max-width: 25ch; }
.cta-banner-sub {
  color: rgba(255,255,255,0.8);
  max-width: 50ch;
  font-size: 1rem;
  line-height: 1.65;
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-desc { font-size: 0.875rem; line-height: 1.65; max-width: 32ch; }
.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.125rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.footer-contact-item svg {
  width: 14px; height: 14px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  gap: 1rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════ */
.page-hero {
  background: var(--navy-dk);
  padding: 6.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transform: scale(1.04);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,25,56,0.95) 0%, rgba(0,41,82,0.82) 45%, rgba(0,41,82,0.58) 100%);
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px; z-index: 2;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 50%, var(--red) 100%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero .container > * {
  max-width: 46rem;
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.page-hero-eyebrow::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--gold);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { font-size: 0.625rem; }
.page-hero-title { color: var(--white); }
.page-hero-sub {
  color: rgba(255,255,255,0.7);
  max-width: 52ch;
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* ══════════════════════════════════════
   PROCESS STEPS
   ══════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.08;
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.25rem;
}
.process-step-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step-icon svg { width: 22px; height: 22px; color: var(--gold); }
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
}
.process-step-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

/* ══════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.form-sub { font-size: 0.9rem; color: var(--gray); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dark);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,41,82,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 0.5rem; }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
}
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(0,41,82,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; color: var(--navy); }
.contact-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.2rem;
}
.contact-item-val {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
}
.contact-item-sub { font-size: 0.8125rem; color: var(--gray); margin-top: 0.125rem; }

/* ══════════════════════════════════════
   GALLERY PAGE
   ══════════════════════════════════════ */
.gallery-filters {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--off-white);
  color: var(--gray);
  border: 1.5px solid transparent;
  transition: all var(--transition);
}
.filter-btn:hover { background: var(--cream); color: var(--navy); }
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-full-item {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition);
}
.gallery-full-item:hover { transform: scale(1.02); }
.gallery-full-item.wide { grid-column: span 2; aspect-ratio: 16/7; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-img { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: clamp(3rem, 7vw, 5rem); }
  .topbar { display: none; }
  .nav-links, .nav-dropdown, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar .container { height: 68px; }
  .logo-name { font-size: 1rem; }
  .logo-sub { display: none; }
  .hero { min-height: 100svh; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.5rem; }
  .trust-bar .container { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .trust-item { padding: 0.75rem 1.5rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust-item:last-child { border-bottom: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: 1 / -1; }
  .gallery-full-grid { grid-template-columns: 1fr 1fr; }
  .gallery-full-item.wide { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; }
  .cut-top, .cut-bottom, .cut-both { clip-path: none; margin-top: 0; padding-top: var(--section-py); padding-bottom: var(--section-py); }
  .why-img-badge { right: 1rem; }
}

@media (max-width: 480px) {
  .trust-item { width: 50%; }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(2) { grid-column: 1; }
  .hero-stats { flex-direction: column; gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-up { opacity: 1; transform: none; }
}

/* ══ HERO SLIDER ══ */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-dot.active {
  background: var(--white);
  transform: scale(1.3);
  border-color: var(--white);
}
.hero-dot:hover { background: rgba(255,255,255,0.5); }

.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 5;
  pointer-events: none;
}
.hero-arrow {
  width: 44px; height: 64px;
  background: rgba(0,0,0,0.2);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hero-arrow:hover { background: rgba(0,0,0,0.45); }
.hero-arrow svg { width: 20px; height: 20px; }

/* ══ LOGO IMAGE ══ */
.logo-img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ══ TRUST BAR COUNTING ANIMATION ══ */
.trust-num {
  transition: color 0.3s;
}
.trust-item.counting .trust-num {
  color: var(--gold-lt);
}

/* ══ REVIEWS WIDGET SIDEBAR ══ */
.why-reviews {
  position: relative;
}
/* reviews-wrapper removed — let TrustIndex render freely */
.reviews-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.reviews-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

@media (max-width: 1024px) {
  .hero-arrows { display: none; }

}
@media (max-width: 768px) {
  .hero-arrows { display: none; }
  .logo-img { height: 44px; width: 44px; }
}

/* ════════════════════════════════════════════
   SERVICES CAROUSEL
   ════════════════════════════════════════════ */

.svc-section {
  position: relative;
  overflow: hidden;
  background: #002952;
}

/* Header row */
.svc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem clamp(1.25rem,5vw,5rem) 0;
  position: relative;
  z-index: 20;
}
.svc-header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.svc-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.svc-counter {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}
#svc-current-num {
  color: var(--gold);
}
.svc-header-nav {
  display: flex;
  gap: 0.75rem;
}
.svc-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.svc-arrow:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.svc-arrow svg { width: 18px; height: 18px; }

/* Progress bar */
.svc-progress-bar {
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 1.5rem clamp(1.25rem,5vw,5rem) 0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 20;
}
.svc-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

/* Track */
.svc-track-outer {
  overflow: hidden;
  display: block;
  width: 100%;
}
.svc-track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

/* Slide */
.svc-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  position: relative;
  position: relative;
  padding: 3rem clamp(1.25rem,5vw,5rem) 4rem;
}
.svc-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.svc-bg-navy    { background: linear-gradient(135deg, #002952 0%, #001628 100%); }
.svc-bg-green   { background: linear-gradient(135deg, #143d2a 0%, #0b2418 100%); }
.svc-bg-charcoal{ background: linear-gradient(135deg, #252525 0%, #141414 100%); }

/* Decorative background shapes */
.svc-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.svc-shape-1 { width: 600px; height: 600px; right: -200px; top: -200px; background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%); }
.svc-shape-2 { width: 400px; height: 400px; left: -100px; bottom: -150px; background: radial-gradient(circle, rgba(0,41,82,0.4) 0%, transparent 70%); }
.svc-shape-3 { width: 600px; height: 600px; right: -150px; top: -180px; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); }
.svc-shape-4 { width: 350px; height: 350px; left: -80px; bottom: -100px; background: radial-gradient(circle, rgba(20,61,42,0.8) 0%, transparent 70%); }
.svc-shape-5 { width: 550px; height: 550px; right: -180px; top: -160px; background: radial-gradient(circle, rgba(230,26,20,0.07) 0%, transparent 70%); }
.svc-shape-6 { width: 400px; height: 400px; left: -120px; bottom: -120px; background: radial-gradient(circle, rgba(50,50,50,0.8) 0%, transparent 70%); }

/* Slide inner 2-col grid */
.svc-slide-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Left column */
.svc-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.svc-number {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.02em;
  margin-bottom: -1rem;
  user-select: none;
}
.svc-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: white;
}
.svc-accent-line {
  width: 48px; height: 3px;
  border-radius: 2px;
}
.svc-line-gold    { background: var(--gold); }
.svc-line-cream   { background: #e8e0d0; }

.svc-desc {
  color: rgba(255,255,255,0.72);
  font-size: clamp(0.9rem, 1.2vw, 1.0625rem);
  line-height: 1.7;
  max-width: 46ch;
}

.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.svc-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}
.svc-feat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-dot-gold  { background: var(--gold); }
.svc-dot-cream { background: #e8e0d0; }

.svc-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.svc-link-btn {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.15s;
}
.svc-link-gold  { color: var(--gold); }
.svc-link-cream { color: #e8e0d0; }
.svc-link-btn:hover { opacity: 0.8; }

/* Right column visual */
.svc-right { display: flex; justify-content: center; }

.svc-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: visible;
  flex-shrink: 0;
}
.svc-visual-navy     { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,169,110,0.2); }
.svc-visual-green    { background: rgba(255,255,255,0.04); border: 1px solid rgba(232,224,208,0.15); }
.svc-visual-charcoal { background: rgba(255,255,255,0.03); border: 1px solid rgba(230,26,20,0.2); }

.svc-visual-img {
  width: 100%; height: 100%;
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-size: cover;
  background-position: center;
}
.svc-visual-img-placeholder {
  border: 1.5px dashed rgba(255,255,255,0.12);
}
.svc-visual-img-placeholder span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* Stat badges floating on the visual */
.svc-stat-badge {
  position: absolute;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(200,169,110,0.25);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.svc-badge-tl { top: -16px; left: -16px; }
.svc-badge-br { bottom: -16px; right: -16px; }
.svc-badge-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.svc-badge-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Dot navigation row */
.svc-dots-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem clamp(1.25rem,5vw,5rem) 2.5rem;
  position: relative;
  z-index: 20;
}
.svc-dot-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s;
}
.svc-dot-btn.active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
}
.svc-dot-btn:hover:not(.active) {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}
.svc-dot-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.svc-dot-btn.active .svc-dot-label {
  color: rgba(255,255,255,0.9);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .svc-slide-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .svc-right { display: none; }
  .svc-number { font-size: 3.5rem; }
  .svc-dots-row { gap: 0.375rem; flex-wrap: wrap; }
  .svc-dot-label { font-size: 0.6875rem; }
}
@media (max-width: 480px) {
  .svc-slide { padding: 2rem 1.25rem 2.5rem; }
  .svc-dot-btn { padding: 0.35rem 0.75rem; }
}

/* ── Service value prop boxes ── */
.svc-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.svc-prop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid;
  text-align: center;
  transition: transform 0.2s;
}
.svc-prop:hover { transform: translateY(-2px); }
.svc-prop-navy    { background: rgba(255,255,255,0.05); border-color: rgba(200,169,110,0.2); }
.svc-prop-green   { background: rgba(255,255,255,0.05); border-color: rgba(232,224,208,0.2); }
.svc-prop-charcoal{ background: rgba(230,26,20,0.08);   border-color: rgba(230,26,20,0.25);  }

.svc-prop-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-prop-navy .svc-prop-icon svg    { color: var(--gold); width: 20px; height: 20px; }
.svc-prop-green .svc-prop-icon svg   { color: #e8e0d0;     width: 20px; height: 20px; }
.svc-prop-charcoal .svc-prop-icon svg{ color: var(--red);  width: 20px; height: 20px; }

.svc-prop-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
}
.svc-prop-navy    .svc-prop-text { color: rgba(255,255,255,0.75); }
.svc-prop-green   .svc-prop-text { color: rgba(232,224,208,0.75); }
.svc-prop-charcoal .svc-prop-text { color: rgba(255,255,255,0.7); }

/* ── Trust bar → section distinction ── */
/* NOTE: trust-bar is now followed by the dark services carousel, not a
   light section, so the old gold/red accent divider here is removed —
   it read as a mismatched dark seam between two dark backgrounds. */
.trust-bar {
  position: relative;
}

/* Why section (now cream bg) gets a clear top identity */
.section--cream {
  background: var(--cream);
}

@media (max-width: 768px) {
  .svc-props { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .svc-props { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
}

/* ── Pause button ── */
.svc-pause-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.svc-pause-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.svc-pause-btn svg { width: 14px; height: 14px; fill: currentColor; }

/* ── Hide reviews widget on mobile, show carousel full-width ── */
@media (max-width: 900px) {
  .why-reviews-desktop { display: none !important; }
  [style*="grid-template-columns:1fr 480px"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Ensure proj-carousel styles are present ── */
.proj-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  user-select: none;
}
.proj-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  cursor: grab;
}
.proj-track:active { cursor: grabbing; }
.proj-slide {
  flex: 0 0 calc(50% - 6px);
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.proj-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.proj-slide:hover .proj-img { transform: scale(1.04); }

.proj-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 56px;
  background: rgba(0,0,0,0.35);
  border: none; color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.proj-arrow:hover { background: rgba(0,0,0,0.6); }
.proj-arrow svg { width: 18px; height: 18px; }
.proj-prev { left: 0; border-radius: 0 4px 4px 0; }
.proj-next { right: 0; border-radius: 4px 0 0 4px; }

.proj-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.proj-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  background: transparent;
  padding: 0; cursor: pointer;
  transition: all 0.2s;
}
.proj-dot.active { background: var(--navy); transform: scale(1.25); }

@media (max-width: 768px) {
  .proj-slide { flex: 0 0 calc(85% - 6px); }
}

/* ── Themed bar color transitions ── */
#svc-root .sh    { background-color: #002952; transition: background-color 0.7s ease; }
#svc-pbar-wrap   { background-color: #001628 !important; transition: background-color 0.7s ease; }
#svc-dots        { background-color: #002952; transition: background-color 0.7s ease; }

/* ── Fix: svc-root background also transitions ── */
#svc-root { transition: background-color 0.7s ease; }

/* ── Fix: carousel shows 1 image on mobile (was showing 85% of 2) ── */
@media (max-width: 768px) {
  .proj-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
  }
  .proj-track { gap: 0 !important; }
}

/* ── Fix: sharper image rendering in carousel ── */
.proj-img {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
}

/* ══════════════════════════════════════
   PROJECT CAROUSEL (pc-) — fresh build
   ══════════════════════════════════════ */
.pc-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pc-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  user-select: none;
}
.pc-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  cursor: grab;
}
.pc-track:active { cursor: grabbing; }
.pc-slide {
  flex-shrink: 0;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}
.pc-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.pc-slide:hover .pc-img { transform: scale(1.03); }

/* Arrows inside viewport */
.pc-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 38px; height: 54px;
  background: rgba(0,0,0,0.38);
  border: none; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 5;
}
.pc-arrow:hover { background: rgba(0,0,0,0.62); }
.pc-arrow svg { width: 17px; height: 17px; pointer-events: none; }
.pc-prev { left: 0; border-radius: 0 4px 4px 0; }
.pc-next { right: 0; border-radius: 4px 0 0 4px; }

/* Dots — outside overflow, never clipped */
.pc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 2px 0 4px;   /* small padding so dots aren't edge-clipped */
}
.pc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  background: transparent;
  padding: 0; cursor: pointer;
  transition: all 0.22s;
  flex-shrink: 0;
}
.pc-dot.active {
  background: var(--navy);
  transform: scale(1.3);
}
.pc-dot:hover:not(.active) { background: rgba(0,41,82,0.25); }

@media (max-width: 700px) {
  .pc-track { gap: 0; }
}

/* ── pc-carousel: CSS handles all sizing ── */
.pc-viewport { position: relative; overflow: hidden; border-radius: 10px; }
.pc-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  cursor: grab;
  /* No width needed — determined by flex children */
}
.pc-track:active { cursor: grabbing; }
.pc-slide {
  flex: 0 0 calc(50% - 6px);   /* exactly half width minus half gap */
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.pc-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

@media (max-width: 700px) {
  .pc-slide { flex: 0 0 100%; }
  .pc-track { gap: 0; }
}

/* ── pc-carousel: arrows outside overflow, positioned via wrapper ── */
.pc-wrap {
  position: relative;  /* arrows position relative to this */
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pc-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  /* No z-index — arrows will overlay via absolute positioning on wrapper */
}
/* Arrows now on .pc-wrap level, overlaying the viewport */
.pc-arrow {
  position: absolute;
  top: 0;
  height: calc(100% - 36px); /* full viewport height, exclude dots area */
  width: 44px;
  background: rgba(0,0,0,0.32);
  border: none; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 30;
}
.pc-arrow:hover { background: rgba(0,0,0,0.58); }
.pc-arrow svg { width: 18px; height: 18px; pointer-events: none; flex-shrink: 0; }
.pc-prev { left: 0;  border-radius: 0 5px 5px 0; }
.pc-next { right: 0; border-radius: 5px 0 0 5px; }

/* ── Carousel slides/images ── */
.pcs {
  flex: 0 0 calc(50% - 6px);
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.pci {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
@media (max-width: 700px) {
  .pcs { flex: 0 0 100%; }
  #pc-tr { gap: 0 !important; }
}

/* ══════════════════════════════════════
   SHARED LIGHTBOX (site-wide)
   ══════════════════════════════════════ */
.lb-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse at center, rgba(10,20,35,0.94) 0%, rgba(4,10,20,0.97) 100%);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease;
}
.lb-overlay.is-open { opacity: 1; visibility: visible; }
.lb-stage {
  position: relative; max-width: 88vw; max-height: 86vh;
  display: flex; flex-direction: column; align-items: center;
  transform: scale(0.96); opacity: 0; transition: transform 0.45s cubic-bezier(.22,1,.36,1), opacity 0.4s ease;
}
.lb-overlay.is-open .lb-stage { transform: scale(1); opacity: 1; }
.lb-frame { position: relative; display: flex; align-items: center; justify-content: center; }
.lb-stage img {
  max-width: 88vw; max-height: 76vh; width: auto; height: auto;
  object-fit: contain; border-radius: 12px;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.06);
  background: #0a1420;
  opacity: 0; transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.lb-stage img.is-visible { opacity: 1; transform: scale(1); }
.lb-spinner {
  position: absolute; width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.18); border-top-color: rgba(255,255,255,0.85);
  opacity: 0; transition: opacity 0.2s ease; animation: lbSpin 0.8s linear infinite; pointer-events: none;
}
.lb-spinner.is-visible { opacity: 1; }
@keyframes lbSpin { to { transform: rotate(360deg); } }

.lb-caption-bar {
  margin-top: 1.25rem; display: flex; align-items: center; gap: 1rem;
  color: rgba(255,255,255,0.92); text-align: center;
}
.lb-caption-text { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; }
.lb-counter { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; border-left: 1px solid rgba(255,255,255,0.25); padding-left: 1rem; }

.lb-close, .lb-nav {
  position: fixed; z-index: 3; border: none; padding: 0;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.14);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.22); box-shadow: 0 8px 22px -6px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.25); }
.lb-close:active, .lb-nav:active { transform: scale(0.94); }
.lb-close svg, .lb-nav svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.lb-close { top: 1.75rem; right: 1.75rem; width: 2.75rem; height: 2.75rem; border-radius: 50%; }
.lb-close svg { width: 1.15rem; height: 1.15rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 3.25rem; height: 3.25rem; border-radius: 50%; }
.lb-nav svg { width: 1.4rem; height: 1.4rem; }
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }
.lb-nav:active { transform: translateY(-50%) scale(0.94); }
.lb-prev { left: 1.75rem; }
.lb-next { right: 1.75rem; }
@media (max-width: 700px) {
  .lb-nav { width: 2.5rem; height: 2.5rem; }
  .lb-nav svg { width: 1.1rem; height: 1.1rem; }
  .lb-prev { left: 0.6rem; } .lb-next { right: 0.6rem; }
  .lb-close { top: 0.85rem; right: 0.85rem; width: 2.4rem; height: 2.4rem; }
  .lb-close svg { width: 1rem; height: 1rem; }
  .lb-stage img { max-height: 64vh; }
}
