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

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #181818;
  --surface: #1a1a1a;
  --surface-2: #222222;
  --border: #2a2a2a;
  --accent: #5cb81a;
  --accent-dark: #4aa014;
  --accent-light: #72d428;
  --text: #f5f5f5;
  --text-muted: #888;
  --text-faint: #555;
  --white: #ffffff;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Barlow Condensed', 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.6);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,184,26,.35);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn--header {
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  font-size: 13px;
}
.btn--header:hover { background: var(--accent-dark); }
.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header--left { text-align: left; }
.section-tag {
  display: inline-block;
  background: rgba(92,184,26,.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  border: 1px solid rgba(92,184,26,.2);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-card {
  opacity: 0;
  transform: translateY(50px) scale(.97);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
.header.scrolled {
  background: rgba(10,10,10,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__logo-img {
  height: 48px;
  width: auto;
  display: block;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: var(--white);
  letter-spacing: .05em;
}
.logo-icon--sm { width: 36px; height: 36px; font-size: 13px; }
.logo-main {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .04em;
  line-height: 1.2;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.header__nav a:hover { color: var(--white); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.mobile-nav__cta {
  margin-top: 16px;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92,184,26,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92,184,26,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: rgba(92,184,26,.12);
  top: -100px;
  right: -100px;
}
.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(92,184,26,.08);
  bottom: 0;
  left: -100px;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(92,184,26,.1);
  border: 1px solid rgba(92,184,26,.25);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero__title-accent { color: var(--accent); }
.hero__sub {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--text-muted);
  margin-bottom: 40px;
  letter-spacing: .04em;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 0 40px;
}
.stat__num {
  display: inline;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: .05em;
}
.stat__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollDown 1.5s ease infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee-strip {
  background: var(--accent);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.marquee-track .dot {
  color: rgba(255,255,255,.5);
  font-size: 10px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--bg);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  cursor: default;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(92,184,26,.15);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card__list {
  margin-bottom: 24px;
}
.service-card__list li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.service-card__list li:last-child { border-bottom: none; }
.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.service-card__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.service-card:hover .service-card__cta { gap: 8px; }

/* ═══════════════════════════════════════════
   PARALLAX BANNER
═══════════════════════════════════════════ */
.parallax-banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.parallax-banner__bg {
  position: absolute;
  inset: -30%;
  background: linear-gradient(135deg, #1a0a00 0%, #0a0a0a 40%, #0f0500 100%);
  will-change: transform;
}
.parallax-banner__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(92,184,26,.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 50%, rgba(92,184,26,.1) 0%, transparent 70%);
}
.parallax-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(92,184,26,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92,184,26,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.parallax-banner__content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}
.parallax-banner__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.parallax-banner__sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* ═══════════════════════════════════════════
   SERVICE AREAS
═══════════════════════════════════════════ */
.areas {
  padding: 100px 0;
  background: var(--bg-2);
}
.areas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.area-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity .3s;
}
.area-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.area-card:hover::before { opacity: 1; }
.area-card__num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 8px;
  transition: color .3s;
}
.area-card:hover .area-card__num { color: rgba(92,184,26,.2); }
.area-card__city {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.area-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.area-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-card__tags span {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(92,184,26,.08);
  color: var(--accent);
  border-radius: 999px;
  border: 1px solid rgba(92,184,26,.15);
  font-weight: 500;
  letter-spacing: .03em;
}
.area-card--wide {
  grid-column: 1 / -1;
}

.areas__cta {
  text-align: center;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.areas__cta p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════
   ABOUT / WHY US
═══════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--bg);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}
.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.feature__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.visual-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}
.visual-card__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.visual-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.visual-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.visual-card__hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
}
.visual-card__hours div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.visual-card__hours strong { color: var(--white); }
.visual-card__hours span { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   HORIZONTAL SCROLL SHOWCASE
═══════════════════════════════════════════ */
.hscroll-section {
  padding: 100px 0;
  background: var(--bg-3);
  overflow: hidden;
}
.hscroll-sticky {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hscroll-label {
  margin-bottom: 48px;
}
.hscroll-label .section-title { margin-bottom: 0; }
.hscroll-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hscroll-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color .3s, transform .3s;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .6s ease, transform .6s ease, border-color .3s, box-shadow .3s;
}
.hscroll-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.hscroll-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(92,184,26,.12);
}
.hscroll-item__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: rgba(92,184,26,.15);
  line-height: 1;
  margin-bottom: 16px;
}
.hscroll-item h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.hscroll-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gallery {
  padding: 100px 0;
  background: var(--bg);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  margin-bottom: 48px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}
.gallery__item--wide {
  grid-column: span 3;
  grid-row: span 1;
  height: 380px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.gallery__filter {
  padding: 9px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.gallery__filter:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.gallery__filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.gallery__item {
  transition: opacity .4s ease, transform .4s ease;
}
.gallery__item.hidden {
  display: none;
}
.gallery__tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 6px;
  vertical-align: middle;
}
.gallery__cta {
  text-align: center;
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery__item--wide {
    grid-column: span 2;
    height: 280px;
  }
}
@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery__item--wide {
    grid-column: span 1;
    height: 260px;
  }
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--bg-2);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__info .section-tag { margin-bottom: 16px; }
.contact__info .section-title { margin-bottom: 16px; }
.contact__info > p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.contact__item:hover { border-color: var(--accent); }
.contact__item-icon {
  width: 40px;
  height: 40px;
  background: rgba(92,184,26,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact__item strong {
  display: block;
  font-size: 12px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.contact__item span {
  font-size: 15px;
  color: var(--text);
}
.contact__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-btn {
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s;
}
.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Contact Form */
.contact__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 16px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(92,184,26,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-2); }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 14px;
  color: var(--text-faint);
  transition: color .2s;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer__bottom p {
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   FLOATING CTA
═══════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(92,184,26,.4);
  transform: translateY(100px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease, background .2s;
}
.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.floating-cta:hover { background: var(--accent-dark); }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .hscroll-track { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .header__nav { display: none; }
  .btn--header { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .header__inner { padding: 16px 20px; }
  .header__logo-img { height: 38px; }

  /* Sections padding */
  .services,
  .areas,
  .about,
  .hscroll-section,
  .gallery,
  .contact { padding: 64px 0; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-desc { font-size: 15px; }

  /* Hero */
  .hero { padding: 100px 20px 64px; }
  .hero__badge { font-size: 11px; padding: 6px 14px; }
  .hero__title { letter-spacing: 0; }
  .hero__sub { font-size: 13px; letter-spacing: .02em; }
  .hero__ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero__ctas .btn--lg { width: 100%; max-width: 320px; justify-content: center; }
  .hero__stats {
    gap: 0;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-around;
  }
  .stat { padding: 0 12px; }
  .stat__num { font-size: 32px; }
  .stat__label { font-size: 11px; }
  .stat__divider { height: 36px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 22px; }

  /* Areas */
  .areas__grid { grid-template-columns: 1fr; }
  .area-card { padding: 28px 24px; }
  .area-card__num { font-size: 52px; }
  .areas__cta { padding: 28px 20px; }
  .areas__cta p { font-size: 15px; }

  /* About */
  .about__inner { gap: 40px; }
  .visual-card { padding: 28px 24px; }
  .visual-card h3 { font-size: 26px; }

  /* Horizontal scroll */
  .hscroll-track { grid-template-columns: 1fr; }
  .hscroll-label .section-title { font-size: 32px; }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
  }
  .gallery__item--wide {
    grid-column: span 2;
    height: 240px;
  }
  .gallery__filters { gap: 8px; }
  .gallery__filter { padding: 7px 16px; font-size: 12px; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 20px; }
  .contact__info > p { font-size: 15px; }

  /* Parallax banner */
  .parallax-banner__title { font-size: clamp(28px, 7vw, 48px); }
  .parallax-banner__sub { font-size: 15px; }
  .parallax-banner__content { padding: 60px 20px; }

  /* Footer */
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__inner { padding: 0 20px; }
  .footer__brand { margin-bottom: 8px; }

  /* Floating CTA */
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 14px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL PHONE
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Header */
  .header__logo-img { height: 32px; }

  /* Hero */
  .hero { padding: 88px 16px 56px; }
  .stat__divider { display: none; }
  .hero__stats { justify-content: center; gap: 24px; flex-wrap: wrap; }
  .stat { padding: 0; }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 10px;
  }
  .gallery__item--wide {
    grid-column: span 1;
    height: 240px;
  }
  .gallery__filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .gallery__filter { flex-shrink: 0; }

  /* Contact */
  .contact__form { padding: 20px 16px; }

  /* Footer */
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom p { font-size: 11px; }

  /* Floating CTA */
  .floating-cta { padding: 11px 16px; font-size: 13px; gap: 7px; }
  .floating-cta svg { width: 18px; height: 18px; }

  /* Marquee */
  .marquee-track span { font-size: 13px; }

  /* Buttons */
  .btn--lg { padding: 14px 24px; font-size: 15px; }
}

/* ── Contact form messages ─────────────── */
.form-success,
.form-error {
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: 14px;
  text-align: center;
}
.form-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #16a34a;
}
.form-success h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.form-success p { margin: 0; opacity: 0.9; }
.form-error {
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #dc2626;
}
.form-error p { margin: 0; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq {
  padding: 100px 0 120px;
  background: var(--bg);
}
.faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease;
}
.faq__item[open] {
  border-color: rgba(92,184,26,.5);
  background: var(--surface-2);
}
.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary > span:first-child { flex: 1; }
.faq__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(92,184,26,.12);
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
  flex-shrink: 0;
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
}
.faq__item p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
}
.faq__cta {
  margin-top: 48px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   SUBPAGE — service & city pages
═══════════════════════════════════════════ */
.subhero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #0a0a0a 0%, #131313 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 75% 0%, rgba(92,184,26,.12), transparent 70%),
    radial-gradient(700px 400px at 10% 100%, rgba(92,184,26,.08), transparent 70%);
  pointer-events: none;
}
.subhero__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
  letter-spacing: .04em;
  justify-content: center;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span.sep { color: var(--text-faint); }
.subhero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--white);
}
.subhero h1 .accent { color: var(--accent); }
.subhero__lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.subhero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.subpage-section {
  padding: 80px 0;
}
.subpage-section--alt {
  background: var(--bg-2);
}
.subpage-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 18px;
}
.subpage-section h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.subpage-section p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 780px;
}
.subpage-section p strong { color: var(--text); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.feature-grid__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
  transition: border-color .25s ease, transform .25s ease;
}
.feature-grid__item:hover {
  border-color: rgba(92,184,26,.5);
  transform: translateY(-3px);
}
.feature-grid__item h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.feature-grid__item p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.bullet-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 28px;
  margin: 24px 0 8px;
  padding: 0;
}
.bullet-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.6;
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(92,184,26,.15);
}

.cta-block {
  margin-top: 48px;
  padding: 44px 28px;
  background: linear-gradient(135deg, rgba(92,184,26,.12), rgba(92,184,26,.04));
  border: 1px solid rgba(92,184,26,.35);
  border-radius: var(--radius-lg);
  text-align: center;
}
.cta-block h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-block p {
  margin: 0 auto 22px;
  max-width: 560px;
  color: var(--text-muted);
}
.cta-block__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.area-list span,
.area-list a {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  transition: border-color .2s ease, color .2s ease;
}
.area-list a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 720px) {
  .subhero { padding: 130px 0 60px; }
  .subpage-section { padding: 60px 0; }
}
