/* ============================================================
   DESIGN SYSTEM
   ============================================================ */
:root {
  --blue: #D4A437;
  --blue-dark: #B8892E;
  --navy: #0A0A0A;
  --white: #FFFFFF;
  --light-bg: #F7F4EE;
  --gray-bg: #F2F0EA;
  --text-dark: #0A0A0A;
  --text-muted: #555555;
  --text-light: #888888;
  --border: #E0D8C8;
  --silver: #C9CCD1;
  --radius: 24px;
  --radius-sm: 14px;
  --radius-xs: 8px;
  --shadow: 0 8px 32px rgba(212, 164, 55, 0.12);
  --shadow-hover: 0 16px 48px rgba(212, 164, 55, 0.22);
  --shadow-card: 0 2px 16px rgba(10, 10, 10, 0.07);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  scroll-margin-top: 80px;
}

/* ============================================================
   ICONS (Lucide)
   ============================================================ */
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon { stroke-width: 1.75; }

.icon-xs  { width: 16px; height: 16px; }
.icon-sm  { width: 20px; height: 20px; }
.icon-md  { width: 26px; height: 26px; }
.icon-lg  { width: 36px; height: 36px; }

.icon-logo      { width: 24px; height: 24px; color: var(--blue); }
.icon-footer-logo { width: 22px; height: 22px; color: rgba(255,255,255,0.8); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

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

.process-steps .reveal:nth-child(1) { transition-delay: 0.05s; }
.process-steps .reveal:nth-child(2) { transition-delay: 0.15s; }
.process-steps .reveal:nth-child(3) { transition-delay: 0.25s; }
.process-steps .reveal:nth-child(4) { transition-delay: 0.35s; }

.services-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.10s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.20s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.30s; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section-tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(212, 164, 55, 0.30);
}

.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 32px rgba(212, 164, 55, 0.40);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-ghost:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   MOBILE MENU OVERLAY DIV (dims page behind dropdown)
   ============================================================ */
#menuOverlay {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.35);
  z-index: 998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

#menuOverlay.open {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Desktop: text-only logo */
.logo-desktop {
  height: 44px;
  width: auto;
  display: block;
}

/* Mobile: warrior logo */
.logo-mobile {
  height: 48px;
  width: auto;
  display: none;
}

@media (max-width: 1024px) {
  .logo-desktop { display: none; }
  .logo-mobile  { display: block; height: 66px; }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.logo-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-size: 0.82rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.logo-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  background: var(--light-bg);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.3rem;
  border-radius: 100px;
  transition: all var(--transition);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(212, 164, 55, 0.25);
}

.btn-phone:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 24px rgba(212, 164, 55, 0.40);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  transition: background var(--transition);
}

.hamburger:hover { background: var(--light-bg); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   VIDEO SEQUENCE — spans hero → about (all screen sizes)
   #videoSticky is sticky behind both sections via negative margin.
   Sections have transparent backgrounds so the canvas shows through.
   ============================================================ */

#videoSequence {
  position: relative;
  min-height: 300vh;
}

/* Fixed canvas — always fills viewport, shown only while videoSequence is in view */
#videoSticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
}

#videoCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

#videoOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.50) 55%,
    rgba(10, 10, 10, 0.30) 100%
  );
  pointer-events: none;
}

#videoProgress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--blue);
  transition: width 0.05s linear;
}

/* Hero — normal scroll, transparent so canvas shows through */
#videoSequence #hero {
  position: relative;
  z-index: 1;
  background: transparent !important;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  #videoSequence #hero {
    align-items: flex-start;
    padding-top: 100px;
  }
}

#videoSequence .hero-grid {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  min-height: auto;
}

#videoSequence .hero-content {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#videoSequence .hero-actions { justify-content: center; }
#videoSequence .trust-badges { justify-content: center; }
#videoSequence .hero-sub     { max-width: 100%; }

/* About — sticky so it stays visible while animation plays its second half */
#videoSequence #about {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
  background: transparent !important;
  padding: 0;
  display: flex;
  align-items: center;
  overflow-y: auto;
}

/* White text on dark video — hero */
#videoSequence .hero-title    { color: #FFFFFF; }
#videoSequence .hero-sub      { color: rgba(255,255,255,0.80); }
#videoSequence .hero-badge    {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.90);
  backdrop-filter: blur(8px);
}
#videoSequence .title-accent  { color: var(--blue); }
#videoSequence .trust-badge   {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
}
#videoSequence .trust-badge:hover { border-color: var(--blue); color: var(--blue); }
#videoSequence .trust-icon { color: var(--blue); }
#videoSequence .btn-ghost  { color: #fff; border-color: rgba(255,255,255,0.45); }
#videoSequence .btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* White text on dark video — about */
#videoSequence .section-tag {
  background: rgba(212,164,55,0.15);
  border: 1px solid rgba(212,164,55,0.30);
  color: var(--blue);
}
#videoSequence .section-title { color: #FFFFFF; }
#videoSequence .about-text    { color: rgba(255,255,255,0.78); }

/* Glass-dark feature cards so white text is readable */
#videoSequence .feature-item {
  background: rgba(10,10,10,0.45);
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#videoSequence .feature-item:hover {
  background: rgba(212,164,55,0.18);
  border-color: rgba(212,164,55,0.40);
  transform: translateX(4px);
}
#videoSequence .feature-title { color: #FFFFFF; font-size: 1rem; }
#videoSequence .feature-desc  { color: rgba(255,255,255,0.68); }
#videoSequence .feature-icon-wrap {
  background: rgba(212,164,55,0.15);
  border-color: rgba(212,164,55,0.30);
  box-shadow: none;
}
#videoSequence .feature-icon  { color: var(--blue); }

/* Hide static image — video is the visual */
#videoSequence .about-visual  { display: none; }
#videoSequence .about-grid    { grid-template-columns: 1fr; max-width: 640px; }

/* Sections after videoSequence must have solid backgrounds to stop canvas bleed */
#process, #gallery, #cta, #team, #contact {
  position: relative;
  z-index: 2;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(145deg, var(--white) 0%, var(--light-bg) 60%, #EDE3C8 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,164,55,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 580px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px 6px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-card);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.title-accent {
  color: var(--blue);
  position: relative;
}

.title-accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), rgba(212,164,55,0.2));
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.trust-badge:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.trust-icon { color: var(--blue); }

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 420px;
  border-radius: 32px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 40, 100, 0.25) 0%,
    rgba(0, 20, 70, 0.65) 100%
  );
  border-radius: 32px;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.10;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

.shape-1 {
  width: 180px;
  height: 180px;
  background: var(--white);
  top: -50px;
  right: -50px;
  animation-delay: 0s;
}

.shape-2 {
  width: 100px;
  height: 100px;
  background: var(--white);
  bottom: 100px;
  left: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

.hero-stats {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.stat-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  margin-top: 4px;
  letter-spacing: 0.03em;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: transparent;
  position: relative;
  z-index: 1;
}

.services-section .section-title {
  color: #FFFFFF;
}

.services-section .section-tag {
  background: rgba(212,164,55,0.15);
  border: 1px solid rgba(212,164,55,0.30);
  color: var(--blue);
}

.services-section .section-header .section-sub {
  color: rgba(255,255,255,0.62);
}

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

.service-card {
  background: rgba(10,10,10,0.55);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--blue), var(--navy));
  border-radius: 0 2px 2px 0;
  transition: height var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.50);
  background: rgba(212,164,55,0.12);
  border-color: rgba(212,164,55,0.35);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(212,164,55,0.12);
  border: 1px solid rgba(212,164,55,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.service-icon { color: var(--blue); }

.service-card:hover .service-icon-wrap {
  background: var(--blue);
}

.service-card:hover .service-icon {
  color: var(--white);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap var(--transition);
}

.service-link:hover { gap: 10px; }

.link-arrow {
  transition: transform var(--transition);
}

.service-link:hover .link-arrow {
  transform: translateX(3px);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: transparent; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  height: 500px;
}

.about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(212, 164, 55, 0.40) 100%
  );
}

.about-stats-bar {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 2;
}

.about-stat-item {
  text-align: center;
}

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

.about-stat-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
}

.about-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.about-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.about-badge [data-lucide] { color: var(--blue); }

.about-badge-1 {
  top: 28px;
  left: -16px;
  animation: badge-float 5s ease-in-out infinite;
}

.about-badge-2 {
  top: 80px;
  right: -16px;
  animation: badge-float 5s ease-in-out infinite 2.5s;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feature-item:hover {
  border-color: var(--blue);
  background: var(--light-bg);
  transform: translateX(4px);
}

.feature-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.feature-icon { color: var(--blue); }

.feature-item:hover .feature-icon-wrap {
  background: var(--blue);
  border-color: var(--blue);
}

.feature-item:hover .feature-icon {
  color: var(--white);
}

.feature-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--light-bg); }

.process-track { position: relative; }

.process-line {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--navy));
  opacity: 0.18;
  border-radius: 1px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Injected line elements — hidden on desktop, shown only in mobile media query */
.process-v-track,
.process-v-fill {
  display: none;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.step-circle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(212,164,55,0.30);
  transition: all var(--transition);
}

.process-step:hover .step-circle {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(212,164,55,0.40);
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  width: 100%;
}

.process-step:hover .step-card {
  box-shadow: var(--shadow);
  border-color: rgba(212,164,55,0.2);
  transform: translateY(-3px);
}

.step-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--light-bg);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  transition: all var(--transition);
}

.step-icon { color: var(--blue); }

.process-step:hover .step-icon-wrap {
  background: var(--blue);
}

.process-step:hover .step-icon {
  color: var(--white);
}

.step-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--gray-bg); }

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  background: var(--navy);
  aspect-ratio: 1 / 1;
}

.gallery-item.gallery-tall,
.gallery-item.gallery-wide {
  grid-row: unset;
  grid-column: unset;
}

.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--transition);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.25rem 1.4rem;
  opacity: 1;
  transition: background var(--transition);
  z-index: 2;
  gap: 6px;
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 70%);
}

.gallery-icon { color: rgba(255,255,255,0.75); }

.gallery-label {
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

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


/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1A1A1A 60%, #2A2008 100%);
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -100px;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -50px;
}

.cta-card {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.cta-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.cta-phone {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.cta-decoration {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.cta-deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}

.c1 {
  width: 140px;
  height: 140px;
  top: 20px;
  left: 20px;
}

.c2 {
  width: 100px;
  height: 100px;
  top: 40px;
  left: 40px;
  background: rgba(255,255,255,0.06);
}

.cta-deco-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 4s ease-in-out infinite;
}

.cta-truck-icon {
  width: 56px;
  height: 56px;
  color: rgba(255,255,255,0.85);
  stroke-width: 1.5;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-section { background: #111111; }

.team-section .section-title { color: #FFFFFF; }
.team-section .section-tag {
  background: rgba(212,164,55,0.15);
  border: 1px solid rgba(212,164,55,0.30);
  color: var(--blue);
}
.team-section .section-header .section-sub { color: rgba(255,255,255,0.55); }

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

.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.team-card:hover {
  background: rgba(212,164,55,0.08);
  border-color: rgba(212,164,55,0.30);
  transform: translateY(-5px);
}

.team-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s var(--transition);
  display: block;
}

.team-card:hover .team-photo { transform: scale(1.04); }

.team-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.team-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
}

.team-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-top: 0.25rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 1rem 0 2.5rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  color: inherit;
}

a.contact-detail-item:hover {
  border-color: var(--blue);
  background: var(--light-bg);
}

.contact-detail-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.contact-detail-icon { color: var(--blue); }

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-detail-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* Form */
.contact-form-wrap {
  background: var(--gray-bg);
  border-radius: 28px;
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.form-input {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: all var(--transition);
  width: 100%;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(212,164,55,0.10);
}

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

.form-input::placeholder { color: var(--text-light); }

.form-select { cursor: pointer; }

.form-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.form-error {
  font-size: 0.78rem;
  color: #EF4444;
  font-weight: 600;
  min-height: 16px;
  display: block;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 0.75rem;
}

.form-success.show {
  display: flex;
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-check-icon {
  width: 40px;
  height: 40px;
  color: var(--blue);
  stroke-width: 2;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.success-text {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

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

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .footer-logo-img {
    height: 38px;
  }
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  max-width: 280px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #60AEFF;
  font-weight: 700;
  font-size: 1rem;
  transition: color var(--transition);
}

.footer-phone:hover { color: var(--white); }
.footer-phone [data-lucide] { color: inherit; }

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li,
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover { color: var(--white); }
.footer-links [data-lucide] { color: rgba(255,255,255,0.5); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}


/* ============================================================
   RESPONSIVE - TABLET (1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 3rem;
  }

  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-decoration {
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process-line { display: none; }

  .team-section {
    overflow: hidden;
    overflow-x: clip;
    padding-left: 0;
    padding-right: 0;
  }

  .team-section .section-header {
    padding: 0 24px;
  }

  .team-grid {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    gap: 0.75rem;
    padding: 0 24px 4px;
    scrollbar-width: none;
    grid-template-columns: unset;
  }

  .team-grid::-webkit-scrollbar { display: none; }

  .team-card {
    flex: 0 0 75vw;
    min-width: 75vw;
    max-width: 75vw;
    scroll-snap-align: start;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: span 2; }
}

/* ============================================================
   HAMBURGER MENU — mobile + tablet (up to 1024px)
   Dropdown card — site visible behind via dim overlay
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .btn-phone { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
    border-radius: 0 0 20px 20px;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0.5rem;
    animation: menuFadeIn 0.22s ease-out;
  }

  @keyframes menuFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links.open .nav-link {
    padding: 0.7rem 2.5rem;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--transition), background var(--transition);
    text-align: center;
  }

  .nav-links.open .nav-link:hover {
    background: var(--light-bg);
    color: var(--blue);
  }

  .nav-links.open .nav-link.active {
    color: var(--blue);
    font-weight: 700;
  }
}

/* ============================================================
   RESPONSIVE - MOBILE (768px)
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
  }

  .hero { padding: 60px 0 40px; }

  .hero-visual { order: -1; }

  .hero-card {
    height: 280px;
    max-width: 100%;
  }

  .hero-stats { gap: 6px; }
  .stat-num { font-size: 1.2rem; }
  .stat-label { font-size: 0.62rem; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-wrap { height: 340px; }

  .about-badge-1, .about-badge-2 {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }

  /* Line track + fill injected as real DOM elements by JS */
  .process-v-track,
  .process-v-fill {
    display: block;
    position: absolute;
    left: 27px;
    width: 2px;
    border-radius: 1px;
    pointer-events: none;
  }

  .process-v-track {
    background: rgba(212, 164, 55, 0.15);
  }

  .process-v-fill {
    height: 0;
    background: linear-gradient(to bottom, var(--blue), var(--blue-dark));
    transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    position: relative;
  }

  .process-step:last-child {
    padding-bottom: 0;
  }

  .step-circle {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .step-card {
    text-align: left;
  }

  .step-icon-wrap { margin: 0 0 0.85rem 0; }

  .gallery-section {
    overflow: hidden;
    overflow-x: clip;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-section .section-header {
    padding: 0 24px;
  }

  .gallery-grid {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    gap: 0.75rem;
    padding: 0 24px 4px;
    scrollbar-width: none;
    grid-template-columns: unset;
    grid-template-rows: unset;
  }

  .gallery-grid::-webkit-scrollbar { display: none; }

  .gallery-item,
  .gallery-item.gallery-tall,
  .gallery-item.gallery-wide {
    flex: 0 0 75vw;
    min-width: 75vw;
    aspect-ratio: 1 / 1;
    height: auto;
    grid-row: unset;
    grid-column: unset;
    scroll-snap-align: start;
    border-radius: var(--radius-sm);
    position: relative;
  }

  .gallery-item .gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .gallery-item .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 60%);
  }

  .cta-card {
    padding: 2.5rem 1.75rem;
  }

  .cta-decoration { display: none; }

  .contact-form-wrap {
    padding: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand { grid-column: span 1; }
}

/* ============================================================
   RESPONSIVE - SMALL MOBILE (480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-title { letter-spacing: -0.01em; font-size: 3.2rem; }

  .hero-actions {
    flex-direction: column;
  }

  .btn { width: 100%; justify-content: center; }

  .trust-badges { gap: 0.5rem; }

  .hero-card { height: 240px; }

  .section-title { font-size: 1.7rem; }

  .cta-phone { font-size: 2rem; }

  .gallery-item { flex: 0 0 88vw; max-width: 88vw; }
}
