/* ==========================================================================
   Better Turf & Snow — Bold Energy Design System
   Brand: Vibrant green turf + commercial snow — high-energy, confident
   Colors: #00700B (green), #000119 (near-black), #88E4FF (ice blue accent)
   Fonts: Poppins (headings) + Montserrat (body)
   ========================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand Colors */
  --color-primary: #00700B;
  --color-primary-light: #009e10;
  --color-primary-dark: #005208;
  --color-secondary: #000119;
  --color-accent: #88E4FF;
  --color-accent-dark: #5bc8e8;
  --color-accent-muted: rgba(136, 228, 255, 0.12);

  /* Neutral Palette */
  --color-black: #000119;
  --color-dark: #050520;
  --color-charcoal: #0f1030;
  --color-graphite: #1a1b40;
  --color-slate: #2d2e50;
  --color-muted: #7a7b95;
  --color-soft: #b0b1c5;
  --color-light: #e0e1ea;
  --color-off-white: #f2f3f7;
  --color-cream: #f8f9fb;
  --color-white: #ffffff;

  /* Semantic Colors */
  --color-bg: #ffffff;
  --color-bg-alt: #f2f3f7;
  --color-bg-dark: #000119;
  --color-bg-dark-alt: #050520;
  --color-bg-card: #ffffff;
  --color-text: #1a1b40;
  --color-text-muted: #7a7b95;
  --color-text-heading: #000119;
  --color-text-on-dark: #f2f3f7;
  --color-text-on-dark-muted: #b0b1c5;
  --color-border: #e0e1ea;
  --color-border-dark: rgba(136, 228, 255, 0.2);
  --color-success: #00700B;
  --color-error: #dc3545;
  --color-overlay: rgba(0, 1, 25, 0.7);

  /* Typography */
  --font-heading: 'Poppins', 'Helvetica Neue', sans-serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --fs-display: clamp(2.6rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.1rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.4rem);
  --fs-h4: 1.05rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  --lh-heading: 1.2;
  --lh-body: 1.7;
  --ls-wide: 0.08em;
  --ls-wider: 0.15em;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-section: clamp(3rem, 6vw, 5rem);
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;

  /* Effects — bold-energy: minimal radius, high contrast */
  --radius: 4px;
  --radius-sm: 2px;
  --radius-lg: 8px;
  --shadow: 0 2px 12px rgba(0, 1, 25, 0.08);
  --shadow-elevated: 0 8px 32px rgba(0, 1, 25, 0.12);
  --shadow-card: 0 4px 20px rgba(0, 1, 25, 0.06);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  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-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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-light); }
a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  font-weight: 700;
  font-size: var(--fs-small);
  border-radius: var(--radius);
}
.skip-link:focus { top: 0; color: var(--color-white); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  line-height: var(--lh-heading);
  font-weight: 700;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); margin-bottom: var(--spacing-md); }
h3 { font-size: var(--fs-h3); margin-bottom: var(--spacing-sm); }
h4 { font-size: var(--fs-h4); margin-bottom: var(--spacing-xs); }

p { margin-bottom: var(--spacing-sm); }
.muted { color: var(--color-text-muted); }
.lead { font-size: 1.15rem; line-height: 1.6; color: var(--color-text-muted); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

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

.container--narrow { max-width: var(--max-width-narrow); }
.container--wide { max-width: var(--max-width-wide); }

section {
  padding: var(--spacing-section) 0;
}

.bg-white { background-color: var(--color-bg); }
.bg-alt { background-color: var(--color-bg-alt); }
.bg-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--color-white); }
.bg-dark .section-label { color: var(--color-accent); }
.bg-dark .muted, .bg-dark p { color: var(--color-text-on-dark-muted); }
.bg-dark a { color: var(--color-accent); }
.bg-dark a:hover { color: var(--color-accent-dark); }

.bg-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.bg-primary h2, .bg-primary h3, .bg-primary h4 { color: var(--color-white); }
.bg-primary .section-label { color: var(--color-accent); }
.bg-primary p { color: rgba(255, 255, 255, 0.9); }

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ---------- GRID ---------- */
.grid { display: grid; gap: var(--spacing-lg); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 112, 11, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-secondary);
  border-color: var(--color-accent);
}
.btn--accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-secondary);
  transform: translateY(-2px);
}

.btn--sm { padding: 0.6rem 1.25rem; font-size: var(--fs-xs); }
.btn--lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn--full { width: 100%; }

.btn-group {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg-dark);
  border-bottom: 1px solid rgba(136, 228, 255, 0.1);
  padding: 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
}

.header__logo img {
  height: 80px;
  width: auto;
  padding: 5px 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav a {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text-on-dark);
  padding: 0.5rem 1rem;
  transition: color var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--color-primary-light);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__phone {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--color-accent) !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header__phone svg { width: 16px; height: 16px; }
.header__phone:hover { color: var(--color-accent-dark) !important; }

.header__cta {
  display: inline-flex;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 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); }

@media (max-width: 992px) {
  .hamburger { display: flex; }

  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .header__nav.open { transform: translateX(0); }

  .header__nav a {
    font-size: 1.1rem;
    padding: 1rem;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(136, 228, 255, 0.1);
  }

  .header__cta { display: none; }
}

@media (max-width: 480px) {
  .header__phone span.phone-text { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: var(--spacing-section) 0;
  background: var(--color-bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,1,25,0.85) 0%, rgba(0,1,25,0.5) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: var(--fs-display);
  color: var(--color-white);
  max-width: 700px;
  margin-bottom: var(--spacing-md);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.hero .section-label { color: var(--color-accent); }
.hero .breadcrumbs { margin-bottom: var(--spacing-md); }
.hero .breadcrumbs a { color: rgba(255,255,255,0.7); }
.hero .breadcrumbs a:hover { color: var(--color-white); }
.hero .breadcrumbs .current { color: var(--color-accent); }
.hero .breadcrumbs span { color: rgba(255,255,255,0.4); }

/* Inner hero (service/area pages) */
.hero--inner {
  min-height: 340px;
  padding: var(--spacing-xl) 0;
}

.hero--inner::after {
  background: linear-gradient(135deg, rgba(0,1,25,0.88) 0%, rgba(0,1,25,0.6) 100%);
}

.hero--inner h1 {
  font-size: var(--fs-h1);
}

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
  font-size: var(--fs-small);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { color: var(--color-text-muted); }
.breadcrumbs .current {
  color: var(--color-text);
  font-weight: 600;
}

/* Dark bg breadcrumbs */
.hero .breadcrumbs a { color: rgba(255, 255, 255, 0.7); }
.hero .breadcrumbs a:hover { color: var(--color-white); }
.hero .breadcrumbs .current { color: var(--color-accent); }

/* ---------- CARDS ---------- */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--color-primary);
}

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.card:hover .card-img img { transform: scale(1.05); }

.card-body {
  padding: var(--spacing-md);
}

.card-body h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--spacing-xs);
}

.card-body h3 a {
  color: var(--color-text-heading);
  text-decoration: none;
}
.card-body h3 a:hover { color: var(--color-primary); }

.card-body p {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

/* Card on dark backgrounds */
.bg-dark .card {
  background: var(--color-bg-dark-alt);
  border-color: rgba(136, 228, 255, 0.15);
}
.bg-dark .card:hover { border-color: var(--color-primary); }
.bg-dark .card-body h3, .bg-dark .card-body h3 a { color: var(--color-white); }
.bg-dark .card-body p { color: var(--color-text-on-dark-muted); }

/* Icon cards */
.card--icon {
  text-align: center;
  padding: var(--spacing-lg);
}
.card--icon .card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 112, 11, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
}
.card--icon .card__icon svg { width: 28px; height: 28px; }
.bg-dark .card--icon .card__icon {
  background: rgba(136, 228, 255, 0.1);
  color: var(--color-accent);
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--color-primary);
  padding: var(--spacing-md) 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-sm);
  text-align: center;
}

.trust-bar__item {
  color: var(--color-white);
}

.trust-bar__number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.trust-bar__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
}

/* ---------- STATS SECTION ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  line-height: 1.2;
}

.bg-dark .stat-item .stat-number { color: var(--color-accent); }

.stat-item .stat-label {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-top: 0.25rem;
}

.bg-dark .stat-item .stat-label { color: var(--color-text-on-dark-muted); }

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

/* ---------- FEATURES / WHY CHOOSE US ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.feature-item {
  text-align: center;
  padding: var(--spacing-lg);
}

.feature-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 112, 11, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
}
.feature-item__icon svg { width: 32px; height: 32px; }

.bg-dark .feature-item__icon {
  background: rgba(136, 228, 255, 0.1);
  color: var(--color-accent);
}

.feature-item h3 { font-size: var(--fs-h4); }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ---------- SERVICE DETAIL (2-col layout) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  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: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.service-detail__content h3 { margin-bottom: var(--spacing-sm); }

@media (max-width: 768px) {
  .service-detail,
  .service-detail--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ---------- CHECKLIST ---------- */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  position: relative;
}

.testimonial-card__stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
  line-height: 1.7;
}

.testimonial-card__author {
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  font-size: var(--fs-small);
}

.testimonial-card__date {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.bg-dark .testimonial-card {
  background: var(--color-bg-dark-alt);
  border-color: rgba(136, 228, 255, 0.15);
}
.bg-dark .testimonial-card__text { color: var(--color-text-on-dark); }
.bg-dark .testimonial-card__author { color: var(--color-white); }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-text-heading);
  line-height: 1.4;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--color-primary); }

.faq-item__icon {
  font-size: 1.4rem;
  font-weight: 300;
  min-width: 24px;
  text-align: center;
  transition: transform var(--transition);
  color: var(--color-primary);
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item__answer.open {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

.faq-item__answer p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.bg-dark .faq-item { border-color: rgba(136, 228, 255, 0.15); }
.bg-dark .faq-item__question { color: var(--color-white); }
.bg-dark .faq-item__icon { color: var(--color-accent); }
.bg-dark .faq-item__answer p { color: var(--color-text-on-dark-muted); }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: var(--spacing-md); }

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text-heading);
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 112, 11, 0.15);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: var(--color-bg-dark);
  padding: var(--spacing-section) 0;
  text-align: center;
}

.cta-section h2 { color: var(--color-white); }
.cta-section p { color: var(--color-text-on-dark-muted); max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-section .section-label { color: var(--color-accent); }

/* ---------- AREA GRID ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-sm);
}

.area-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--color-text-heading);
  text-decoration: none;
  transition: all var(--transition);
}
.area-card:hover {
  border-color: var(--color-primary);
  background: rgba(0, 112, 11, 0.05);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.area-card svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.bg-dark .area-card {
  background: var(--color-bg-dark-alt);
  border-color: rgba(136, 228, 255, 0.15);
  color: var(--color-text-on-dark);
}
.bg-dark .area-card:hover {
  border-color: var(--color-primary);
  background: rgba(0, 112, 11, 0.15);
  color: var(--color-primary-light);
}
.bg-dark .area-card svg { color: var(--color-accent); }

@media (max-width: 992px) {
  .area-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- PROCESS STEPS ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  counter-reset: process;
}

.process-step {
  text-align: center;
  counter-increment: process;
}

.process-step__number {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
}

.bg-dark .process-step__number {
  background: var(--color-accent);
  color: var(--color-secondary);
}

@media (max-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- CONTENT SECTIONS ---------- */
.content-section {
  padding: var(--spacing-section) 0;
}

.content-section .container--narrow p {
  margin-bottom: var(--spacing-md);
}

/* Two-column content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: start;
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ---------- BLOG CARDS ---------- */
.blog-card { display: flex; flex-direction: column; }
.blog-card .card-body { flex: 1; display: flex; flex-direction: column; }
.blog-card .card-body p { flex: 1; }

.blog-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xs);
  display: flex;
  gap: 1rem;
  align-items: center;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---------- IMAGE PLACEHOLDER SYSTEM ---------- */
.img-placeholder {
  background: linear-gradient(135deg, rgba(0,112,11,0.08) 0%, rgba(136,228,255,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
}
.img-placeholder span {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.img-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.img-real.loaded { opacity: 1; }

/* ---------- TABLE ---------- */
.content-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--spacing-md) 0;
  font-size: var(--fs-small);
}

.content-table th,
.content-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.content-table th {
  background: var(--color-bg-alt);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-heading);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.content-table tr:hover { background: rgba(0, 112, 11, 0.03); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: var(--spacing-section) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.footer__brand img {
  height: 55px;
  width: auto;
  margin-bottom: var(--spacing-sm);
}

.footer__brand p {
  color: var(--color-text-on-dark-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(136, 228, 255, 0.1);
  color: var(--color-accent);
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.footer__social a svg { width: 18px; height: 18px; }

.footer h4 {
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li { margin-bottom: 0.5rem; }

.footer ul a {
  color: var(--color-text-on-dark-muted);
  font-size: var(--fs-small);
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--color-primary-light); }

.footer__contact p {
  color: var(--color-text-on-dark-muted);
  font-size: var(--fs-small);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer__contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

.footer__contact a {
  color: var(--color-text-on-dark-muted);
}
.footer__contact a:hover { color: var(--color-primary-light); }

.footer__bottom {
  border-top: 1px solid rgba(136, 228, 255, 0.1);
  padding: var(--spacing-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.footer__bottom p {
  font-size: var(--fs-xs);
  color: var(--color-text-on-dark-muted);
  margin: 0;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: var(--fs-xs);
  color: var(--color-text-on-dark-muted);
}
.footer__legal a:hover { color: var(--color-primary-light); }

@media (max-width: 992px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ---------- 404 PAGE ---------- */
.error-page {
  text-align: center;
  padding: var(--spacing-section) 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.error-page h1 {
  font-size: 5rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

/* ---------- LEGAL PAGES ---------- */
.legal-content { padding: var(--spacing-section) 0; }
.legal-content h1 { margin-bottom: var(--spacing-lg); }
.legal-content h2 { margin-top: var(--spacing-xl); font-size: var(--fs-h3); }
.legal-content p, .legal-content li { font-size: var(--fs-small); line-height: 1.8; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: var(--spacing-md); }

/* ---------- THANKS MESSAGE ---------- */
.thanks-msg {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
}
.thanks-msg h2 { color: var(--color-primary); }

/* ---------- TWO-COL VARIANTS ---------- */
.two-col__content { }
.two-col__media { }
.two-col__media img {
  width: 100%;
  border-radius: var(--radius-lg);
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .two-col--reverse { direction: ltr; }
}

/* ---------- CONTACT PAGE ---------- */
.contact-sidebar { }

.contact-info-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}
.contact-info-card h3 {
  margin-bottom: var(--spacing-md);
}
.contact-info-card hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--spacing-md) 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--spacing-sm);
}
.contact-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary);
}
.contact-info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text-heading);
}
.contact-info-item a { color: var(--color-primary); }
.contact-info-item span { font-size: var(--fs-small); color: var(--color-text-muted); }

.contact-areas-list {
  list-style: none;
  padding: 0;
  columns: 2;
  gap: 0.25rem;
}
.contact-areas-list li {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  padding: 0.15rem 0;
}

.required { color: var(--color-error); }

/* ---------- MAP PLACEHOLDER ---------- */
.map-placeholder {
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  text-align: center;
}

/* ---------- PROCESS STEPS ALIAS ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  counter-reset: process;
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- PRINT STYLES ---------- */
@media print {
  .header, .footer, .hamburger, .btn, .cta-section { display: none !important; }
  body { color: #000; background: #fff; }
  section { padding: 1rem 0; }
}
