/* ========================================
   Field of Dreams Lawn Care Inc.
   Design System — warm-trustworthy vibe
   Primary: #2E7D32 (forest green)
   Secondary: #F9A825 (warm amber)
   Font: Nunito (friendly, rounded)
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #2E7D32;
  --color-primary-dark: #1B5E20;
  --color-primary-light: #4CAF50;
  --color-secondary: #F9A825;
  --color-secondary-dark: #F57F17;
  --color-accent: #81C784;
  --color-bg: #FAFAF7;
  --color-bg-alt: #F1F8E9;
  --color-bg-dark: #1a2e1a;
  --color-text: #2D2D2D;
  --color-text-muted: #6B7280;
  --color-text-light: #ffffff;
  --color-border: #E0E0E0;
  --color-success: #43A047;
  --color-error: #D32F2F;
  --color-warning: #FFA000;
  --font-heading: 'Nunito', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
  --spacing-section: 5rem;
  --spacing-section-sm: 3rem;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  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; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }

/* --- Skip Link --- */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 10000;
  background: var(--color-primary); color: #fff; padding: 12px 24px;
  border-radius: var(--radius-sm); font-weight: 700;
}
.skip-link:focus { top: 16px; }

/* --- Container --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Utility --- */
.text-center { text-align: center; }
.muted { color: var(--color-text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  text-decoration: none; border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition);
  line-height: 1.2;
}
.btn--primary {
  background: var(--color-primary); color: #fff; border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-dark); border-color: var(--color-primary-dark);
  color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-hover);
}
.btn--secondary {
  background: var(--color-secondary); color: var(--color-text); border-color: var(--color-secondary);
}
.btn--secondary:hover {
  background: var(--color-secondary-dark); border-color: var(--color-secondary-dark);
  color: var(--color-text); transform: translateY(-2px); box-shadow: var(--shadow-hover);
}
.btn--outline {
  background: transparent; color: var(--color-primary); border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary); color: #fff; transform: translateY(-2px);
}
.btn--white {
  background: #fff; color: var(--color-primary); border-color: #fff;
}
.btn--white:hover {
  background: var(--color-bg-alt); border-color: var(--color-bg-alt);
  color: var(--color-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-hover);
}
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--full { width: 100%; justify-content: center; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5rem; }

/* --- Header --- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  height: var(--header-height);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.header__logo img { height: 50px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 8px; }
.header__nav a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; color: var(--color-text);
  transition: all var(--transition);
}
.header__nav a:hover,
.header__nav a.active { color: var(--color-primary); background: var(--color-bg-alt); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__phone {
  font-weight: 700; color: var(--color-primary); font-size: 1rem;
  display: flex; align-items: center; gap: 6px;
}
.header__phone:hover { color: var(--color-primary-dark); }
.header__phone svg { width: 18px; height: 18px; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--color-text);
  transition: all var(--transition);
}

/* --- Dropdown --- */
.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-toggle::after {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); margin-left: 6px; vertical-align: middle;
  transition: transform var(--transition);
}
.dropdown-menu {
  position: absolute; top: 100%; left: 0; z-index: 100;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 240px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s ease;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown:hover .dropdown-toggle::after { transform: rotate(-135deg); }
.dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.9rem;
  color: var(--color-text); font-weight: 600;
}
.dropdown-menu a:hover { background: var(--color-bg-alt); color: var(--color-primary); }

/* --- Mobile Nav --- */
.mobile-nav {
  display: none; position: fixed; top: var(--header-height); left: 0; right: 0;
  bottom: 0; z-index: 999; background: #fff; padding: 24px;
  overflow-y: auto; transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 14px 0; font-size: 1.1rem; font-weight: 600;
  color: var(--color-text); border-bottom: 1px solid var(--color-border);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--color-primary); }
.mobile-nav .mobile-dropdown-items { padding-left: 16px; }
.mobile-nav .mobile-dropdown-items a { font-size: 1rem; font-weight: 500; }
.mobile-nav__cta { margin-top: 24px; }

/* --- Hero --- */
.hero {
  position: relative; padding: 6rem 0 5rem; overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2a4a2a 50%, var(--color-primary-dark) 100%);
  color: #fff;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.15rem; max-width: 640px; }
.hero .btn-group { margin-top: 2rem; }
.hero--inner { padding: 3.5rem 0 3rem; }
.hero--inner h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }

/* --- Section Label (eyebrow) --- */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 0.75rem;
  color: var(--color-primary);
}
.hero .section-label { color: var(--color-secondary); }
.section-label::before {
  content: ''; display: inline-block; width: 32px; height: 2px;
  background: currentColor;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 0.85rem; margin-bottom: 1rem;
}
.breadcrumbs a { color: rgba(255,255,255,0.7); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: rgba(255,255,255,0.5); }
.breadcrumbs .current { color: rgba(255,255,255,0.9); }
/* Breadcrumbs on light background (no hero) */
.breadcrumbs--light a { color: var(--color-text-muted); }
.breadcrumbs--light a:hover { color: var(--color-primary); }
.breadcrumbs--light span { color: var(--color-border); }
.breadcrumbs--light .current { color: var(--color-text); }

/* --- Sections --- */
.section { padding: var(--spacing-section) 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-bg-dark); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.85); }
.section__header { max-width: 700px; margin-bottom: 3rem; }
.section__header.text-center { margin-left: auto; margin-right: auto; }
.section__header h2 { margin-bottom: 0.75rem; }
.section__header p { color: var(--color-text-muted); font-size: 1.1rem; }

/* --- Trust Bar --- */
.trust-bar {
  background: #fff; border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}
.trust-bar__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 2rem; }
.trust-bar .container {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2rem;
}
.trust-bar__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 700; color: var(--color-text);
}
.trust-bar__item svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; }

/* --- Cards --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.card-grid--3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card-grid--4 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.card {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); transition: all var(--transition);
  border: 1px solid var(--color-border);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card__icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--color-bg-alt); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem;
}
.card__icon svg { width: 28px; height: 28px; color: var(--color-primary); }
.card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.card p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.card a.card__link {
  font-weight: 700; font-size: 0.9rem; color: var(--color-primary);
  display: inline-flex; align-items: center; gap: 4px;
}
.card a.card__link:hover { gap: 8px; }
.card__title { margin-bottom: 0.75rem; font-size: 1.2rem; }
.card__text { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 1rem; }

/* Card with image */
.card--img { padding: 0; overflow: hidden; }
.card--img .card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.card--img .card-img img { width: 100%; height: 100%; object-fit: cover; }
.card--img .card__body { padding: 1.5rem; }

/* --- Stats --- */
.stats { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
.stat { text-align: center; min-width: 140px; }
.stat__value {
  font-size: 2.5rem; font-weight: 900; color: var(--color-primary);
  line-height: 1;
}
.section--dark .stat__value { color: var(--color-secondary); }
.stat__label { font-size: 0.9rem; font-weight: 600; color: var(--color-text-muted); margin-top: 0.25rem; }
.section--dark .stat__label { color: rgba(255,255,255,0.7); }

/* --- Testimonials --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.testimonial {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); border: 1px solid var(--color-border);
}
.testimonial__stars { color: var(--color-secondary); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial__text { font-style: italic; color: var(--color-text); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.7; }
.testimonial__author { font-weight: 700; font-size: 0.9rem; }
.testimonial__service { color: var(--color-text-muted); font-size: 0.85rem; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; font-family: var(--font-body); font-size: 1.05rem;
  font-weight: 700; color: var(--color-text); text-align: left;
  gap: 16px;
}
.faq-item__question:hover { color: var(--color-primary); }
.faq-item__icon {
  font-size: 1.5rem; font-weight: 300; color: var(--color-primary);
  transition: transform var(--transition); flex-shrink: 0;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
}
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-item__answer-inner { padding: 0 0 1.25rem; }
.faq-item__answer-inner p { color: var(--color-text-muted); font-size: 0.95rem; }
.faq-item__answer-inner a { color: var(--color-primary); font-weight: 600; }

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 4rem 0; text-align: center; color: #fff;
}
.cta-section h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; }

/* --- Footer --- */
.footer { background: var(--color-bg-dark); color: rgba(255,255,255,0.85); padding: 4rem 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 3rem;
}
.footer__brand p { font-size: 0.9rem; margin-top: 1rem; color: rgba(255,255,255,0.65); max-width: 300px; }
.footer__social { display: flex; gap: 12px; margin-top: 1rem; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--color-primary); }
.footer__social svg { width: 16px; height: 16px; fill: #fff; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-weight: 700; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer ul a:hover { color: #fff; }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 8px; margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer__contact-item strong { color: #fff; min-width: 45px; }
.footer__contact-item a { color: rgba(255,255,255,0.65); }
.footer__contact-item a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.footer__bottom a { color: rgba(255,255,255,0.45); }
.footer__bottom a:hover { color: #fff; }
.footer__col { min-width: 0; }
.footer__bottom-inner { display: flex; flex-direction: column; align-items: center; }
.footer__legal { display: flex; justify-content: center; gap: 16px; margin-top: 0.5rem; }

/* --- Forms --- */
.form { max-width: 600px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-weight: 700; font-size: 0.9rem;
  margin-bottom: 0.4rem; color: var(--color-text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 1rem; background: #fff; color: var(--color-text);
  transition: border-color var(--transition);
}
.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(46,125,50,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.thanks-msg { text-align: center; padding: 2rem; }
.thanks-msg h2 { color: var(--color-primary); margin-bottom: 0.5rem; }

/* --- SMS Consent (A2P Compliance) --- */
.sms-consent { margin: 16px 0; }
.sms-consent__label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; line-height: 1.5; color: var(--color-text-muted);
  cursor: pointer; margin-bottom: 12px;
}
.sms-consent__label input[type="checkbox"] {
  margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px;
  cursor: pointer; accent-color: var(--color-primary);
}
.sms-consent__label a { color: var(--color-primary); text-decoration: underline; }

/* --- Image Placeholder System --- */
.card-img, .img-container { position: relative; overflow: hidden; }
.img-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-alt), #e8e8e0);
  color: var(--color-text-muted); font-size: 0.85rem; font-weight: 600;
  text-align: center; padding: 1rem;
  position: absolute; inset: 0; z-index: 0;
}
.img-real {
  opacity: 0; position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.3s ease;
}
.img-real.loaded { opacity: 1; }

/* --- Process Steps --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; counter-reset: step; }
.process-step {
  position: relative; padding: 2rem; background: #fff;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  border: 1px solid var(--color-border); counter-increment: step;
}
.process-step::before {
  content: counter(step); position: absolute; top: -12px; left: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
}
.process-step h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.process-step p { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 0; }

/* --- Tables --- */
.table-responsive { overflow-x: auto; margin: 1.5rem 0; }
table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
thead { background: var(--color-primary); color: #fff; }
th { padding: 14px 16px; text-align: left; font-weight: 700; font-size: 0.9rem; }
td { padding: 14px 16px; border-bottom: 1px solid var(--color-border); font-size: 0.95rem; }
tbody tr:hover { background: var(--color-bg-alt); }

/* --- Two Column Layout --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.two-col__content { min-width: 0; }
.two-col__media { min-width: 0; }
.two-col__media img { width: 100%; height: auto; border-radius: var(--radius-lg); }

/* --- Area Page --- */
.area-highlights { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; margin: 1.5rem 0; }
.area-highlight {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 1rem; background: #fff; border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}
.area-highlight svg { width: 24px; height: 24px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }

/* --- Blog --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.blog-card { overflow: hidden; }
.blog-card__meta { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.blog-card__meta span { margin-right: 12px; }

/* --- Service Features (icon list) --- */
.features-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin: 1.5rem 0; }
.feature-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 1rem;
}
.feature-item svg {
  width: 24px; height: 24px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px;
}
.feature-item h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.feature-item p { margin-bottom: 0; font-size: 0.9rem; color: var(--color-text-muted); }

/* --- Checklist --- */
.checklist { list-style: none; padding: 0; }
.checklist li {
  padding: 8px 0 8px 28px; position: relative; font-size: 0.95rem;
}
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--color-bg-alt); border: 2px solid var(--color-primary);
}
.checklist li::after {
  content: ''; position: absolute; left: 4px; top: 18px;
  width: 10px; height: 5px; border-left: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(-45deg);
}

/* --- Text Logo --- */
.logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
  text-decoration: none; color: var(--color-text);
}
.logo-text__name {
  font-family: var(--font-heading); font-size: 1.35rem; font-weight: 900;
  color: var(--color-primary); letter-spacing: -0.5px;
}
.logo-text__sub {
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--color-text-muted);
}
.footer .logo-text__name { color: #fff; }
.footer .logo-text__sub { color: rgba(255,255,255,0.6); }

/* --- Nav Menu (semantic nav) --- */
.nav-menu { display: flex; align-items: center; }
.nav-list {
  display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0;
}
.nav-link {
  display: block; padding: 8px 14px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem; color: var(--color-text);
  text-decoration: none; transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--color-primary); background: var(--color-bg-alt); }
.has-dropdown { position: relative; }
.has-dropdown > .dropdown {
  position: absolute; top: 100%; left: 0; z-index: 100;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 260px; padding: 8px 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s ease;
}
.has-dropdown:hover > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-dropdown > .dropdown a {
  display: block; padding: 10px 20px; font-size: 0.9rem;
  color: var(--color-text); font-weight: 600; text-decoration: none;
}
.has-dropdown > .dropdown a:hover { background: var(--color-bg-alt); color: var(--color-primary); }

/* --- Nav Toggle (hamburger) --- */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--color-text);
  transition: all var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* --- Outline White Button --- */
.btn--outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: #fff; color: var(--color-primary); border-color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow-hover);
}

/* --- Section Intro --- */
.section-intro {
  font-size: 1.1rem; color: var(--color-text-muted);
  max-width: 700px; margin-bottom: 2.5rem;
}
.text-center .section-intro { margin-left: auto; margin-right: auto; }

/* --- Area Highlights (muted) --- */
.area-highlight--muted {
  background: transparent; color: var(--color-text-muted);
  border: 1px dashed var(--color-border); cursor: default;
}
.area-highlight--muted:hover { transform: none; box-shadow: none; }

/* --- Card Body (for image cards) --- */
.card__body { padding-top: 1rem; }
.card img { border-radius: var(--radius) var(--radius) 0 0; width: 100%; height: 200px; object-fit: cover; }
.card img + .card__body { padding: 1.25rem; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col--reverse { direction: ltr; }
}

@media (max-width: 768px) {
  :root { --spacing-section: 3.5rem; --spacing-section-sm: 2rem; }
  .header__nav, .nav-menu { display: none; }
  .hamburger, .nav-toggle { display: flex; }
  .nav-menu.is-open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--header-height); left: 0; right: 0; bottom: 0;
    background: #fff; padding: 24px; z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.is-open .nav-list { flex-direction: column; width: 100%; gap: 0; }
  .nav-menu.is-open .nav-link {
    padding: 14px 0; font-size: 1.1rem;
    border-bottom: 1px solid var(--color-border); border-radius: 0;
  }
  .nav-menu.is-open .has-dropdown > .dropdown {
    position: static; box-shadow: none; opacity: 1; visibility: visible;
    transform: none; padding-left: 16px; min-width: auto;
  }
  .nav-menu.is-open .has-dropdown.dropdown-open > .dropdown { display: block; }
  .nav-menu.is-open .has-dropdown > .dropdown { display: none; }
  .header__phone span { display: none; }
  .hero { padding: 4rem 0 3rem; }
  .hero--inner { padding: 2.5rem 0 2rem; }
  .card-grid, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats { gap: 1.5rem; }
  .stat__value { font-size: 2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust-bar .container { gap: 1rem; }
  .trust-bar__item { font-size: 0.8rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .area-highlights { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .card { padding: 1.5rem; }
  .section { padding: 3rem 0; }
}

/* --- Print --- */
@media print {
  .header, .footer, .cta-section, .trust-bar, .hamburger, .mobile-nav, .nav-toggle { display: none; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}
