/* ============================================================
   GARY'S RECOVERY & TOWING — Premium Dark Theme
   Dark Red & Black — Professional Towing Website
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-card:   #161616;
  --dark-card2:  #1c1c1c;
  --red:         #cc0000;
  --red-bright:  #e60000;
  --red-dark:    #8b0000;
  --red-deeper:  #5a0000;
  --red-glow:    rgba(204,0,0,0.28);
  --red-subtle:  rgba(204,0,0,0.07);
  --white:       #ffffff;
  --off-white:   #f0f0f0;
  --muted:       #888888;
  --muted-light: #aaaaaa;
  --border:      rgba(255,255,255,0.07);
  --border-med:  rgba(255,255,255,0.12);

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --section-py: clamp(70px, 9vw, 110px);
  --container:  1280px;
  --px:         clamp(20px, 5vw, 60px);
  --radius:     12px;
  --radius-lg:  20px;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  touch-action: pan-y;
}

body.menu-open { overflow: hidden; }

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

/* Phone icons — flip to correct orientation */
i[class*="fa-phone"] {
  display: inline-block;
  transform: scaleX(-1);
}

/* ---- CUSTOM SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-bright); }

/* ---- CUSTOM CURSOR (desktop only) ---- */
.cursor-dot,
.cursor-ring {
  display: none;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    display: block;
    width: 8px; height: 8px;
    background: var(--red);
  }
  .cursor-ring {
    display: block;
    width: 32px; height: 32px;
    border: 1.5px solid rgba(204,0,0,0.6);
    transition: width 0.2s, height 0.2s, border-color 0.2s, transform 0.08s;
  }
  body:has(a:hover) .cursor-ring,
  body:has(button:hover) .cursor-ring {
    width: 48px; height: 48px;
    border-color: var(--red);
  }
}

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-bright));
  z-index: 9998;
  transition: width 0.1s linear;
}

/* ---- LOADING SCREEN ---- */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; }

.loading-inner { text-align: center; }

.loading-logo {
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 100px);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  gap: 0.05em;
}
.l-g, .l-r, .l-t {
  opacity: 0;
  transform: translateY(30px);
  animation: letterIn 0.5s var(--ease-out) forwards;
}
.l-g { color: var(--white); animation-delay: 0.1s; }
.l-r { color: var(--red);   animation-delay: 0.25s; }
.l-t { color: var(--white); animation-delay: 0.4s; }

@keyframes letterIn {
  to { opacity: 1; transform: translateY(0); }
}

.loading-brand {
  font-family: var(--font-heading);
  font-size: clamp(11px, 2vw, 14px);
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-top: 10px;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.7s forwards;
}

.loading-track {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  margin: 28px auto 16px;
  overflow: hidden;
}
.loading-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  animation: loadProgress 1.8s var(--ease-out) 0.5s forwards;
}
@keyframes loadProgress { to { width: 100%; } }

.loading-status {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeIn 0.4s ease 0.9s forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

/* ---- EMERGENCY BAR ---- */
.emergency-bar {
  position: relative;
  background: linear-gradient(90deg, var(--red-deeper), var(--red-dark), var(--red-deeper));
  background-size: 200% 100%;
  animation: gradShift 4s linear infinite;
  z-index: 200;
  padding: 9px var(--px);
  max-width: 100%;
  overflow: hidden;
}
@keyframes gradShift {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 0%; }
  100% { background-position: 0% 0%; }
}
.eb-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.eb-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}
.eb-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseGlow 1.5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); opacity: 1; }
  50%       { box-shadow: 0 0 0 8px rgba(255,255,255,0); opacity: 0.7; }
}
.eb-text {
  font-family: var(--font-heading);
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  text-align: center;
  flex: 1;
}
.eb-phone {
  font-family: var(--font-heading);
  font-size: clamp(11px, 1.8vw, 13px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(255,255,255,0.15);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  white-space: nowrap;
  display: none;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.eb-phone:hover { background: rgba(255,255,255,0.25); }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0);
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
  max-width: 100%;
  overflow: hidden;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nl-mark {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  letter-spacing: 0.05em;
  line-height: 1;
}
.nl-text { display: flex; flex-direction: column; line-height: 1.1; }
.nl-name { font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 0.05em; color: var(--white); }
.nl-sub  { font-size: 10px; color: var(--muted); letter-spacing: 0.03em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nl-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  padding: 8px 14px;
  border-radius: 6px;
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.nl-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px; height: 2px;
  background: var(--red);
  border-radius: 1px;
  transition: transform 0.2s var(--ease-out);
}
.nl-link:hover       { color: var(--white); background: rgba(255,255,255,0.05); }
.nl-link:hover::after,
.nl-link.active::after { transform: translateX(-50%) scaleX(1); }
.nl-link.active       { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--red);
  padding: 9px 20px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--red-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.05); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 0 var(--px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s;
}
.mobile-menu.open { max-height: 420px; padding: 20px var(--px) 28px; }

.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mnl-link {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  padding: 10px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}
.mnl-link:hover { color: var(--white); background: var(--red-subtle); padding-left: 20px; }

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--red);
  padding: 14px 24px;
  border-radius: 50px;
  text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::after { transform: translateX(100%); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 15px var(--red-glow);
}
.btn-red:hover {
  background: var(--red-bright);
  box-shadow: 0 8px 30px var(--red-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

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

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
  width: 100%;
}

.section { padding: var(--section-py) 0; max-width: 100%; overflow-x: clip; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.s-tag::before, .s-tag::after {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--red);
  opacity: 0.6;
}

.s-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.s-title em {
  font-style: normal;
  color: var(--red);
}

.s-desc {
  font-size: 16px;
  color: var(--muted-light);
  line-height: 1.7;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  backface-visibility: hidden;
}
.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: none;
}

/* Stagger delays via inline --d custom property */
.reveal-up[style*="--d"],
.reveal-left[style*="--d"],
.reveal-right[style*="--d"] {
  transition-delay: var(--d, 0s);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 100%;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: kenBurns 10s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.92) 0%,
    rgba(10,0,0,0.82) 50%,
    rgba(0,0,0,0.7) 100%
  );
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  filter: blur(80px);
}
.hs-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,0,0,0.3) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hs-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(204,0,0,0.15) 0%, transparent 70%);
  bottom: 0; left: -50px;
}

.hero-line {
  position: absolute;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  height: 1px;
  opacity: 0.25;
}
.hl-1 { width: 60%; top: 35%; left: 0; animation: linePulse 4s ease-in-out infinite; }
.hl-2 { width: 40%; bottom: 30%; right: 0; animation: linePulse 4s ease-in-out 2s infinite; }
@keyframes linePulse {
  0%, 100% { opacity: 0.1; }
  50%       { opacity: 0.35; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px var(--px) 100px;
  width: 100%;
}

/* Hero animation classes — triggered after loading */
.hi-1, .hi-2, .hi-3, .hi-4, .hi-5 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
body.loaded .hi-1 { opacity: 1; transform: none; transition-delay: 0.1s; }
body.loaded .hi-2 { opacity: 1; transform: none; transition-delay: 0.25s; }
body.loaded .hi-3 { opacity: 1; transform: none; transition-delay: 0.45s; }
body.loaded .hi-4 { opacity: 1; transform: none; transition-delay: 0.65s; }
body.loaded .hi-5 { opacity: 1; transform: none; transition-delay: 0.85s; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hb-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulseGlow 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 130px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 24px;
}
.ht-line { display: block; }
.ht-accent { color: var(--red); }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ht-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}
.ht-item i { color: var(--red); font-size: 14px; }
.ht-divider {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--red-deeper) 0%, #3d0000 50%, var(--red-deeper) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 28px var(--px);
}
.sb-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sb-item {
  text-align: center;
  padding: 16px 40px;
}
.sb-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.sb-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  text-transform: uppercase;
}
.sb-review-count {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 6px;
  line-height: 1;
}
.sb-review-count:empty {
  display: none;
}
.sb-divider {
  width: 1px;
  align-self: stretch;
  min-height: 50px;
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--black); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.service-card:nth-child(1) { grid-column: 1 / 3; }
.service-card:nth-child(2) { grid-column: 3 / 5; }
.service-card:nth-child(3) { grid-column: 5 / 7; }
.service-card:nth-child(4) { grid-column: 1 / 3; }
.service-card:nth-child(5) { grid-column: 3 / 5; }
.service-card:nth-child(6) { grid-column: 5 / 7; }

.service-card {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px var(--red), 0 8px 30px var(--red-glow);
  border-color: rgba(204,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }

.sc-num {
  position: absolute;
  bottom: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}
.service-card:hover .sc-num { color: rgba(204,0,0,0.08); }

.sc-icon {
  width: 52px; height: 52px;
  background: var(--red-subtle);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, box-shadow 0.3s;
}
.sc-icon i {
  font-size: 22px;
  color: var(--red);
  transition: transform 0.3s;
}
.service-card:hover .sc-icon {
  background: rgba(204,0,0,0.12);
  box-shadow: 0 0 20px rgba(204,0,0,0.2);
}
.service-card:hover .sc-icon i { transform: scale(1.15); }

.sc-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 12px;
}

.sc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.sc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sc-tags span {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 50px;
  transition: color 0.2s, border-color 0.2s;
}
.service-card:hover .sc-tags span {
  color: rgba(204,0,0,0.8);
  border-color: rgba(204,0,0,0.2);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--dark); }

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

.about-rule {
  width: 60px; height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 24px 0 28px;
}

.about-text {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.af-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.af-item i { color: var(--red); font-size: 15px; flex-shrink: 0; }

.about-visual { position: relative; }
.av-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-card2);
  border: 1px solid var(--border);
}
.av-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.5s, transform 0.5s;
}
.av-frame:hover .av-img {
  filter: brightness(0.95) saturate(1);
  transform: scale(1.03);
}

.av-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.av-badge i {
  font-size: 22px;
  color: var(--red);
}
.av-badge strong { display: block; font-size: 14px; color: var(--white); }
.av-badge span   { display: block; font-size: 11px; color: var(--muted); }

.av-accent {
  position: absolute;
  top: -2px; right: -2px;
  width: 80px; height: 80px;
  border-top: 3px solid var(--red);
  border-right: 3px solid var(--red);
  border-radius: 0 var(--radius-lg) 0 0;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background: var(--dark-card);
  z-index: 0;
}
.why-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/6.jpeg') center/cover no-repeat;
  filter: brightness(0.15) saturate(0.4);
  opacity: 1;
}
.why-section .container { position: relative; z-index: 1; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  transition-delay: var(--d, 0s);
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(204,0,0,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(204,0,0,0.15);
}

.wc-icon {
  width: 60px; height: 60px;
  background: var(--red-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s;
}
.wc-icon i { font-size: 24px; color: var(--red); }
.why-card:hover .wc-icon { background: rgba(204,0,0,0.12); }

.wc-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.wc-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--black); }

.sk-reviews-wrap {
  width: 100%;
  max-width: 100%;
  min-height: 120px;
}

.sk-reviews-wrap .sk-ww-google-reviews {
  width: 100%;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted-light);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  margin-top: 20px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
a.google-rating:hover {
  border-color: rgba(66, 133, 244, 0.35);
  background: rgba(66, 133, 244, 0.08);
  color: var(--white);
}
.google-rating i { color: #4285F4; font-size: 16px; }
.gr-stars { color: #FFC107; font-size: 16px; letter-spacing: 1px; }
.google-rating--summary { margin-top: 20px; }

.reviews-track-wrapper {
  overflow: hidden;
  overflow-x: clip;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

.review-card {
  flex: 0 0 auto;
  width: var(--review-card-width, 100%);
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(204,0,0,0.2); }

.rc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.rc-avatar {
  width: 42px; height: 42px;
  background: var(--dark-card2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.rc-info { flex: 1; min-width: 0; }
.rc-name { font-size: 14px; font-weight: 600; color: var(--white); }
.rc-date { font-size: 12px; color: var(--muted); margin-top: 2px; }
.rc-google { color: #4285F4; font-size: 16px; opacity: 0.8; }

.rc-stars { color: #FFC107; font-size: 15px; letter-spacing: 1px; margin-bottom: 12px; }
.rc-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.rc-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.rc-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.rc-dots { display: flex; gap: 8px; }
.rc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.rc-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

.reviews-footer {
  text-align: center;
  margin-top: 32px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-card2);
}
.gallery-item.gi-large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out), filter 0.5s;
  filter: brightness(0.8) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.65) saturate(0.7);
}

.gi-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(204,0,0,0.15);
}
.gi-overlay i { font-size: 24px; color: #fff; }
.gallery-item:hover .gi-overlay { opacity: 1; }

.gallery-footer { text-align: center; margin-top: 40px; }

/* Mobile gallery carousel */
.gallery-carousel-wrap {
  max-width: 100%;
  overflow: hidden;
}

.gallery-carousel-viewport {
  overflow: hidden;
  max-width: 100%;
}

.gallery-carousel-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.gc-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.gc-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.gc-dots { display: flex; gap: 8px; }
.gc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.gc-dot.active {
  background: var(--red);
  width: 22px;
  border-radius: 4px;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section {
  position: relative;
  overflow: hidden;
}
.areas-overlay {
  position: absolute;
  inset: 0;
  background: url('assets/images/8.jpeg') center/cover no-repeat;
  filter: brightness(0.12) saturate(0.3);
}
.areas-section .container { position: relative; z-index: 1; }

.areas-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.areas-region {
  background: rgba(22,22,22,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 32px 32px;
}

.areas-region-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(204,0,0,0.25);
}
.areas-region-head i { color: var(--red); font-size: 20px; }
.areas-region-head h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}

.areas-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
}

.ac-subhead {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.ac-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ac-tags span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 50px;
  line-height: 1.2;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.ac-tags span:hover {
  color: var(--white);
  border-color: rgba(204,0,0,0.35);
  background: rgba(204,0,0,0.08);
}

.areas-cta {
  text-align: center;
  margin-top: 48px;
}
.areas-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.ci-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.ci-item:last-of-type { border-bottom: none; margin-bottom: 8px; }

.ci-icon {
  width: 44px; height: 44px;
  background: var(--red-subtle);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--red); font-size: 16px; }

.ci-detail { display: flex; flex-direction: column; gap: 4px; }
.ci-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.ci-value { font-size: 15px; color: var(--white); font-weight: 500; }
a.ci-value:hover { color: var(--red); }

.ci-socials { padding-top: 8px; }
.cs-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.cs-links { display: flex; gap: 12px; flex-wrap: wrap; }
.cs-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s, color 0.2s, background 0.2s;
}
.cs-link:hover { transform: translateY(-2px); }
.cs-fb { color: #1877F2; }
.cs-fb:hover { border-color: #1877F2; background: rgba(24,119,242,0.08); }
.cs-ig { color: #E1306C; }
.cs-ig:hover { border-color: #E1306C; background: rgba(225,48,108,0.08); }

/* Contact Form */
.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.cf-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 28px;
}

.cf-group {
  position: relative;
  margin-bottom: 20px;
}
.cf-group input,
.cf-group textarea {
  width: 100%;
  background: var(--dark-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 18px 16px 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}
.cf-group textarea { min-height: 110px; }
.cf-group input:focus,
.cf-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.1);
}
.cf-group label {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 14px;
  color: var(--muted);
  pointer-events: none;
  transition: top 0.2s, font-size 0.2s, color 0.2s;
}
.cf-group input:not(:placeholder-shown) ~ label,
.cf-group input:focus ~ label,
.cf-group textarea:not(:placeholder-shown) ~ label,
.cf-group textarea:focus ~ label {
  top: 6px;
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.cf-submit { margin-top: 8px; }
.cf-submit.loading { opacity: 0.7; pointer-events: none; }

.cf-privacy {
  font-size: 11px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.cf-privacy i { opacity: 0.6; }
.cf-privacy a { color: var(--muted-light); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060606; border-top: 1px solid var(--border); }

.footer-top { padding: 70px var(--px) 50px; }
.footer-top .container { padding: 0; }

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand {}
.fb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.fb-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.fb-socials { display: flex; gap: 10px; }
.fbs-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.fbs-link:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.fc-heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fc-links { display: flex; flex-direction: column; gap: 10px; }
.fc-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s, padding-left 0.2s;
}
.fc-links a:hover { color: var(--white); padding-left: 6px; }

.fc-contact { display: flex; flex-direction: column; gap: 14px; }
.fcc-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.fcc-item i {
  color: var(--red);
  font-size: 14px;
  width: 20px;
  text-align: center;
  line-height: 1.5;
  justify-self: center;
}
.fcc-item a,
.fcc-item span {
  min-width: 0;
  word-break: break-word;
}
.fcc-item a { color: var(--muted); }
.fcc-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px var(--px);
}
.footer-bottom .container { padding: 0; }
.fb-copy {
  max-width: var(--container);
  margin: 0 auto;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(20px + env(safe-area-inset-right, 0px));
  z-index: 500;
  width: 58px; height: 58px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 6px 25px var(--red-glow);
  transition: background 0.2s, box-shadow 0.2s;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.floating-cta:hover {
  background: var(--red-bright);
  box-shadow: 0 10px 35px var(--red-glow);
}

.fc-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.floating-cta:hover .fc-tooltip { opacity: 1; }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast-notification {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  text-align: center;
  max-width: min(400px, calc(100% - 40px));
  width: auto;
}
.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.toast-notification.success { border-color: #22c55e; }
.toast-notification.error   { border-color: var(--red); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lb-content {
  max-width: min(90%, 1200px);
  max-height: 85vh;
  position: relative;
}
.lb-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 1;
  transition: background 0.2s;
}
.lb-close { top: 20px; right: 20px; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--red);
  border-color: var(--red);
}

.lb-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(n) { grid-column: auto; }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-visual  { display: none; }
  .contact-grid  { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav-inner {
    justify-content: space-between;
    gap: 12px;
  }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-right { margin-left: auto; }
  .hamburger { display: flex; margin-left: 0; }

  .hero-title { font-size: clamp(52px, 14vw, 80px); }

  .stats-bar        { padding: 0; }
  .sb-inner         { gap: 0; }
  .sb-item          { padding: 20px 24px; flex: 1; min-width: 50%; }
  .sb-divider       { display: none; }
  .sb-inner         { flex-wrap: wrap; }

  .services-grid    { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr 1fr; }
  .areas-groups { grid-template-columns: 1fr 1fr; }
  .gallery-carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius);
  }
  .gallery-grid {
    display: flex;
    grid-template-columns: unset;
    grid-template-rows: unset;
    gap: 0;
    transition: transform 0.45s var(--ease-out);
    will-change: transform;
  }
  .gallery-item {
    flex: 0 0 auto;
    width: 100%;
    height: 240px;
  }
  .gallery-item.gi-large { grid-row: unset; }
  .gallery-carousel-nav { display: flex; }
  .gallery-footer { margin-top: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .eb-inner { justify-content: space-between; }
  .eb-left { flex: 0; justify-content: flex-start; }
  .eb-left .eb-text { display: none; }
  .eb-phone { display: flex; }

  /* Prevent iOS auto-zoom on form focus */
  .cf-group input,
  .cf-group textarea {
    font-size: 16px;
  }
}

/* ============================================================
   RESPONSIVE — SMALL (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title      { font-size: clamp(44px, 15vw, 65px); }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .sb-item         { flex: 1 1 100%; border-bottom: 1px solid var(--border); }
  .why-grid        { grid-template-columns: 1fr; }
  .gallery-item    { height: 220px; }
  .about-features  { grid-template-columns: 1fr; }
  .areas-groups    { grid-template-columns: 1fr; }
  .areas-region    { padding: 24px 20px; }
  .cf-title        { font-size: 22px; }
}

/* ============================================================
   REDUCE MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-slide { animation: none; }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}
