/* ============================================================
   LAWN SPA LANDSCAPING — Design System
   Bold-Energy | Blue + Dark Slate
   ============================================================ */

:root {
  /* Brand Colors */
  --color-primary: #0042a9;
  --color-primary-dark: #003080;
  --color-primary-light: #e6eef8;
  --color-secondary: #1a1a2e;
  --color-accent: #3b82f6;
  --color-white: #ffffff;
  --color-black: #111111;

  /* Neutral Palette */
  --color-bg: #ffffff;
  --color-bg-alt: #f5f7fa;
  --color-bg-dark: #1a1a2e;
  --color-text: #1a1a2e;
  --color-text-light: #4a4a5a;
  --color-text-muted: #7a7a8a;
  --color-text-on-dark: #ffffff;
  --color-border: #dde1e8;
  --color-border-light: #eef0f4;

  /* Status */
  --color-success: #16a34a;
  --color-error: #dc2626;

  /* Typography */
  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
  --fs-hero: clamp(2.4rem, 5.5vw, 3.75rem);
  --fs-h1: clamp(1.9rem, 4.5vw, 2.75rem);
  --fs-h2: clamp(1.5rem, 3.5vw, 2rem);
  --fs-h3: clamp(1.15rem, 2.5vw, 1.4rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.8125rem;
  --lh-heading: 1.2;
  --lh-body: 1.65;

  /* Spacing */
  --section-padding: clamp(1.75rem, 3.5vw, 2.75rem);
  --container-max: 1200px;
  --gap: 1.25rem;

  /* Design Tokens — Bold-Energy */
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --transition: 0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
a, button, input, select, textarea, [role="button"] { touch-action: manipulation; }

/* Skip Link */
.skip-link {
  position: absolute; top: -100%; left: 0;
  background: var(--color-primary); color: #fff;
  padding: 0.75rem 1.5rem; z-index: 9999;
  font-weight: 700;
}
.skip-link:focus { top: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: var(--section-padding) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-bg-dark); color: var(--color-text-on-dark); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-white); }
.section--dark .muted { color: #bbb; }
.section--dark a { color: var(--color-accent); }
.section--dark a:hover { color: var(--color-white); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.pt-0 { padding-top: 0 !important; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: var(--lh-heading);
  color: var(--color-secondary);
}
h1 { font-size: var(--fs-h1); margin-bottom: 0.75rem; }
h2 { font-size: var(--fs-h2); margin-bottom: 0.5rem; }
h3 { font-size: var(--fs-h3); margin-bottom: 0.375rem; }
p { margin-bottom: 0.75rem; }
.lead { font-size: 1.125rem; color: var(--color-text-light); line-height: 1.7; }
.muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}
.section-header { max-width: 680px; margin-bottom: 1.25rem; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 700;
  font-size: var(--fs-body);
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  min-height: 48px;
  text-align: center;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
}
.btn--white:hover { background: #f0f0f0; color: var(--color-primary-dark); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: var(--fs-small); }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn--full { width: 100%; }
.btn-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
}
.header__logo img { height: 72px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 0.25rem; }
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}
.header__nav-link {
  padding: 0.5rem 0.875rem;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.header__nav-link:hover,
.header__nav-link.active {
  background: var(--color-primary-light);
  color: var(--color-primary);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}
.header__phone {
  font-weight: 700;
  color: var(--color-text);
  font-size: var(--fs-small);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-height: 48px;
}
.header__phone:hover { color: var(--color-primary); }
.header__phone svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.open { display: flex; }
.mobile-nav__list { margin-bottom: 1.5rem; }
.mobile-nav__link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border-light);
}
.mobile-nav__link:hover { color: var(--color-primary); }
.mobile-nav__cta { margin-bottom: 0.75rem; }
.mobile-nav__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.125rem;
  margin-top: 0.5rem;
}
.mobile-nav__phone svg { width: 20px; height: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { font-size: var(--fs-hero); color: var(--color-white); max-width: 720px; }
.hero .lead { color: #ccc; max-width: 600px; margin-bottom: 1rem; }
.hero--inner { padding: clamp(1.5rem, 3vw, 2.25rem) 0; }
.hero--inner h1 { font-size: var(--fs-h1); }

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .stat-value { font-size: 2rem; font-weight: 800; color: var(--color-accent); }
.hero-stat .stat-label { font-size: var(--fs-xs); color: #aaa; text-transform: uppercase; letter-spacing: 0.08em; }

/* Breadcrumbs */
.breadcrumbs {
  font-size: var(--fs-xs);
  color: #999;
  margin-bottom: 0.75rem;
}
.breadcrumbs a { color: #ccc; }
.breadcrumbs a:hover { color: var(--color-accent); }
.breadcrumbs .current { color: var(--color-white); }
.breadcrumbs span { margin: 0 0.25rem; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 0;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  font-weight: 600;
  white-space: nowrap;
}
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body { padding: 1.25rem; }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p { color: var(--color-text-light); font-size: var(--fs-small); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--color-primary);
  margin-top: 0.5rem;
}
.card-link:hover { gap: 0.5rem; }

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   SERVICE DETAIL SECTIONS
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-detail__img img {
  width: 100%;
  height: auto;
  display: block;
}
.service-detail__content h2 { margin-bottom: 0.75rem; }
.service-detail__content ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}
.service-detail__content li {
  padding: 0.375rem 0 0.375rem 1.5rem;
  position: relative;
  color: var(--color-text-light);
}
.service-detail__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
}
.process-step h3 { font-size: var(--fs-small); margin-bottom: 0.5rem; }
.process-step p { font-size: var(--fs-small); color: var(--color-text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.testimonial-card__stars {
  color: #f59e0b;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.testimonial-card__text {
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.testimonial-card__author {
  font-weight: 700;
  font-size: var(--fs-small);
}
.testimonial-card__meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.125rem 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  min-height: 48px;
}
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__answer {
  display: none;
  padding: 0 0 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}
.faq-item__answer.open { display: block; }
.faq-item__answer p { margin-bottom: 0.5rem; }
.faq-item__answer ul { list-style: disc; padding-left: 1.25rem; margin: 0.5rem 0; }
.faq-item__answer li { padding: 0.25rem 0; color: var(--color-text-light); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--color-primary);
  color: var(--color-white);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
  text-align: center;
}
.cta-section h2 { color: var(--color-white); margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 1.5rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: var(--fs-small);
  margin-bottom: 0.375rem;
  color: var(--color-text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--fs-body);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 48px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0,66,169,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}
.sms-consent {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.sms-consent a {
  color: var(--color-primary);
  text-decoration: underline;
}

.thanks-msg {
  text-align: center;
  padding: 2.5rem;
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
}
.thanks-msg h2 { margin-bottom: 0.5rem; color: var(--color-primary); }

/* ============================================================
   CONTACT INFO BLOCK
   ============================================================ */
.contact-block { margin-bottom: 1.5rem; }
.contact-block h3 { margin-bottom: 1rem; }
.contact-block__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--color-border-light);
}
.contact-block__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}
.contact-block__item strong {
  display: block;
  font-size: var(--fs-small);
  margin-bottom: 0.125rem;
}

/* ============================================================
   IMAGE PLACEHOLDER SYSTEM
   ============================================================ */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  font-weight: 600;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.img-real {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.img-real.loaded { opacity: 1; }

/* ============================================================
   MAP
   ============================================================ */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition);
}
.gallery-grid img:hover { transform: scale(1.02); }

/* ============================================================
   ARTICLE / BLOG CONTENT
   ============================================================ */
.article-content { max-width: 760px; }
.article-content h2 { margin-top: 2rem; margin-bottom: 0.75rem; }
.article-content h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.article-content ul, .article-content ol {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.article-content ol { list-style: decimal; }
.article-content li { padding: 0.25rem 0; color: var(--color-text-light); }
.article-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
}
.article-content th, .article-content td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  text-align: left;
  font-size: var(--fs-small);
}
.article-content th {
  background: var(--color-bg-alt);
  font-weight: 700;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

/* ============================================================
   STAT CALLOUT
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  text-align: center;
}
.stat-item {}
.stat-item__value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-item__label {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: clamp(1.75rem, 3.5vw, 2.5rem) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer__brand p { color: #aaa; font-size: var(--fs-small); margin-top: 0.5rem; line-height: 1.7; }
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  color: #aaa;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.footer__social a:hover { color: var(--color-white); border-color: var(--color-primary); background: var(--color-primary); }
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }
.footer h4 { color: var(--color-white); font-size: var(--fs-small); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 0.5rem; }
.footer li a { color: #aaa; font-size: var(--fs-small); }
.footer li a:hover { color: var(--color-white); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
  font-size: var(--fs-small);
  color: #aaa;
}
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; fill: none; stroke: currentColor; stroke-width: 2; }
.footer__contact-item a { color: #aaa; }
.footer__contact-item a:hover { color: var(--color-white); }
.footer__contact-item span { color: #777; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: var(--fs-xs);
  color: #777;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__legal { display: flex; gap: 1.25rem; }
.footer__legal a { color: #777; }
.footer__legal a:hover { color: var(--color-white); }
.footer__credit {
  text-align: center;
  padding: 0.75rem 0;
  font-size: var(--fs-xs);
  color: #555;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__credit a { color: #777; }
.footer__credit a:hover { color: var(--color-accent); }
.footer-logo { height: auto; width: 200px; margin-bottom: 0.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .header__nav-list { display: none; }
  .header__actions .btn--primary { display: none; }
  .hamburger { display: flex; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .hero h1 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .hero-stats { gap: 1.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid--4 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-bar .container { gap: 1rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .header, .footer, .mobile-nav, .cta-section { display: none; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}
