/* ============================================================
   J5's Concrete Landscape Design — Main Stylesheet
   Fonts: Teko (headings) + Poppins (body)
   Accent: #4ade80 (green-400) on dark backgrounds
   ============================================================ */

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

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

:root {
  --accent:    #4ade80;
  --accent-dk: #16a34a;
  --black:     #0a0a0a;
  --gray-900:  #111111;
  --gray-800:  #1c1c1c;
  --gray-700:  #2a2a2a;
  --gray-600:  #404040;
  --gray-500:  #6b6b6b;
  --gray-400:  #9ca3af;
  --gray-300:  #d1d5db;
  --gray-100:  #f3f4f6;
  --white:     #ffffff;
  --font-head: 'Teko', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --nav-h:     80px;
  --max-w:     1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--gray-900);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  line-height: 1.15;
}

/* === UTILITY === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section-dark  { background: var(--gray-900); }
.section-black { background: var(--black); }
.section-light { background: var(--white); color: var(--black); }
.section-green { background: linear-gradient(135deg, var(--accent-dk), #15803d); }

.text-center { text-align: center; }
.mx-auto     { margin-left: auto; margin-right: auto; }
.mb-2  { margin-bottom: .5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4  { margin-top: 1rem; }
.mt-2  { margin-top: .5rem; }

.eyebrow {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-style: italic;
  color: var(--accent);
  margin-bottom: .5rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
}

.section-title.dark { color: var(--black); }

.gold-line {
  width: 3.5rem;
  height: 3px;
  background: var(--accent);
  margin: .75rem 0 1.5rem;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  padding: .75rem 2rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: opacity .2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { opacity: .88; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: .72rem 2rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: all .2s;
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover { background: var(--accent); color: var(--black); }

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  padding: .75rem 2rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: opacity .2s;
}
.btn-white:hover { opacity: .9; }

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-800);
  transition: box-shadow .3s;
  height: var(--nav-h);
}
.site-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.5); }

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 1.5rem;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}

.nav-links > li > a {
  display: block;
  padding: .5rem .75rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
  color: var(--gray-400);
  transition: color .2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--accent); }

/* dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-top: 2px solid var(--accent);
  min-width: 220px;
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: .65rem 1rem;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-400);
  border-bottom: 1px solid var(--gray-700);
  transition: all .15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--accent); color: var(--black); }

.nav-cta {
  background: var(--accent);
  color: var(--black);
  padding: .5rem 1.25rem;
  font-family: var(--font-head);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity .2s;
  margin-left: .5rem;
}
.nav-cta:hover { opacity: .88; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--gray-900);
  z-index: 90;
  overflow-y: auto;
  padding: 1.5rem 1.5rem 2rem;
}
.mob-menu.open { display: block; }

.mob-menu ul > li > a {
  display: block;
  padding: .9rem 0;
  border-bottom: 1px solid var(--gray-800);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
  color: var(--gray-400);
  transition: color .2s;
}
.mob-menu ul > li > a:hover { color: var(--accent); }

.mob-sub {
  padding: .5rem 0 .5rem 1.5rem;
  display: none;
}
.mob-sub.open { display: block; }
.mob-sub li a {
  display: block;
  padding: .4rem 0;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  transition: color .2s;
}
.mob-sub li a:hover { color: var(--accent); }

.mob-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.mob-toggle-arrow { color: var(--accent); font-size: .7rem; transition: transform .2s; }
.mob-toggle-arrow.open { transform: rotate(180deg); }

.mob-cta { margin-top: 1.5rem; }
.mob-cta a {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--black);
  padding: 1rem;
  font-family: var(--font-head);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* === BREADCRUMBS === */
.breadcrumb-bar {
  background: var(--black);
  border-bottom: 1px solid var(--gray-800);
  padding: .6rem 0;
  margin-top: var(--nav-h);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--gray-500); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--gray-700); }
.breadcrumb .current { color: var(--accent); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero h1 em { color: var(--accent); font-style: normal; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-300);
  max-width: 42rem;
  line-height: 1.7;
  margin-bottom: .75rem;
}

.hero-trust {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gray-600);
  margin-bottom: 2rem;
}
.hero-trust span { color: var(--accent); }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-badges {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-700);
  padding-top: 2rem;
}

.hero-badge-item .badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero-badge-item .badge-label {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--gray-600);
  margin-top: .2rem;
}

/* === SERVICE CARDS === */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.svc-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.svc-card:hover { border-color: var(--accent); transform: translateY(-3px); }

.svc-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.svc-card-body { padding: 1.5rem; }

.svc-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.svc-card-icon svg { width: 18px; height: 18px; fill: var(--black); }

.svc-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: .5rem;
}
.svc-card p {
  font-size: .83rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.svc-card .card-link {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  font-weight: 500;
}
.svc-card .card-link:hover { text-decoration: underline; }

/* === AREA GRID === */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--gray-700); }
.area-tile {
  background: var(--gray-800);
  padding: 2rem;
  border-left: 3px solid transparent;
  transition: all .2s;
  display: block;
}
.area-tile:hover { border-left-color: var(--accent); background: var(--gray-700); }
.area-tile h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .4rem;
}
.area-tile p { font-size: .8rem; color: var(--gray-500); line-height: 1.5; }

/* === PHOTO GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-2col { grid-template-columns: repeat(2, 1fr); }

/* === WHY CHOOSE === */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--gray-800); }
.why-item {
  background: var(--gray-900);
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-icon {
  width: 2.2rem;
  height: 2.2rem;
  background: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 14px; height: 14px; fill: var(--black); }
.why-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .3rem;
}
.why-item p { font-size: .82rem; color: var(--gray-400); line-height: 1.5; }

/* === STATS BAR === */
.stats-bar {
  background: var(--accent);
  padding: 2.5rem 0;
}
.stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(0,0,0,.6);
  margin-top: .3rem;
}

/* === TESTIMONIALS === */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  padding: 2rem;
}
.stars { color: var(--accent); font-size: 1rem; letter-spacing: .1em; margin-bottom: 1rem; }
.testimonial-card blockquote {
  font-size: .88rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.testimonial-author span {
  font-size: .75rem;
  color: var(--gray-500);
}

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, var(--accent-dk) 0%, #15803d 100%);
  padding: 5rem 0;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-band p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 40rem; margin-bottom: 2rem; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === CONTACT FORM === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }

.contact-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .75rem;
}
.contact-info p { font-size: .88rem; color: var(--gray-400); line-height: 1.6; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 2.2rem;
  height: 2.2rem;
  background: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon svg { width: 14px; height: 14px; fill: var(--black); }
.contact-detail-text strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--white); margin-bottom: .2rem; }
.contact-detail-text span, .contact-detail-text a { font-size: .88rem; color: var(--gray-400); }
.contact-detail-text a:hover { color: var(--accent); }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  color: var(--white);
  padding: .85rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color .2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234ade80' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-group select option { background: var(--gray-800); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-note { font-size: .72rem; color: var(--gray-500); margin-top: .5rem; }

.form-success {
  display: none;
  background: rgba(74,222,128,.1);
  border: 1px solid var(--accent);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: .88rem;
  color: var(--accent);
}
.form-success.show { display: block; }

.form-error {
  display: none;
  background: rgba(239,68,68,.1);
  border: 1px solid #ef4444;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: .88rem;
  color: #ef4444;
}
.form-error.show { display: block; }

/* === ABOUT PAGE === */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-intro-img { position: relative; }
.about-intro-img img { width: 100%; height: 420px; object-fit: cover; }
.about-intro-img::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: 12px;
  border: 2px solid var(--accent);
  z-index: -1;
}
.about-intro-text p { font-size: .9rem; color: var(--gray-400); line-height: 1.75; margin-bottom: 1rem; }
.about-intro-text .highlight { color: var(--accent); font-weight: 600; }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--gray-800);
  border-top: 3px solid var(--accent);
  padding: 2rem 1.5rem;
  text-align: center;
}
.value-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .5rem;
}
.value-card p { font-size: .82rem; color: var(--gray-400); line-height: 1.5; }

/* === SERVICE DETAIL PAGE === */
.service-detail { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.service-main p { font-size: .9rem; color: var(--gray-400); line-height: 1.75; margin-bottom: 1rem; }
.service-main h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 2rem 0 .75rem;
}

.check-list { list-style: none; }
.check-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--gray-300);
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-800);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--accent);
  display: block;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' stroke='%23000' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.sidebar-card {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.sidebar-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--gray-700);
}
.sidebar-card p { font-size: .85rem; color: var(--gray-400); line-height: 1.5; }
.sidebar-card .phone-big {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: .04em;
  margin: .5rem 0 1rem;
}
.sidebar-link-list li a {
  display: block;
  padding: .6rem 0;
  border-bottom: 1px solid var(--gray-700);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-400);
  transition: color .2s;
}
.sidebar-link-list li:last-child a { border-bottom: none; }
.sidebar-link-list li a:hover { color: var(--accent); }
.sidebar-link-list li a.active { color: var(--accent); }

/* === PAGE HERO (shorter, for inner pages) === */
.page-hero {
  background: var(--black);
  position: relative;
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .2;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.9) 40%, rgba(0,0,0,.5) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .75rem;
}
.page-hero p { font-size: 1rem; color: var(--gray-300); max-width: 36rem; line-height: 1.6; }

/* === FOOTER === */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--gray-800);
  padding: 4rem 0 0;
}

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

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .82rem; color: var(--gray-600); transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col address, .footer-col .fc-text {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.footer-col a { color: var(--gray-600); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-tagline { font-size: .82rem; color: var(--gray-600); line-height: 1.6; margin: 1rem 0 1.25rem; max-width: 20rem; }
.footer-logo-text { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--accent); }

.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--gray-800);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s;
}
.socials a:hover { border-color: var(--accent); }
.socials svg { width: 16px; height: 16px; fill: var(--gray-600); transition: fill .2s; }
.socials a:hover svg { fill: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p, .footer-bottom a { font-size: .72rem; color: var(--gray-700); }
.footer-bottom a:hover { color: var(--accent); }

/* === LOADING / SPINNER === */
.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(0,0,0,.3);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  vertical-align: middle;
  margin-right: .4rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* btn loading state */
.btn-loading { opacity: .7; pointer-events: none; }

/* === MISC === */
.accent-bar { height: 3px; width: 3rem; background: var(--accent); }

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  padding: .6rem 1rem;
  font-size: .78rem;
  color: var(--gray-300);
  margin-top: 1.5rem;
}
.license-badge strong { color: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro-img img { height: 300px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .hero-content { padding-left: 1.25rem; padding-right: 1.25rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .area-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 1.5rem; }
  .value-grid { grid-template-columns: 1fr; }
}
