/* ============================================
   ALWAYS MOORE HAULING & REMOVAL
   Colors: Brown (#3B1F0B), Green (#2D5A27), White
   ============================================ */

/* ---------- VARIABLES ---------- */
:root {
  --brown:       #3B1F0B;
  --brown-light: #5C3A1E;
  --brown-dark:  #2A1508;
  --green:       #2D5A27;
  --green-light: #3D7A35;
  --green-dark:  #1E3D1A;
  --white:       #FFFFFF;
  --off-white:   #F7F5F2;
  --cream:       #FDF8F3;
  --gray:        #6B6B6B;
  --gray-light:  #E8E4E0;
  --gray-dark:   #333333;
  --text:        #2A1508;
  --shadow:      0 4px 20px rgba(59,31,11,0.12);
  --shadow-lg:   0 8px 40px rgba(59,31,11,0.18);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-light); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; }

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

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

/* ---------- HEADER ---------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brown);
  flex-shrink: 0;
}
.logo-icon { width: 72px; height: auto; }
.logo-img { width: 100%; height: auto; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown);
  letter-spacing: 1px;
}
.logo-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
}

#main-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}
#main-nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 0;
  position: relative;
}
#main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width var(--transition);
}
#main-nav a:hover::after { width: 100%; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.phone-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown);
  white-space: nowrap;
}
.phone-icon { font-size: 1.1em; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ---------- HERO ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 40%, var(--green-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 120px 24px 80px;
}
.hero-overlay {
  position: absolute;
  inset: 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");
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.hero-title span { color: var(--green-light); font-size: 0.6em; }

.hero-slogan {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.9);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}
.badge strong { display: block; font-size: 1rem; }

/* ---------- SECTIONS (shared) ---------- */
section {
  padding: 100px 0;
}
section:nth-child(even) {
  background: var(--off-white);
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--brown);
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 56px;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--green);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 56px;
  height: 56px;
  color: var(--green);
  margin-bottom: 20px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- HOW IT WORKS ---------- */
#how-it-works { background: var(--brown); color: var(--white); }
#how-it-works .section-title { color: var(--white); }
#how-it-works .section-subtitle { color: rgba(255,255,255,0.7); }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.step {
  text-align: center;
  max-width: 280px;
  flex: 1;
  min-width: 220px;
}
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(45,90,39,0.4);
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.step p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}
.step-arrow {
  font-size: 2rem;
  color: var(--green-light);
  align-self: center;
  margin-top: 10px;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-lead {
  font-size: 1.15rem;
  margin-bottom: 32px;
  color: var(--gray-dark);
  line-height: 1.8;
}
.about-values {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-values li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 2px;
}
.about-values li strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brown);
  margin-bottom: 4px;
}
.about-values li p {
  font-size: 0.92rem;
  color: var(--gray);
  margin: 0;
}
.about-text .section-title { text-align: left; }

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
}
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brown);
}
.stat-plus, .stat-star, .stat-unit, .stat-pct {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
}
.stat-star { color: #D4A017; }
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}
.gallery-item {
  text-align: center;
}
.gallery-item p {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--brown);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.before-after {
  display: flex;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.before-panel, .after-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.before-panel img, .after-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition);
}
.before-panel:hover img, .after-panel:hover img {
  transform: scale(1.04);
}
.panel-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.65);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.after-panel .panel-label {
  background: var(--green);
}
.stat-eco {
  font-size: 2.6rem;
  display: block;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 2px;
}

/* ---------- GALLERY CAROUSEL ---------- */
.gallery-carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
}
.gallery-slide {
  min-width: 100%;
  text-align: center;
}
.slide-caption {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--brown);
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- REVIEWS ---------- */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
}
.review-card {
  min-width: 100%;
  padding: 48px 60px;
  text-align: center;
}
.review-stars {
  font-size: 1.5rem;
  color: #D4A017;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.review-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-dark);
  font-style: italic;
  margin-bottom: 20px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.review-author {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--brown);
  background: var(--white);
  color: var(--brown);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  background: var(--brown);
  color: var(--white);
}
.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-light);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.carousel-dots .dot.active { background: var(--green); }

/* ---------- SERVICE AREAS ---------- */
#areas { background: var(--brown); color: var(--white); }
#areas .section-title { color: var(--white); }

.areas-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.areas-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.areas-grid li {
  font-size: 1rem;
  padding-left: 20px;
  position: relative;
}
.areas-grid li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}
.areas-note {
  text-align: center;
  margin-top: 36px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-light);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--green);
  transition: transform var(--transition);
}
.faq-item.active .faq-question::after {
  content: '\2212';
}
.faq-question:hover { color: var(--green); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}
.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 0 24px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 12px;
}
.faq-answer ul {
  margin: 8px 0 12px 20px;
  color: var(--gray);
  font-size: 0.95rem;
}
.faq-answer li { margin-bottom: 4px; }

/* ---------- CONTACT ---------- */
#contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.quote-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brown);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-card h3 {
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-icon {
  font-size: 1.3rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brown);
  margin-bottom: 2px;
}
.contact-item a, .contact-item span {
  font-size: 0.95rem;
  color: var(--gray);
}
.contact-item a:hover { color: var(--green); }

.cta-card {
  background: var(--brown);
  color: var(--white);
}
.cta-card h3 { color: var(--white); }
.cta-card p { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 0.95rem; }
.cta-card .btn { margin-bottom: 10px; }
.cta-card .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.cta-card .btn-outline:hover {
  background: var(--white);
  color: var(--brown);
}

.hidden { display: none; }

/* Form states */
.form-error {
  color: #c0392b;
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 48px;
}
.form-success h3 {
  color: var(--green);
  margin-bottom: 12px;
}

/* ---------- FOOTER ---------- */
#footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo .logo-name {
  color: var(--white);
  font-size: 1.3rem;
}
.footer-logo .logo-sub {
  color: var(--green-light);
}
.footer-tagline {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin: 12px 0 16px;
  letter-spacing: 1px;
}
.footer-contact a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.footer-contact a:hover { color: var(--green-light); }

#footer h4 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links ul,
.footer-services ul,
.footer-areas ul {
  list-style: none;
}
.footer-links li,
.footer-services li,
.footer-areas li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
}
.footer-links a:hover { color: var(--green-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(45,90,39,0.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--green-light);
  transform: translateY(-3px);
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  #main-nav { display: none; }
  .header-cta .btn { display: none; }
  .mobile-toggle { display: flex; }

  /* Mobile nav overlay */
  #main-nav.open {
    display: flex;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 32px 24px;
  }
  #main-nav.open ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  #main-nav.open a {
    display: block;
    padding: 16px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--gray-light);
  }

  .hero-title { letter-spacing: 1px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-badges { gap: 12px; }

  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }

  .about-stats { grid-template-columns: 1fr 1fr; }

  .review-card { padding: 32px 20px; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1.2rem; }

  .areas-grid { gap: 32px; }

  .quote-form { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-badges { flex-direction: column; align-items: center; }
  .badge { width: 100%; max-width: 240px; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
