/* =====================================================
   General Services Becker Inc. — Main Stylesheet
   Theme: Dark Industrial Premium
   Colors: Orange #E87520 | Black #111111
   Fonts: Montserrat (headings) + Inter (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --orange:        #E87520;
  --orange-dark:   #C5610A;
  --orange-light:  rgba(232,117,32,0.10);
  --orange-glow:   rgba(232,117,32,0.25);
  --orange-border: rgba(232,117,32,0.35);

  --bg:            #111111;
  --bg-2:          #161616;
  --dark-card:     #1C1C1C;
  --dark-card-2:   #222222;
  --section-alt:   #0E0E0E;

  --text:          #F0F0F0;
  --text-muted:    #999999;
  --text-dim:      rgba(255,255,255,0.4);
  --white:         #FFFFFF;

  --border:        rgba(232,117,32,0.18);
  --border-subtle: rgba(255,255,255,0.06);
  --border-card:   rgba(255,255,255,0.08);

  --radius:        4px;
  --radius-lg:     8px;
  --radius-xl:     12px;

  --shadow:        0 4px 24px rgba(0,0,0,0.5);
  --shadow-md:     0 8px 40px rgba(0,0,0,0.65);
  --shadow-orange: 0 8px 40px rgba(232,117,32,0.20), 0 2px 8px rgba(0,0,0,0.4);
  --shadow-glow:   0 0 60px rgba(232,117,32,0.12), 0 8px 40px rgba(0,0,0,0.5);

  --transition:    0.26s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.5s cubic-bezier(0.4,0,0.2,1);

  --font-display:  'Montserrat', sans-serif;
  --font:          'Inter', sans-serif;

  --topbar-h:      44px;
  --nav-h:         72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; font-size: 0.975rem; }
p:last-child { margin-bottom: 0; }

/* ── Eyebrow Labels ────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  font-family: var(--font);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── Layout ────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 96px 0; }
.section-alt {
  background: var(--section-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center p { max-width: 560px; margin: 0.75rem auto 0; }
.section-header h2 { margin-bottom: 0; }
.section-header p  { margin-top: 0.75rem; font-size: 1rem; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--orange);
  color: #0a0a0a;
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(232,117,32,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,117,32,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: #0a0a0a;
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,117,32,0.35);
}
.btn-lg { padding: 1rem 2.4rem; font-size: 0.95rem; }
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.8rem; }

/* ── Top Bar ───────────────────────────────────────── */
.topbar {
  background: var(--section-alt);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  position: relative;
  z-index: 200;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}
.topbar-left i { color: var(--orange); font-size: 0.75rem; }
.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.topbar-links a {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  transition: color var(--transition);
}
.topbar-links a:hover { color: var(--orange); }
.topbar-links i { font-size: 0.72rem; }

/* ── Navbar ────────────────────────────────────────── */
.navbar {
  height: var(--nav-h);
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
  border-bottom-color: var(--border);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #0a0a0a;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-main span { color: var(--orange); }
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
}
.nav-links > li > a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); }
.nav-links > li > a.active { color: var(--orange); }

.btn-nav {
  background: var(--orange) !important;
  color: #0a0a0a !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: var(--radius) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(232,117,32,0.3);
  transition: all var(--transition) !important;
}
.btn-nav:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,117,32,0.4) !important;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle .arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
  opacity: 0.6;
}
.dropdown:hover .arrow,
.dropdown.open .arrow { transform: rotate(180deg); opacity: 1; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  min-width: 240px;
  padding: 0.5rem;
  padding-top: 0.75rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
  display: none;
  z-index: 50;
  /* Invisible bridge above to prevent hover gap */
  margin-top: 0;
}
/* Extend hover area upward via pseudo-element bridge */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--orange-light);
  color: var(--orange);
}
.dropdown-menu li a i { width: 16px; color: var(--orange); font-size: 0.8rem; }

/* Dropdown separator */
.dropdown-menu .dropdown-section {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.5rem 0.85rem 0.2rem;
  margin-top: 0.25rem;
}
.dropdown-menu .dropdown-section:first-child { margin-top: 0; }
.dropdown-menu hr {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 0.3rem 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  border-radius: 2px;
}
.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); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
}

/* Deep dark base with noise texture feel */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, #1a1008 0%, #0a0a0a 55%, #050505 100%);
  z-index: 0;
}
/* Subtle tile grid overlay on left side */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(232,117,32,0.04) 79px, rgba(232,117,32,0.04) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(232,117,32,0.04) 79px, rgba(232,117,32,0.04) 80px);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, transparent 55%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, transparent 55%);
}
/* Orange atmospheric glow left */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at -5% 70%, rgba(232,117,32,0.07) 0%, transparent 50%);
}

/* ── Right panel — diagonal split ──────────────────── */
.hero-diagonal {
  position: absolute;
  right: 0;
  top: 0;
  width: 48%;
  height: 100%;
  background: #0f0d0a;
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
  overflow: hidden;
}
/* Tile grid on right panel */
.hero-diagonal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(232,117,32,0.07) 59px, rgba(232,117,32,0.07) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(232,117,32,0.07) 59px, rgba(232,117,32,0.07) 60px);
}
/* Orange glow inside right panel */
.hero-diagonal::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(232,117,32,0.12) 0%, transparent 60%),
    linear-gradient(135deg, transparent 40%, rgba(232,117,32,0.04) 100%);
}

/* Diagonal edge line */
.hero-diagonal-line {
  position: absolute;
  left: 52%;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, var(--orange) 20%, var(--orange) 80%, transparent 100%);
  transform: skewX(-10deg) translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 20px rgba(232,117,32,0.5);
}

/* ── Right panel accent composition ────────────────── */
.hero-accent {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-52%);
  width: 340px;
  height: 340px;
  z-index: 3;
  pointer-events: none;
}
/* Outer ring */
.hero-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(232,117,32,0.15);
  border-radius: 50%;
  animation: heroRingPulse 4s ease-in-out infinite;
}
/* Second ring */
.hero-accent::after {
  content: '';
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(232,117,32,0.1);
  border-radius: 50%;
  animation: heroRingPulse 4s ease-in-out infinite 0.8s;
}
.hero-accent-inner {
  position: absolute;
  inset: 72px;
  background: linear-gradient(135deg, rgba(232,117,32,0.14) 0%, rgba(232,117,32,0.06) 100%);
  border: 1px solid rgba(232,117,32,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: var(--orange);
  box-shadow: 0 0 60px rgba(232,117,32,0.15), inset 0 0 40px rgba(232,117,32,0.06);
}
/* Floating tile squares in right panel */
.hero-tile-1,
.hero-tile-2,
.hero-tile-3 {
  position: absolute;
  border: 1px solid rgba(232,117,32,0.2);
  border-radius: 2px;
  z-index: 2;
}
.hero-tile-1 {
  width: 56px; height: 56px;
  top: 18%; right: 30%;
  background: rgba(232,117,32,0.05);
  transform: rotate(15deg);
  animation: heroTileFloat 5s ease-in-out infinite;
}
.hero-tile-2 {
  width: 36px; height: 36px;
  top: 65%; right: 22%;
  background: rgba(232,117,32,0.04);
  transform: rotate(-10deg);
  animation: heroTileFloat 6s ease-in-out infinite 1.5s;
}
.hero-tile-3 {
  width: 24px; height: 24px;
  top: 35%; right: 15%;
  background: rgba(232,117,32,0.08);
  transform: rotate(25deg);
  animation: heroTileFloat 4s ease-in-out infinite 0.7s;
}

@keyframes heroRingPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}
@keyframes heroTileFloat {
  0%, 100% { transform: rotate(15deg) translateY(0px); }
  50% { transform: rotate(15deg) translateY(-10px); }
}

/* ── Hero Content ───────────────────────────────────── */
.hero .container {
  position: relative;
  z-index: 4;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-content {
  max-width: 700px;
  width: 100%;
  text-align: left;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  background: rgba(232,117,32,0.08);
  border: 1px solid rgba(232,117,32,0.2);
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  border-radius: 2px;
}
.hero-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* Title — stacked with mixed weights */
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
}
.hero-title-line1 {
  display: block;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero-title-line2 {
  display: block;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  color: var(--white);
  line-height: 0.92;
}
.hero-title-line3 {
  display: block;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  color: var(--orange);
  font-style: italic;
  letter-spacing: -0.02em;
  position: relative;
}

/* Underline accent on last line */
.hero-title-line3::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--orange);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 460px;
  line-height: 1.75;
  border-left: 2px solid rgba(232,117,32,0.3);
  padding-left: 1rem;
}

.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Redesigned stat badges */
.hero-badges {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 1px solid rgba(232,117,32,0.25);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 520px;
}
.hero-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  gap: 0.3rem;
  position: relative;
}
.hero-badge + .hero-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.07);
}
.hero-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-badge span {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}
/* Remove old sep element */
.hero-badge-sep { display: none; }

/* ── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  background: var(--dark-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-item i { color: var(--orange); font-size: 0.9rem; }
.trust-sep {
  color: var(--orange);
  font-size: 0.5rem;
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── SERVICES GRID ─────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5px;
  background: var(--border-subtle);
}
.service-card {
  background: var(--dark-card);
  padding: 2rem 1.75rem;
  border-left: 3px solid transparent;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: var(--orange-light);
  transition: height var(--transition-slow);
  z-index: 0;
}
.service-card:hover {
  border-left-color: var(--orange);
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-orange);
  transform: translateY(-3px);
  background: var(--dark-card-2);
  z-index: 2;
}
.service-card:hover::before { height: 100%; }

.service-card-content { position: relative; z-index: 1; }
.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--orange);
  color: #0a0a0a;
  border-color: var(--orange);
}
.service-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.service-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.service-card:hover .service-card-link { gap: 0.7rem; }

/* ── WHY CHOOSE US ─────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition-slow);
}
.why-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: var(--shadow-orange); }
.why-card:hover::after { width: 100%; }

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.why-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--white); }
.why-card p { font-size: 0.875rem; margin: 0; }

/* ── PROCESS ───────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 1px);
  right: calc(12.5% + 1px);
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(232,117,32,0.3), var(--orange));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 64px;
  height: 64px;
  background: var(--dark-card);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--orange);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg);
  transition: all var(--transition);
}
.process-step:hover .process-num {
  background: var(--orange);
  color: #0a0a0a;
  box-shadow: 0 0 0 6px var(--bg), 0 0 30px rgba(232,117,32,0.4);
}
.process-icon {
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; margin: 0; }

/* ── GALLERY ───────────────────────────────────────── */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.55rem 1.25rem;
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  color: #0a0a0a;
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(232,117,32,0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-item.gallery-tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.hidden { display: none; }

.gallery-item-bg {
  position: absolute;
  inset: 0;
  transition: transform var(--transition-slow);
}
.gallery-item:hover .gallery-item-bg { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--orange);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font);
}

/* Gallery placeholder gradients */
.gp-1 { background: linear-gradient(135deg, #1a1208 0%, #2a1e0a 40%, #3a2a12 100%); }
.gp-2 { background: linear-gradient(135deg, #0d1a15 0%, #0a1f18 40%, #142b22 100%); }
.gp-3 { background: linear-gradient(135deg, #1a0d0d 0%, #2a1212 40%, #1f0f0f 100%); }
.gp-4 { background: linear-gradient(135deg, #0d0d1a 0%, #121225 40%, #0f0f1f 100%); }
.gp-5 { background: linear-gradient(135deg, #1a1508 0%, #2a2210 40%, #221b08 100%); }
.gp-6 { background: linear-gradient(135deg, #0a1518 0%, #0f2028 40%, #081218 100%); }
.gp-7 { background: linear-gradient(135deg, #1a0a12 0%, #28101e 40%, #200c16 100%); }
.gp-8 { background: linear-gradient(135deg, #0d1808 0%, #12250c 40%, #0f1e0a 100%); }
.gp-9 { background: linear-gradient(135deg, #181008 0%, #281808 40%, #201208 100%); }
.gp-10 { background: linear-gradient(135deg, #081018 0%, #0c1825 40%, #080f1a 100%); }
.gp-11 { background: linear-gradient(135deg, #100a18 0%, #1a1228 40%, #120816 100%); }
.gp-12 { background: linear-gradient(135deg, #120a08 0%, #1e1008 40%, #180c06 100%); }
.gp-13 { background: linear-gradient(135deg, #0a0f12 0%, #0f1820 40%, #080c10 100%); }
.gp-14 { background: linear-gradient(135deg, #180d08 0%, #281508 40%, #1e1006 100%); }
.gp-15 { background: linear-gradient(135deg, #080d10 0%, #0c1218 40%, #080b0f 100%); }
.gp-16 { background: linear-gradient(135deg, #100808 0%, #180c08 40%, #140a06 100%); }

.gallery-placeholder-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(232,117,32,0.25);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-placeholder-icon {
  color: rgba(232,117,32,0.5);
  transform: translate(-50%, -50%) scale(1.15);
}

/* ── STATS COUNTER ─────────────────────────────────── */
.stats-section {
  background: var(--orange);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(0,0,0,0.2);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #0a0a0a;
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.65);
  margin-top: 0.5rem;
  display: block;
}

/* ── TESTIMONIALS ──────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(232,117,32,0.08);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-orange);
  transform: translateY(-3px);
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.testimonial-stars i { color: var(--orange); font-size: 0.85rem; }
.testimonial-text {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  display: block;
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ── CTA BANNER ────────────────────────────────────── */
.cta-banner {
  background: var(--section-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,117,32,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(232,117,32,0.04) 0%, transparent 50%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.cta-text h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-text p { margin: 0; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ── FAQ ───────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--font);
  color: var(--text);
  font-size: 0.975rem;
  font-weight: 600;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-question.open { color: var(--orange); }
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-question.open .faq-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: #0a0a0a;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
}
.faq-answer p { margin: 0; font-size: 0.925rem; color: var(--text-muted); }
.faq-answer.open { display: block; }

/* ── PAGE HERO BANNER ──────────────────────────────── */
.page-hero {
  background: var(--section-alt);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(232,117,32,0.015) 40px,
      rgba(232,117,32,0.015) 41px
    );
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 3px;
  background: var(--orange);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 0.6rem; color: var(--text-dim); }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0; }

/* ── ABOUT PAGE ────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1208, #2a1e0a 40%, #3a2812);
}
.about-story-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(232,117,32,0.03) 30px,
    rgba(232,117,32,0.03) 31px
  );
}
.about-story-image-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.about-story-image-icon i {
  font-size: 4rem;
  color: rgba(232,117,32,0.3);
  display: block;
  margin-bottom: 0.5rem;
}
.about-story-image-icon span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,117,32,0.4);
}
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--orange);
  color: #0a0a0a;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-img-badge span { display: block; font-size: 1.8rem; line-height: 1; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
}
.value-card i { font-size: 2rem; color: var(--orange); margin-bottom: 1rem; display: block; }
.value-card h3 { margin-bottom: 0.75rem; }
.value-card p { margin: 0; font-size: 0.9rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}
.team-photo {
  height: 200px;
  background: linear-gradient(135deg, #1a1208, #2a1e0a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(232,117,32,0.3);
}
.team-info { padding: 1.5rem; }
.team-info h3 { margin-bottom: 0.25rem; }
.team-role { font-size: 0.8rem; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* ── SERVICE DETAIL PAGE ───────────────────────────── */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.service-content h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.service-content h3 { font-size: 1.15rem; margin: 2rem 0 0.75rem; }
.service-content p { font-size: 0.95rem; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: var(--text-muted);
}
.feature-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Sidebar Form */
.service-sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); }
.sidebar-form-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sidebar-form-header {
  background: var(--orange);
  padding: 1.25rem 1.5rem;
}
.sidebar-form-header h3 {
  color: #0a0a0a;
  font-size: 1rem;
  margin: 0;
}
.sidebar-form-header p {
  color: rgba(0,0,0,0.6);
  font-size: 0.8rem;
  margin: 0.25rem 0 0;
}
.sidebar-form-body { padding: 1.5rem; }

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

/* ── SERVICE GALLERY ───────────────────────────────── */
.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-gallery-grid .gallery-item {
  aspect-ratio: 4/3;
}
.service-gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
@media (max-width: 768px) {
  .service-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-gallery-grid .gallery-item:first-child { grid-column: span 2; aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .service-gallery-grid { grid-template-columns: 1fr; }
  .service-gallery-grid .gallery-item:first-child { grid-column: span 1; }
}

/* ── CONTACT PAGE ──────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card, .contact-hours-card, .contact-map-card {
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.contact-card-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.contact-card-header i { color: var(--orange); }
.contact-card-body { padding: 1.25rem 1.5rem; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-detail-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}
.contact-detail-value { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.contact-detail-value a { color: var(--text); }
.contact-detail-value a:hover { color: var(--orange); }

.hours-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.hours-item:last-child { border-bottom: none; }
.hours-day { color: var(--text-muted); }
.hours-time { color: var(--text); font-weight: 600; }
.hours-item.today .hours-day { color: var(--orange); }
.hours-item.closed .hours-time { color: var(--text-dim); }

.map-embed {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}
.map-embed i { font-size: 2rem; color: rgba(232,117,32,0.4); }
.map-embed span { font-size: 0.78rem; color: var(--text-dim); text-align: center; }
.map-embed a { font-size: 0.8rem; color: var(--orange); font-weight: 600; }

/* ── FORMS ─────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--dark-card-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-family: var(--font);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control::placeholder { color: var(--text-dim); }
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.form-submit-note i { color: var(--orange); }

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--section-alt);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #0a0a0a;
  flex-shrink: 0;
}
.footer-logo-text .logo-main { font-size: 0.95rem; }
.footer-brand p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px;
  height: 36px;
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--orange);
  color: #0a0a0a;
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.footer-links a:hover::before { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.footer-contact-item i { color: var(--orange); margin-top: 2px; font-size: 0.85rem; flex-shrink: 0; }
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-contact-item span { color: var(--text-muted); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-badges { display: flex; gap: 1rem; }
.footer-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  background: var(--dark-card);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}

/* ── WHATSAPP FLOAT ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  padding: 0.85rem 1.3rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float a:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  color: white;
}
.whatsapp-float i { font-size: 1.2rem; }
@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ── 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.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
.fade-up.delay-6 { transition-delay: 0.6s; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .stat-item + .stat-item::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; --topbar-h: 40px; }

  .topbar-left { display: none; }
  .topbar-links span { display: none; }
  .topbar-links { gap: 1rem; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: calc(var(--topbar-h) + var(--nav-h));
    left: 0;
    right: 0;
    background: var(--dark-card);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    display: none;
    box-shadow: var(--shadow-md);
    z-index: 99;
    max-height: calc(100vh - var(--topbar-h) - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 0.75rem 1rem; border-radius: var(--radius); }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.03);
    border: none;
    border-radius: 0;
    padding: 0.25rem 0 0.25rem 1rem;
    margin-top: 0.25rem;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .btn-nav { text-align: center; margin-top: 0.5rem; padding: 0.75rem 1rem !important; }

  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section { padding: 64px 0; }

  .hero { min-height: auto; padding: 56px 0 64px; }
  .hero .container { padding-top: 0; padding-bottom: 0; }
  .hero-accent { display: none; }
  .hero-diagonal { display: none; }
  .hero-diagonal-line { display: none; }
  .hero-tile-1, .hero-tile-2, .hero-tile-3 { display: none; }
  .hero-badges { max-width: 100%; border-radius: var(--radius); }
  .hero-badge strong { font-size: 1.2rem; }
  .hero-title-line2 { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .hero-eyebrow { font-size: 0.62rem; }

  .trust-item { padding: 0.5rem 1rem; font-size: 0.72rem; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-badges { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .related-services-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-tall { grid-row: span 1; aspect-ratio: 4/3; }
  .cta-inner { flex-direction: column; }
  .hero-btns { flex-direction: column; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-float a { padding: 0.75rem 1rem; font-size: 0; }
  .whatsapp-float i { font-size: 1.4rem; }
  .stats-section { padding: 48px 0; }
  .cta-banner { padding: 56px 0; }
}
