/* ============================================
   Good Air Heating & Cooling
   Premium Dark Theme
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #2ecc40;
  --green-dark: #073300;
  --green-glow: rgba(46,204,64,.08);
  --green-border: rgba(46,204,64,.2);
  --amber: #f59e0b;

  --bg: #050505;
  --surface: #0a0a0a;
  --card: #111;
  --card-hover: #161616;
  --border: rgba(255,255,255,.06);
  --border-hover: rgba(255,255,255,.14);

  --text: #e5e5e5;
  --text-dim: #a3a3a3;
  --text-muted: #737373;
  --white: #fff;
  --black: #000;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max-w: 1360px;
  --header-h: 80px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --ease: cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

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

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

h1, h2, h3, h4 { font-weight: 700; color: var(--white); line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 800; letter-spacing: -.04em; }
h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); }
p { color: var(--text-dim); }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* --- Accessibility --- */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--green-dark); color: var(--white);
  padding: 8px 16px; z-index: 1000; border-radius: var(--radius-xs); font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* ===================== PROMO BAR ===================== */
.promo-bar {
  background: var(--green-dark); color: var(--white);
  text-align: center; padding: 8px 20px;
  font-size: .75rem; font-weight: 500;
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
}
@media (max-width: 768px) {
  .promo-bar { font-size: .7rem; padding: 6px 16px; }
  .promo-bar ~ .site-header { top: 32px; }
  .promo-bar ~ .site-header ~ main .hero { margin-top: calc(var(--header-h) + 32px); }
}
.promo-bar code {
  background: rgba(255,255,255,.15); padding: 2px 8px;
  border-radius: 4px; font-weight: 700;
}
@media (min-width: 769px) {
  .promo-bar ~ .site-header { top: 36px; }
  .promo-bar ~ .site-header ~ main .hero { margin-top: calc(var(--header-h) + 36px); }
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(5,5,5,.7);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}

.logo img { height: 48px; width: auto; filter: brightness(0) invert(1); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: var(--text-muted); font-size: .85rem; font-weight: 500;
  padding: 6px 14px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.06); }

.nav-links .btn-nav {
  background: var(--green-dark); color: var(--white); border: 1px solid rgba(46,204,64,.3);
  font-weight: 600; padding: 8px 18px; margin-left: 10px; border-radius: 8px;
  transition: filter .2s, transform .2s;
}
.nav-links .btn-nav:hover { filter: brightness(1.15); transform: translateY(-1px); }

.nav-phone {
  display: none; color: var(--white); font-weight: 600; font-size: .9rem;
  gap: 6px; align-items: center;
}
.nav-phone svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none; background: none; border: none; padding: 8px; color: var(--white);
}

@media (max-width: 768px) {
  .hero-sm {
    background: linear-gradient(135deg, rgba(46,204,64,.35) 0%, rgba(7,51,0,.6) 50%, rgba(46,204,64,.25) 100%);
    border-bottom: 3px solid rgba(46,204,64,.6);
  }
  .nav-toggle { display: flex; }
  .nav-phone { display: flex; }
  .nav-links {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: rgba(5,5,5,.96); backdrop-filter: blur(20px);
    flex-direction: column; padding: 12px 24px 24px; gap: 2px;
    transform: translateY(-120%); transition: transform .35s var(--ease);
    border-bottom: 1px solid var(--border);
    visibility: hidden; opacity: 0;
  }
  .promo-bar ~ .site-header .nav-links { top: calc(var(--header-h) + 32px); }
  .nav-links.open { transform: translateY(0); visibility: visible; opacity: 1; }
  .nav-links a { width: 100%; padding: 14px 16px; font-size: 1rem; color: var(--text-dim); }
  .nav-links .btn-nav { display: none; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 75vh;
  display: flex; align-items: center;
  margin-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center bottom;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(5,5,5,.97) 0%, rgba(5,5,5,.85) 35%, rgba(5,5,5,.55) 100%),
    linear-gradient(to top, rgba(5,5,5,1) 0%, transparent 30%);
}

.hero-content {
  position: relative; z-index: 2; max-width: 620px; padding: 100px 0;
}

.hero-badge {
  display: inline-block;
  font-size: .75rem; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 24px; padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
}

.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--green); }
.hero h1 em { font-style: normal; color: var(--text-dim); font-weight: 400; font-size: .5em; display: block; letter-spacing: 0; margin-top: 8px; }

.hero p {
  font-size: 1.1rem; color: var(--text-dim);
  margin-bottom: 40px; line-height: 1.7; max-width: 460px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--text-muted); font-size: .7rem; text-transform: uppercase;
  letter-spacing: .15em; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { width: 1px; height: 40px; background: var(--text-muted); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* Sub-page hero */
.hero-sm {
  min-height: auto; padding: 0;
  background: linear-gradient(135deg, rgba(46,204,64,.06) 0%, var(--surface) 50%, rgba(46,204,64,.03) 100%);
  border-bottom: 1px solid var(--green-border);
}
.hero-sm .hero-content { padding: 48px 0 32px; max-width: 640px; }
.hero-sm h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.hero-sm p { font-size: .95rem; }
.hero-sm .hero-bg { display: none; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; font-size: .9rem; font-weight: 600;
  border-radius: var(--radius-sm); border: none;
  transition: all .25s var(--ease); white-space: nowrap;
}

.btn-primary { background: var(--green-dark); color: var(--white); border: 1px solid rgba(46,204,64,.3); }
.btn-primary:hover {
  filter: brightness(1.3); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(7,51,0,.4);
}

.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--text); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-outline:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }

.btn-green { background: var(--green-dark); color: var(--white); border: 1px solid var(--green-border); }
.btn-green:hover {
  border-color: var(--green);
  box-shadow: 0 0 30px var(--green-glow);
}

.btn-green-outline {
  background: transparent; color: var(--green);
  border: 1px solid var(--green-border);
}
.btn-green-outline:hover { background: var(--green-glow); border-color: var(--green); }

.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-lg { padding: 16px 32px; font-size: .95rem; }

/* ===================== MARQUEE ===================== */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--surface);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 40s linear infinite;
}
.marquee-track span {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .15em; color: var(--text-muted);
  padding: 0 24px; display: inline-flex; align-items: center; gap: 24px;
}
.marquee-track .dot { color: var(--green); font-size: .5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================== SECTIONS ===================== */
section { padding: 64px 0; }

.section-header { text-align: center; max-width: 560px; margin: 0 auto 40px; }
.section-header p { margin-top: 16px; font-size: 1.05rem; }
.section-header-left { max-width: 100%; text-align: left; margin-bottom: 48px; }

.section-label {
  display: inline-block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--green); margin-bottom: 16px;
}

.bg-surface { background: var(--surface); }
.bg-card { background: var(--card); }
.bg-green { background: var(--green-dark); }
.bg-green h2, .bg-green h3 { color: var(--white); }
.bg-green p { color: rgba(255,255,255,.8); }
.bg-green .stat-item .label { color: rgba(255,255,255,.7); }
.bg-green .stat-item .number {
  background: linear-gradient(135deg, var(--white) 30%, rgba(255,255,255,.8));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================== SERVICE CARDS (Image Overlay) ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
/* Top row: 2 cards spanning 3 cols evenly */
.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2) {
  grid-column: span 1;
}
@media (min-width: 769px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .services-grid .service-card:nth-child(1),
  .services-grid .service-card:nth-child(2) { grid-column: span 3; }
  .services-grid .service-card:nth-child(3),
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) { grid-column: span 2; }
}

.service-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/2; display: block;
  border: 1px solid var(--border);
}

.service-card .card-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform .6s var(--ease), filter .4s;
  filter: brightness(.35) saturate(.8);
}
.service-card .card-bg[data-pos="top"] { object-position: center 20%; }
.service-card .card-bg[data-pos="bottom"] { object-position: center 80%; }
.service-card:hover .card-bg {
  transform: scale(1.06);
  filter: brightness(.5) saturate(1);
}

.service-card .card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px; z-index: 2;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
}
.service-card .card-body h3 {
  font-size: 1.25rem; margin-bottom: 6px;
  transition: color .3s;
}
.service-card:hover .card-body h3 { color: var(--green); }
.service-card .card-body p {
  font-size: .85rem; color: rgba(255,255,255,.6);
  line-height: 1.5; max-width: 340px;
}

.service-card .card-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); z-index: 2;
  transition: background .3s, transform .3s;
}
.service-card:hover .card-arrow {
  background: var(--green-dark); color: var(--white);
  transform: translate(3px, -3px);
}
.service-card .card-arrow svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 16/9; }
}

/* ===================== WORK STRIP (Horizontal Scroll) ===================== */
.work-section { padding: 80px 0; overflow: hidden; }
.work-section .section-header-left { padding: 0 24px; max-width: var(--max-w); margin: 0 auto 40px; }

.work-strip {
  display: flex; gap: 12px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 24px 20px;
  scrollbar-width: none;
}
.work-strip::-webkit-scrollbar { display: none; }

.work-strip-item {
  flex: 0 0 320px; scroll-snap-align: start;
  border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  border: 1px solid var(--border);
}
.work-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.work-strip-item:hover img { transform: scale(1.05); }

.work-strip-item .work-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: var(--radius-xs);
  font-size: .75rem; font-weight: 600; color: var(--white);
}

@media (max-width: 480px) {
  .work-strip-item { flex: 0 0 260px; }
}

/* ===================== WORK GRID ===================== */
.work-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}

/* Before/after card spans full width */
.work-card:not(.work-card-single) { grid-column: span 2; }

.work-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.work-card-img {
  aspect-ratio: 3/2; overflow: hidden;
}
.work-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.work-card:hover .work-card-img img { transform: scale(1.04); }

/* Before/after card shows two images side by side at larger size */
.work-card:not(.work-card-single) {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr auto;
}
.work-card:not(.work-card-single) .work-card-img { aspect-ratio: 4/3; }
.work-card:not(.work-card-single) .work-card-label { grid-column: span 2; }

.work-card-label {
  padding: 14px 18px; font-size: .8rem; font-weight: 600; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: .04em;
}

@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card:not(.work-card-single) { grid-column: span 1; }
}

/* ===================== ABOUT / TEAM ===================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-text .section-label { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 24px; }
.about-text p { margin-bottom: 16px; line-height: 1.7; font-size: .95rem; }
.about-text p:last-of-type { margin-bottom: 32px; }

.about-image {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
}
.about-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.about-image::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  pointer-events: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.team-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 28px; text-align: center;
  transition: border-color .3s, transform .3s;
}
.team-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.team-avatar {
  width: 130px; height: 130px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 20px; border: 2px solid var(--border);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }

.team-card h3 { margin-bottom: 4px; font-size: 1.15rem; }
.team-card .role {
  color: var(--green); font-weight: 600; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px;
}
.team-card p { font-size: .85rem; line-height: 1.6; }

/* ===================== STATS ===================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item .number {
  font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--white) 30%, var(--green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item .label {
  font-size: .8rem; color: var(--text-muted); margin-top: 8px;
  text-transform: uppercase; letter-spacing: .06em; font-weight: 500;
}

@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ===================== DASHBOARD FEATURE ===================== */
.dashboard-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 768px) { .dashboard-feature { grid-template-columns: 1fr; gap: 40px; } }

.dashboard-feature h2 { margin-bottom: 20px; }
.dashboard-feature p { line-height: 1.7; font-size: .95rem; }

.dashboard-preview {
  position: relative;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 4px; overflow: hidden;
}
.dashboard-preview img {
  width: 100%; border-radius: calc(var(--radius) - 4px);
  transition: opacity .4s ease;
}
.dashboard-preview::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-border), transparent 40%, transparent 60%, rgba(245,158,11,.15));
  z-index: -1;
}

.dashboard-dots {
  display: flex; gap: 8px; justify-content: center; margin-top: 16px;
}
.dashboard-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-hover); transition: all .25s;
}
.dashboard-dots span.active { background: var(--green); transform: scale(1.25); }

/* ===================== LOCATIONS ===================== */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.location-card {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-weight: 500; font-size: .9rem;
  transition: all .2s var(--ease);
}
.location-card:hover {
  border-color: var(--green-border); background: var(--green-glow);
  transform: translateY(-2px);
}
.location-card svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

/* ===================== REVIEWS ===================== */
.reviews-carousel { position: relative; margin: 0 auto; }
.reviews-track { display: flex; gap: 16px; overflow: hidden; }

.review-card {
  flex: 0 0 calc(33.333% - 11px); min-width: 0;
  display: none; flex-direction: column;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color .3s;
}
.review-card:hover { border-color: var(--border-hover); }
.review-card.active { display: flex; }

.review-text {
  font-size: .9rem; color: var(--text-dim); line-height: 1.7;
  font-style: italic; flex: 1; margin-bottom: 24px;
}
.review-footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px solid var(--border); padding-top: 16px; margin-top: auto;
}
.review-author strong { display: block; color: var(--white); font-size: .9rem; }
.review-author span { font-size: .75rem; color: var(--text-muted); }
.review-stars { color: #f59e0b; font-size: .95rem; letter-spacing: 2px; white-space: nowrap; }

.review-nav {
  display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 28px;
}
.review-nav button {
  background: var(--card); border: 1px solid var(--border);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); transition: all .2s;
}
.review-nav button:hover { border-color: var(--border-hover); color: var(--white); }
.review-dots { display: flex; gap: 8px; }
.review-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-hover); cursor: pointer; transition: all .25s;
}
.review-dots span.active { background: var(--green); transform: scale(1.3); }

@media (max-width: 768px) {
  .review-card { flex: 0 0 100%; }
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  text-align: center; padding: 64px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { max-width: 440px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-banner .btn { margin: 0 6px; }
@media (max-width: 480px) {
  .cta-banner .btn { padding: 12px 16px; font-size: .8rem; margin: 0 4px; }
}

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-list { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 16px; }
.contact-info-item .icon {
  width: 44px; height: 44px; background: var(--green-glow);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--green);
}
.contact-info-item h4 { font-size: .9rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--text-dim); font-size: .9rem; }
.contact-info-item a:hover { color: var(--green); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: .85rem;
  margin-bottom: 6px; color: var(--text);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: .95rem; font-family: var(--font);
  background: var(--bg); color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-status {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500; margin-top: 12px; display: none;
}
.form-status.success {
  background: var(--green-glow); color: var(--green);
  border: 1px solid var(--green-border); display: block;
}
.form-status.error {
  background: rgba(239,68,68,.08); color: #ef4444;
  border: 1px solid rgba(239,68,68,.15); display: block;
}

.promo-box {
  margin-top: 40px; padding: 24px;
  background: var(--green-glow); border: 1px solid var(--green-border);
  border-radius: var(--radius-sm);
}
.promo-box h3 { font-size: .95rem; margin-bottom: 6px; color: var(--green); }
.promo-box p { font-size: .85rem; margin: 0; }

/* ===================== SERVICE DETAIL ===================== */
.service-hero-image {
  width: 100%; max-height: 360px; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 32px;
  border: 1px solid var(--border);
}

.service-detail-content {
  display: grid; grid-template-columns: 2fr 1fr; gap: 56px;
}
@media (max-width: 768px) { .service-detail-content { grid-template-columns: 1fr; } }

.service-detail-content h2 { margin: 40px 0 16px; font-size: 1.5rem; }
.service-detail-content h2:first-child { margin-top: 0; }
.service-detail-content p { margin-bottom: 16px; line-height: 1.7; }
.service-detail-content ul { margin-bottom: 24px; }
.service-detail-content ul li {
  padding: 10px 0 10px 28px; position: relative; color: var(--text-dim);
}
.service-detail-content ul li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 6px; height: 6px; background: var(--green); border-radius: 50%;
}

.sidebar-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  margin-bottom: 20px; position: sticky; top: calc(var(--header-h) + 24px);
}
.sidebar-card h3 { font-size: 1rem; margin-bottom: 16px; }
.sidebar-card ul li a {
  display: block; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim); font-size: .9rem; transition: color .2s;
}
.sidebar-card ul li a:hover { color: var(--green); }
.sidebar-card ul li:last-child a { border-bottom: none; }

/* ===================== LOCATIONS DETAIL ===================== */
.location-services-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0;
}
@media (max-width: 480px) { .location-services-list { grid-template-columns: 1fr; } }

.location-services-list a {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-weight: 500; font-size: .9rem; transition: all .2s var(--ease);
}
.location-services-list a:hover {
  border-color: var(--green-border); background: var(--green-glow);
}
.location-services-list a svg { width: 18px; height: 18px; color: var(--green); }

/* ===================== BENTO GRID ===================== */
.bento-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.bento-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.bento-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0; transition: opacity .3s;
}
.bento-item:hover { border-color: var(--border-hover); box-shadow: 0 0 40px rgba(34,197,94,.04); }
.bento-item:hover::before { opacity: 1; }

.bento-item .bento-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); background: var(--green-glow);
  border: 1px solid var(--green-border);
  color: var(--green); margin-bottom: 16px;
}
.bento-item .bento-icon svg { width: 20px; height: 20px; }
.bento-item h3 { font-size: 1rem; margin-bottom: 8px; }
.bento-item p { font-size: .85rem; color: var(--text-dim); line-height: 1.5; }
.bento-item.bento-wide { grid-column: span 2; }

@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.bento-wide { grid-column: span 1; }
}

/* ===================== FEATURES GRID (fallback) ===================== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px;
}
.feature-item { text-align: center; padding: 24px; }
.feature-item .icon {
  width: 56px; height: 56px; background: var(--green-glow);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px; color: var(--green);
}
.feature-item h3 { margin-bottom: 8px; font-size: 1.1rem; }
.feature-item p { font-size: .9rem; }

/* ===================== BREADCRUMBS ===================== */
.breadcrumbs {
  padding: 16px 0; font-size: .8rem; color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-dim); transition: color .2s; }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span { margin: 0 6px; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--black); color: var(--text-dim);
  padding: 72px 0 0; border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { width: 160px; height: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  color: var(--white); font-size: .7rem; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 16px;
}
.footer-col a {
  display: block; padding: 4px 0; font-size: .85rem; transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: .7rem; flex-wrap: wrap; gap: 8px;
  color: var(--text-muted);
}
.footer-bottom a:hover { color: var(--white); }

/* ===================== UTILITY ===================== */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ===================== ANIMATIONS ===================== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }
.reveal.delay-5 { transition-delay: .5s; }

.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===================== PRINT ===================== */
@media print {
  .site-header, .site-footer, .promo-bar, .nav-toggle, .marquee { display: none; }
  .hero { margin-top: 0; min-height: auto; }
  section { padding: 24px 0; }
  body { background: white; color: black; }
}
