:root {
  --bg: #f5f3f0;
  --surface: #ffffff;
  --text: #2d2d2d;
  --muted: #757575;
  --primary: #10a37f;
  --primary-dark: #0d8a6b;
  --accent: #d97706;
  --border: #e8e6e1;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon {
  width: 138px;
  height: 138px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.65;
  filter: brightness(1.25);
  transition: opacity 0.3s ease;
}

.brand-icon:hover {
  opacity: 0.75;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.header-phone-link {
  color: var(--primary) !important;
  font-weight: 700 !important;
  white-space: nowrap;
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  line-height: 1;
}

.header-phone-link:hover {
  background: var(--primary);
  color: white !important;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

.hero-section {
  min-height: 60vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(16, 163, 127, 0.75) 0%, rgba(13, 138, 107, 0.75) 100%), 
              url('WEBSITE/2-story%20great%20room%20painting.JPG') center/cover no-repeat;
  padding: 3rem 0;
}

.hero-content {
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d97706;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: 0;
  max-width: 20ch;
  color: white;
}

.hero-content p {
  max-width: 42rem;
  margin: 1.5rem auto 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

.button {
  border: none;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.button.primary {
  background: #d97706;
  color: #ffffff;
}

.button.primary:hover {
  background: #b45309;
  transform: translateY(-2px);
}

.button.secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.section {
  padding: 3.5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0.75rem auto 0;
  max-width: 48rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.service-grid,
.gallery-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card,
.about-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.service-grid .card {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-grid .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.service-grid .card h3,
.service-grid .card p {
  position: relative;
  z-index: 2;
}

.service-grid .card h3 {
  color: white;
}

.card h3,
.about-card h3 {
  margin-top: 0;
}

.about-grid {
  grid-template-columns: 1.35fr 0.85fr;
  align-items: start;
}

.about-section ul {
  padding-left: 1.25rem;
}

.about-section li {
  margin-bottom: 0.6rem;
}

/* ===== Gallery Hero Section ===== */
.gallery-hero-section {
  background: linear-gradient(135deg, var(--surface) 0%, #f0fdf8 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.gallery-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0.5rem 0 1rem;
}

.gallery-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text);
  opacity: 0.75;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.gallery-stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 2rem auto 0;
}

.gallery-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}

.gallery-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.gallery-stat-label {
  font-size: 0.8rem;
  color: var(--text);
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

.gallery-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== Gallery Filters ===== */
.gallery-filters-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  position: sticky;
  top: 64px;
  z-index: 10;
  background: var(--bg);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.gallery-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.filter-btn {
  padding: 0.65rem 1.4rem;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.filter-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 163, 127, 0.25);
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(16, 163, 127, 0.3);
}

/* ===== Gallery Grid (masonry columns) ===== */
.gallery-grid {
  columns: 4 220px;
  column-gap: 1rem;
  animation: fadeIn 0.4s ease;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  display: none;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.0) 100%);
  padding: 2rem 1.25rem 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.gallery-overlay h3 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.gallery-item.hidden {
  display: none;
}

/* ===== Load More ===== */
.gallery-load-more {
  text-align: center;
  margin-top: 3rem;
  padding-bottom: 1rem;
}

.btn-load-more {
  padding: 0.9rem 2.5rem;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.btn-load-more:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 163, 127, 0.3);
}

.gallery-count-label {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text);
  opacity: 0.55;
}

/* ===== Gallery CTA Section ===== */
.gallery-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0f8a6b 100%);
  padding: 5rem 0;
  text-align: center;
  margin-top: 2rem;
}

.gallery-cta-content h2 {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.gallery-cta-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  padding: 1rem 2.25rem;
  background: white;
  color: var(--primary);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-btn-secondary {
  padding: 1rem 2.25rem;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-3px);
}

/* ===== Gallery Responsive ===== */
@media (max-width: 900px) {
  .gallery-grid {
    columns: 3 180px;
  }

  .gallery-filters-wrapper {
    top: 56px;
  }

  .filter-btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
  }

  .gallery-stat {
    padding: 0 1.25rem;
  }
}

@media (max-width: 720px) {
  .gallery-hero-section {
    padding: 3.5rem 0 3rem;
  }

  .gallery-grid {
    columns: 2 150px;
    column-gap: 0.6rem;
  }

  .gallery-item {
    margin-bottom: 0.6rem;
  }

  .gallery-stats-bar {
    gap: 0.5rem;
    padding: 1.25rem 1rem;
  }

  .gallery-stat {
    padding: 0 0.75rem;
  }

  .gallery-stat-divider {
    height: 30px;
  }

  .gallery-stat-num {
    font-size: 1.5rem;
  }

  .gallery-filters-wrapper {
    padding: 1rem 0;
  }

  .gallery-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
  }

  .gallery-cta-section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    columns: 2;
    column-gap: 0.5rem;
  }

  .gallery-stat-divider {
    display: none;
  }

  .gallery-stats-bar {
    gap: 1rem;
    justify-content: space-around;
  }
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  background: var(--surface);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  display: block;
}

.lightbox-caption {
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 1001;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s ease;
  z-index: 1001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.note {
  text-align: center;
  color: var(--muted);
  margin-top: 1rem;
}

/* ===== Trust Bar ===== */
.trust-bar-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.5rem;
  text-align: center;
}

.trust-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.trust-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== About Card List ===== */
.about-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.about-card-list li:last-child {
  border-bottom: none;
}

/* ===== Service Areas Section (homepage) ===== */
.areas-section {
  background: var(--bg);
}

.areas-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0.75rem auto 2.5rem;
}

.areas-subtitle a {
  color: var(--primary);
  font-weight: 600;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.area-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
}

.area-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(16, 163, 127, 0.15);
}

.area-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.area-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.3rem;
  display: block;
}

/* ===== Service Areas Page ===== */
.areas-hero-section {
  background: linear-gradient(135deg, var(--surface) 0%, #f0fdf8 100%);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.areas-hero-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.5rem 0 1rem;
}

.areas-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.areas-hero-sub a {
  color: var(--primary);
  font-weight: 700;
}

.city-sections {
  background: var(--bg);
}

.city-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}

.city-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.city-block.reverse {
  direction: rtl;
}

.city-block.reverse > * {
  direction: ltr;
}

.city-block-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.city-block-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.city-block-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0.5rem 0 1rem;
}

.city-block-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.city-block-content ul li {
  margin-bottom: 0.4rem;
  color: var(--muted);
}

/* ===== Footer Redesign ===== */
/* Testimonials Section */
.testimonials-section {
  background: var(--surface);
}

.testimonials-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.testimonials-content {
  grid-column: 1;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.testimonial-slide {
  display: none;
  animation: slideIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-card .stars {
  font-size: 1.5rem;
  color: #fbbf24;
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
}

.testimonial-card .review-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card .reviewer-name {
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.testimonial-prev,
.testimonial-next {
  background: var(--primary);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.contact-details p {
  margin: 0.6rem 0;
  font-size: 0.95rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  margin-bottom: 0.9rem;
  font: inherit;
  font-size: 0.95rem;
}

.site-footer {
  background: #1e1e1e;
  color: #c9cdd4;
  padding: 3.5rem 0 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  margin: 0 0 0.3rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.footer-phone {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-col-heading {
  font-weight: 700;
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-inner {
  display: block;
}

@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .testimonials-content {
    grid-column: 1;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .city-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .city-block.reverse {
    direction: ltr;
  }

  .trust-item {
    padding: 0 1.25rem;
  }

  .areas-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }

  .gallery-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 0.75rem;
    font-size: 1.25rem;
  }

  .lightbox-close {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-card .review-text {
    font-size: 0.95rem;
  }

  .testimonial-prev,
  .testimonial-next {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .testimonial-controls {
    gap: 1rem;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-bar {
    gap: 1rem;
    justify-content: space-around;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    padding: 0.5rem 1rem;
  }

  .city-block-img img {
    height: 240px;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
