/* ============================================
   Midwest Garden Maintenance — Master Stylesheet
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --green-900: #1a3a1a;
  --green-800: #224422;
  --green-700: #2D5F2D;
  --green-600: #3A7A3A;
  --green-500: #4A944A;
  --green-400: #6DB56D;
  --green-300: #8FCC8F;
  --green-200: #B5DDB5;
  --green-100: #D6EED6;
  --green-50:  #EDF7ED;

  --gold-700: #A07D2C;
  --gold-600: #B8912F;
  --gold-500: #D4A843;
  --gold-400: #E0BE6A;
  --gold-300: #EBCF8B;
  --gold-200: #F2DFB0;
  --gold-100: #F8EDD3;
  --gold-50:  #FDF8EE;

  --neutral-900: #1a1a1a;
  --neutral-800: #2d2d2d;
  --neutral-700: #404040;
  --neutral-600: #555555;
  --neutral-500: #717171;
  --neutral-400: #8f8f8f;
  --neutral-300: #b0b0b0;
  --neutral-200: #d4d4d4;
  --neutral-100: #e8e8e8;
  --neutral-50:  #f5f5f4;

  --white: #ffffff;
  --warm-white: #fafaf8;
  --warm-grey: #f3f2ef;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.04);

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 500ms;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --header-height: 72px;
}

/* --- 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: 16px;
  line-height: 1.6;
  color: var(--neutral-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--neutral-900);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.text-green { color: var(--green-700); }
.text-gold { color: var(--gold-500); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  transition: all var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--gold-500);
  color: var(--neutral-900);
}
.btn--primary:hover {
  background-color: var(--gold-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: var(--green-700);
  color: var(--white);
}
.btn--secondary:hover {
  background-color: var(--green-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-700);
}
.btn--outline:hover {
  background-color: var(--green-700);
  color: var(--white);
}

.btn--white {
  background-color: var(--white);
  color: var(--green-700);
}
.btn--white:hover {
  background-color: var(--green-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn i {
  font-size: 0.9em;
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--duration-normal) var(--ease-out);
  height: var(--header-height);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo svg {
  width: 40px;
  height: 40px;
}

.header__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-700);
  line-height: 1.15;
}
.header__logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--neutral-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__nav-links {
  display: flex;
  gap: var(--space-6);
}

.header__nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-700);
  transition: color var(--duration-fast);
  position: relative;
}
.header__nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-700);
  border-radius: 1px;
  transition: width var(--duration-fast) var(--ease-out);
}
.header__nav-links a:hover,
.header__nav-links a.active {
  color: var(--green-700);
}
.header__nav-links a:hover::after,
.header__nav-links a.active::after {
  width: 100%;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-700);
}
.header__phone i {
  font-size: 0.85rem;
}

.header__menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--neutral-800);
  font-size: 1.4rem;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: var(--space-8) var(--space-5);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav a {
  display: block;
  padding: var(--space-4) 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-800);
  border-bottom: 1px solid var(--neutral-100);
  transition: color var(--duration-fast);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--green-700);
}
.mobile-nav__contact {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
}
.mobile-nav__contact a {
  border-bottom: none;
  color: var(--green-700);
  font-size: 1rem;
}
.mobile-nav__contact .btn {
  margin-top: var(--space-4);
  width: 100%;
  justify-content: center;
}

/* --- Hero Sections --- */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 10vw, 120px);
  overflow: hidden;
}

.hero--home {
  background: linear-gradient(165deg, var(--green-900) 0%, var(--green-700) 50%, var(--green-600) 100%);
  color: var(--white);
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero--home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero--home .hero__content {
  position: relative;
  z-index: 1;
}

.hero--page {
  background: linear-gradient(165deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--white);
  text-align: center;
  padding: clamp(100px, 12vw, 140px) 0 clamp(50px, 6vw, 70px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  backdrop-filter: blur(4px);
}

.hero__title {
  color: var(--white);
  margin-bottom: var(--space-6);
  max-width: 700px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  opacity: 0.9;
  max-width: 560px;
  margin-bottom: var(--space-8);
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.85;
}
.hero__trust-item i {
  color: var(--gold-400);
  font-size: 1rem;
}

/* --- Sections --- */
.section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.section--grey {
  background-color: var(--warm-grey);
}

.section--green {
  background: linear-gradient(165deg, var(--green-800) 0%, var(--green-700) 100%);
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}

.section__header .overline {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: var(--space-3);
}
.section--green .section__header .overline {
  color: var(--gold-400);
}

.section__header p {
  color: var(--neutral-500);
  font-size: 1rem;
  margin-top: var(--space-3);
}
.section--green .section__header p {
  color: rgba(255,255,255,0.75);
}
.section--green .section__header h2 {
  color: var(--white);
}

/* --- Service Cards (Home) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
  border: 1px solid var(--neutral-100);
  text-decoration: none;
  display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 1.3rem;
  transition: background var(--duration-fast), color var(--duration-fast);
}
.service-card:hover .service-card__icon {
  background: var(--green-700);
  color: var(--white);
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-2);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.5;
}

/* --- Why Choose Us --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.feature-item {
  text-align: center;
}

.feature-item__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 1.4rem;
}

.feature-item h3 {
  margin-bottom: var(--space-2);
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--neutral-500);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--neutral-100);
}

.testimonial-card__stars {
  color: var(--gold-500);
  font-size: 0.9rem;
  margin-bottom: var(--space-4);
  display: flex;
  gap: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--neutral-600);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: var(--space-5);
}

.testimonial-card__author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--neutral-800);
}
.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--neutral-400);
  margin-top: 2px;
}

/* --- CTA Band --- */
.cta-band {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
  color: var(--white);
  padding: clamp(50px, 6vw, 80px) 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: var(--space-3);
}
.cta-band p {
  opacity: 0.85;
  font-size: 1.05rem;
  margin-bottom: var(--space-8);
}
.cta-band__btns {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: clamp(50px, 6vw, 80px) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}

.footer__brand {
  max-width: 320px;
}
.footer__brand .header__logo {
  margin-bottom: var(--space-5);
}
.footer__brand .header__logo-text {
  color: var(--white);
}
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--neutral-400);
}
.footer__brand .footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.footer__brand .footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--neutral-300);
  transition: background var(--duration-fast), color var(--duration-fast);
}
.footer__brand .footer__social a:hover {
  background: var(--green-700);
  color: var(--white);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-5);
}

.footer__col ul li {
  margin-bottom: var(--space-3);
}
.footer__col ul li a {
  font-size: 0.9rem;
  color: var(--neutral-400);
  transition: color var(--duration-fast);
}
.footer__col ul li a:hover {
  color: var(--green-400);
}
.footer__col ul li i {
  width: 20px;
  color: var(--green-500);
  margin-right: var(--space-2);
  font-size: 0.85rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-6) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--neutral-500);
}

/* --- Services Page --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--neutral-100);
}
.service-detail:last-child {
  border-bottom: none;
}
.service-detail:nth-child(even) {
  direction: rtl;
}
.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail__visual {
  background: var(--green-50);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.service-detail__visual i {
  font-size: 4rem;
  color: var(--green-700);
}

.service-detail__content h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin-bottom: var(--space-4);
}
.service-detail__content p {
  color: var(--neutral-600);
  font-size: 0.95rem;
  line-height: 1.7;
}
.service-detail__price {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding: 10px 18px;
  background: var(--gold-50);
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-700);
}
.service-detail__price i {
  font-size: 0.85rem;
}

/* Firewood special */
.firewood-section {
  background: linear-gradient(135deg, var(--gold-50), var(--warm-grey));
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  margin-top: var(--space-12);
  border: 1px solid var(--gold-200);
}
.firewood-section h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  margin-bottom: var(--space-4);
}
.firewood-section p {
  color: var(--neutral-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- About Page --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-intro__visual {
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.about-intro__visual svg {
  width: 160px;
  height: 160px;
}

.about-intro__content h2 {
  margin-bottom: var(--space-5);
}
.about-intro__content p {
  color: var(--neutral-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.value-card {
  text-align: center;
  padding: var(--space-8) var(--space-5);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-100);
}
.value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 1.2rem;
}
.value-card h3 {
  font-size: 1rem;
  margin-bottom: var(--space-2);
}
.value-card p {
  font-size: 0.875rem;
  color: var(--neutral-500);
}

.service-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}
.service-areas-list .area-tag {
  padding: 8px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* --- Gallery Page --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--warm-grey);
  border: 1px solid var(--neutral-100);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-card__img {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  color: var(--green-400);
  font-size: 2.5rem;
}

.gallery-card__content {
  padding: var(--space-5);
}
.gallery-card__content h3 {
  font-size: 0.95rem;
  margin-bottom: var(--space-2);
}
.gallery-card__content p {
  font-size: 0.85rem;
  color: var(--neutral-500);
}
.gallery-card__tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: var(--space-3);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  border: 1px solid var(--neutral-100);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--neutral-800);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
  font-size: 0.95rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(45,95,45,0.12);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info__item {
  display: flex;
  gap: var(--space-4);
}
.contact-info__item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info__item h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.contact-info__item p {
  font-size: 0.9rem;
  color: var(--neutral-500);
}
.contact-info__item a {
  color: var(--green-700);
  font-weight: 500;
  transition: color var(--duration-fast);
}
.contact-info__item a:hover {
  color: var(--green-500);
}

.hours-grid {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: var(--green-50);
  border-radius: var(--radius-md);
}
.hours-grid h4 {
  margin-bottom: var(--space-4);
}
.hours-grid__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-2) 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--green-100);
}
.hours-grid__row:last-child {
  border-bottom: none;
}
.hours-grid__row span:first-child {
  font-weight: 500;
  color: var(--neutral-700);
}
.hours-grid__row span:last-child {
  color: var(--neutral-500);
}

/* --- WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .header__nav-links,
  .header__phone {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  .hero--home {
    min-height: 70vh;
    padding: 100px 0 60px;
  }

  .hero__trust {
    flex-direction: column;
    gap: var(--space-4);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .service-card {
    padding: var(--space-6) var(--space-5);
    display: flex;
    align-items: center;
    text-align: left;
    gap: var(--space-4);
  }
  .service-card__icon {
    margin: 0;
    flex-shrink: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .feature-item {
    display: flex;
    text-align: left;
    gap: var(--space-4);
    align-items: flex-start;
  }
  .feature-item__icon {
    margin: 0;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .service-detail:nth-child(even) {
    direction: ltr;
  }
  .service-detail__visual {
    min-height: 180px;
    padding: var(--space-8);
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .about-intro__visual {
    min-height: 220px;
    order: -1;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: var(--space-6);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }

  .cta-band__btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* Hero background images */
.hero--home {
  background: linear-gradient(165deg, rgba(30,62,30,0.82) 0%, rgba(45,95,45,0.72) 50%, rgba(35,75,35,0.78) 100%), url('images/hero-home.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}

.hero--page {
  background: linear-gradient(165deg, rgba(30,62,30,0.85) 0%, rgba(45,95,45,0.78) 100%), url('images/hero-services.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}

.cta-band {
  background: linear-gradient(135deg, rgba(30,62,30,0.85) 0%, rgba(45,95,45,0.78) 100%), url('images/hero-cta.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
}

/* Footer with subtle image */
.footer {
  background: linear-gradient(180deg, rgba(20,42,20,0.95) 0%, rgba(25,50,25,0.98) 100%), url('images/hero-home.jpg') !important;
  background-size: cover !important;
  background-position: bottom center !important;
}
