/* ==========================================================================
   Verdant Landscapes — Shared Stylesheet
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   CSS Variables — Design System
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --dark-green: #1a2e1f;
  --light-bg: #f5f5f0;
  --white: #ffffff;
  --text-primary: #0d0d0d;
  --text-secondary: #555550;
  --accent: #6dde4a;
  --accent-dark: #1a2e1f;
  --border: #e8e8e3;

  /* Dark-section pattern accent */
  --pattern-line: #2a4030;

  /* Typography */
  --font-family: 'Raleway', sans-serif;

  --font-eyebrow-size: 13px;
  --font-eyebrow-weight: 400;
  --font-eyebrow-spacing: 0.05em;
  --font-eyebrow-color: var(--text-secondary);

  --font-h1-size: clamp(2.5rem, 5vw, 4rem);
  --font-h1-weight: 800;
  --font-h1-line-height: 1.1;

  --font-h2-size: clamp(1.8rem, 3vw, 2.8rem);
  --font-h2-weight: 700;
  --font-h2-line-height: 1.2;

  --font-body-size: 1rem;
  --font-body-weight: 400;
  --font-body-line-height: 1.6;
  --font-body-color: var(--text-secondary);

  /* Layout */
  --container-max-width: 1200px;
  --container-padding: 24px;
  --section-padding: 96px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

/* --------------------------------------------------------------------------
   Base Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
  line-height: var(--font-body-line-height);
  color: var(--text-primary);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   Layout Helpers
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max-width);
  padding: 0 var(--container-padding);
  margin: 0 auto;
}

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

.section--light {
  background-color: var(--light-bg);
}

/* --------------------------------------------------------------------------
   Typography Components
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  color: var(--text-primary);
  font-family: var(--font-family);
}

.eyebrow {
  display: block;
  font-size: var(--font-eyebrow-size);
  font-weight: var(--font-eyebrow-weight);
  letter-spacing: var(--font-eyebrow-spacing);
  color: var(--font-eyebrow-color);
  margin-bottom: 12px;
  text-transform: lowercase;
}

.section-heading {
  font-size: var(--font-h2-size);
  font-weight: var(--font-h2-weight);
  line-height: var(--font-h2-line-height);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.hero-heading {
  font-size: var(--font-h1-size);
  font-weight: var(--font-h1-weight);
  line-height: var(--font-h1-line-height);
  color: var(--text-primary);
}

.body-text {
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
  line-height: var(--font-body-line-height);
  color: var(--font-body-color);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-dark);
  border: none;
}

.btn-primary:hover {
  transform: scale(1.02);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  transform: scale(1.02);
  background: var(--accent);
  color: var(--accent-dark);
}

.btn-icon {
  width: 32px;
  height: 32px;
  background: var(--dark-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-secondary .btn-icon {
  background: var(--accent);
  color: var(--accent-dark);
}

.btn-icon svg {
  width: 14px;
  height: 14px;
}

.btn-icon svg path,
.btn-icon svg line {
  stroke: currentColor;
}

/* --------------------------------------------------------------------------
   Dark Section Pattern (stat cards, footer, CTA)
   -------------------------------------------------------------------------- */
.dark-section,
.stat-card,
.footer {
  background-color: var(--dark-green);
  color: var(--white);
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%232a4030' stroke-width='1.5' opacity='0.4'%3E%3Cpath d='M-20,60 C60,20 120,100 200,60 C280,20 320,80 380,50'/%3E%3Cpath d='M-20,100 C60,60 120,140 200,100 C280,60 320,120 380,90'/%3E%3Cpath d='M-20,140 C60,100 120,180 200,140 C280,100 320,160 380,130'/%3E%3Cpath d='M-20,180 C60,140 120,220 200,180 C280,140 320,200 380,170'/%3E%3Cpath d='M-20,220 C60,180 120,260 200,220 C280,180 320,240 380,210'/%3E%3Cpath d='M-20,260 C60,220 120,300 200,260 C280,220 320,280 380,250'/%3E%3Cpath d='M-20,20 C60,-20 120,60 200,20 C280,-20 320,40 380,10'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.stat-card h1,
.stat-card h2,
.stat-card h3,
.stat-card h4,
.footer h1,
.footer h2,
.footer h3,
.footer h4 {
  color: var(--white);
}

.dark-section .body-text,
.stat-card .body-text,
.footer .body-text {
  color: rgba(255, 255, 255, 0.7);
}

.dark-section .eyebrow,
.stat-card .eyebrow,
.footer .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   Stat Card
   -------------------------------------------------------------------------- */
.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  text-align: center;
}

.stat-card__number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
}

.stat-card__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   Star Icons (accent)
   -------------------------------------------------------------------------- */
.star-icon {
  color: var(--accent);
  fill: var(--accent);
}

/* --------------------------------------------------------------------------
   Card / Border Utilities
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.is-scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  transition: color 0.3s ease;
}

.navbar.is-scrolled .navbar__logo {
  color: var(--text-primary);
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.navbar.is-scrolled .navbar__links a {
  color: var(--text-primary);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s ease;
}

.navbar.is-scrolled .navbar__hamburger {
  color: var(--text-primary);
}

.navbar .btn-primary {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Mobile fullscreen menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background-color: var(--dark-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%232a4030' stroke-width='1.5' opacity='0.4'%3E%3Cpath d='M-20,60 C60,20 120,100 200,60 C280,20 320,80 380,50'/%3E%3Cpath d='M-20,100 C60,60 120,140 200,100 C280,60 320,120 380,90'/%3E%3Cpath d='M-20,140 C60,100 120,180 200,140 C280,100 320,160 380,130'/%3E%3Cpath d='M-20,180 C60,140 120,220 200,180 C280,140 320,200 380,170'/%3E%3Cpath d='M-20,220 C60,180 120,260 200,220 C280,180 320,240 380,210'/%3E%3Cpath d='M-20,260 C60,220 120,300 200,260 C280,220 320,280 380,250'/%3E%3Cpath d='M-20,20 C60,-20 120,60 200,20 C280,-20 320,40 380,10'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
}

.mobile-menu.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 600;
}

.mobile-menu .btn-primary {
  margin-top: 16px;
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%),
    url('hero-image.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 64px 40px;
  max-width: 720px;
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero__stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
}

.hero__rating-text {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.hero__headline {
  color: var(--white);
}

.hero__subheadline {
  color: var(--white);
  opacity: 0.85;
  font-size: 1.1rem;
  max-width: 560px;
  margin: 16px 0 32px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Entrance animation starting state — gated behind .has-js (added synchronously
   in <head>) so content stays visible if JS never runs */
.has-js .hero__rating,
.has-js .hero__headline,
.has-js .hero__subheadline,
.has-js .hero__cta {
  opacity: 0;
}

.hero .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

.hero .btn-secondary:hover {
  background-color: var(--white);
  color: var(--dark-green);
}

.hero .btn-secondary .btn-icon {
  background: var(--white);
  color: var(--dark-green);
}

.hero .btn-secondary:hover .btn-icon {
  background: var(--dark-green);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about__paragraph {
  max-width: 520px;
  margin: 16px 0 28px;
}

.about__gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about__gallery::-webkit-scrollbar {
  display: none;
}

.about__gallery img {
  width: 320px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
}

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

.service-card__body {
  padding: 20px;
}

.service-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   Why Us
   -------------------------------------------------------------------------- */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: #f8f8f5;
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(109, 222, 74, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-top: 16px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.feature-card__body {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.why-us__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials__wrapper {
  margin-top: 40px;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 4px 28px;
  margin: -20px -4px -28px;
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-card__stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 16px 0;
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.testimonials__controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.testimonials__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.testimonials__arrow:hover {
  background: var(--accent);
  color: var(--accent-dark);
  border-color: var(--accent);
}

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

.faq__intro {
  margin-top: 8px;
  margin-bottom: 32px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.faq__link {
  color: var(--accent);
  font-weight: 600;
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.accordion__icon {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.accordion__answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.accordion__answer p {
  margin: 0;
}

.accordion__item.is-open .accordion__answer {
  display: block;
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.cta__paragraph {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
}

.cta__contact-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.cta__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.9rem;
}

.cta__form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
}

.cta__form input,
.cta__form textarea,
.cta__form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-family);
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta__form textarea {
  resize: vertical;
}

.cta__submit {
  width: 100%;
  justify-content: center;
}

.cta__note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 12px;
}

.cta__form-success {
  text-align: center;
  padding: 20px 0;
}

.cta__form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(109, 222, 74, 0.15);
  color: var(--dark-green);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta__form .cta__form-success-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.cta__form-success-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  padding: 80px 0 32px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  transition: opacity 0.2s ease;
}

.footer__logo:hover {
  opacity: 0.85;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 8px;
  max-width: 280px;
}

.footer__cta {
  margin-top: 20px;
}

.footer__links {
  display: flex;
  gap: 48px;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 2;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-align: center;
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer__credit a:hover {
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   Contact Page — Hero (with embedded form)
   -------------------------------------------------------------------------- */
.cta__form .cta__form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.contact-hero__hours {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-top: 20px;
}

.contact-hero__hours strong {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Contact Page — Coverage / Map
   -------------------------------------------------------------------------- */
.contact-coverage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.contact-coverage__info .contact__badges {
  margin-top: 28px;
}

.contact__badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.contact__badge-icon {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.contact__map {
  width: 100%;
  height: 300px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Tablet */
@media (min-width: 768px) {
  :root {
    --container-padding: 32px;
  }

  .navbar__links {
    display: flex;
  }

  .navbar__hamburger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero__content {
    padding: 64px 48px;
  }

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

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

  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  :root {
    --container-padding: 24px;
  }

  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .about__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    overflow: visible;
  }

  .about__gallery img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .about__gallery img:nth-child(5) {
    display: none;
  }

  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-us__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
  }

  .testimonials__controls {
    display: none;
  }

  .cta__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
  }

  .contact-coverage__grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .contact__map {
    height: 380px;
  }
}

/* Mobile only (below tablet) */
@media (max-width: 767px) {
  .hero__content {
    padding: 40px 20px;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta .btn-primary,
  .hero__cta .btn-secondary {
    justify-content: center;
  }
}

/* Small mobile fallback for contact row wrapping */
@media (min-width: 480px) {
  .cta__contact-row {
    flex-direction: row;
    gap: 32px;
  }
}
