/* ===================================================
   Abacus Plumbing, AC & Electrical - The Gold Standard
   Fonts: Lora + Rubik | Colors: Gold + Navy
   =================================================== */

:root {
  --gold: #ffc80e;
  --gold-dark: #e0b000;
  --gold-light: #fff3c4;
  --navy: #1a1a2e;
  --navy-light: #2a2a42;
  --navy-mid: #22223a;
  --white: #ffffff;
  --off-white: #fdf8f0;
  --cream: #f5f0e6;
  --text: #333333;
  --text-light: #6b6b7b;
  --text-on-dark: #e0dfd8;
  --border: #e2ddd3;
  --shadow: rgba(26, 26, 46, 0.1);
  --shadow-lg: rgba(26, 26, 46, 0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 300ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 150ms ease;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--gold); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 2px; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p + p { margin-top: 1em; }

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

/* Container */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 900px; }

/* ==================== HEADER ==================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  transition: background var(--transition), box-shadow var(--transition);
}
.header--scrolled { box-shadow: 0 4px 30px var(--shadow-lg); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1400px; margin: 0 auto;
}
.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo img { height: 48px; width: auto; }
.header__logo span {
  font-family: 'Lora', serif; font-weight: 700; font-size: 1.1rem;
  color: var(--gold); display: none;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--text-on-dark); padding: 8px 14px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500; transition: all var(--transition-fast);
  position: relative;
}
.nav a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; width: 0;
  height: 2px; background: var(--gold); transition: all var(--transition);
  transform: translateX(-50%);
}
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a:hover::after, .nav a.active::after { width: 60%; }

.nav__cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 10px 20px !important; border-radius: var(--radius) !important;
  font-weight: 600 !important; margin-left: 8px;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  width: 44px; height: 44px; position: relative;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--gold);
  transition: all var(--transition); position: absolute; left: 10px;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ==================== HERO ==================== */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  background: var(--navy); overflow: hidden; padding-top: 80px;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.65) 60%, rgba(26,26,46,0.4) 100%);
}
.hero__content {
  position: relative; z-index: 1; max-width: 680px;
  padding: 80px 0;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,200,14,0.15); border: 1px solid rgba(255,200,14,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; color: var(--gold);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s cubic-bezier(0.16,1,0.3,1) both;
}
.hero__title {
  color: var(--white); font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin-bottom: 20px; line-height: 1.1;
  animation: fadeInUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.1s both;
}
.hero__title em { font-style: normal; color: var(--gold); }
.hero__subtitle {
  color: var(--text-on-dark); font-size: 1.15rem; line-height: 1.7;
  margin-bottom: 36px; max-width: 560px;
  animation: fadeInUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  animation: fadeInUp 0.6s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius); font-weight: 600;
  font-size: 1rem; cursor: pointer; border: none;
  transition: all var(--transition-fast); min-height: 48px;
  text-decoration: none; line-height: 1;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn--primary {
  background: var(--gold); color: var(--navy);
}
.btn--primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,200,14,0.35); }
.btn--primary:active { transform: translateY(0); }
.btn--secondary {
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3);
}
.btn--secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow); }

/* ==================== SECTIONS ==================== */
.section { padding: 100px 0; }
.section--navy { background: var(--navy); color: var(--text-on-dark); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--cream { background: var(--cream); }
.section--off-white { background: var(--off-white); }

.section__header { text-align: center; margin-bottom: 64px; }
.section__header h2 { margin-bottom: 16px; }
.section__header p { color: var(--text-light); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.section--navy .section__header p { color: var(--text-on-dark); }

.section__eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px; color: var(--gold);
  margin-bottom: 12px;
}

/* ==================== SERVICES OVERVIEW ==================== */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.service-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px var(--shadow-lg); }
.service-card__img {
  height: 220px; overflow: hidden;
}
.service-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition);
}
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body { padding: 28px; }
.service-card__body h3 { margin-bottom: 10px; }
.service-card__body p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--gold-dark); font-size: 0.9rem;
}
.service-card__link:hover { gap: 10px; }
.service-card__link svg { transition: transform var(--transition-fast); }
.service-card__link:hover svg { transform: translateX(4px); }

/* ==================== WHY CHOOSE US ==================== */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.why-card {
  text-align: center; padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,200,14,0.1);
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,200,14,0.08);
  border-color: rgba(255,200,14,0.3);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(255,200,14,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.why-card__icon svg { width: 28px; height: 28px; fill: var(--gold); }
.why-card h4 { color: var(--white); margin-bottom: 10px; }
.why-card p { color: var(--text-on-dark); font-size: 0.9rem; }

/* ==================== STATS / TRUST ==================== */
.trust-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 48px;
  padding: 60px 0;
}
.trust-item { text-align: center; }
.trust-item__number {
  font-family: 'Lora', serif; font-size: 3rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.trust-item__label {
  font-size: 0.9rem; color: var(--text-on-dark); margin-top: 8px;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 500;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: 0 2px 16px var(--shadow);
  border-top: 3px solid var(--gold);
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--shadow-lg); }
.testimonial-card__stars { color: var(--gold); margin-bottom: 16px; font-size: 1.1rem; }
.testimonial-card__text { font-style: italic; color: var(--text); margin-bottom: 20px; font-size: 0.95rem; line-height: 1.7; }
.testimonial-card__author { font-weight: 600; color: var(--navy); }
.testimonial-card__source { font-size: 0.85rem; color: var(--text-light); }

/* ==================== MEMBERSHIP ==================== */
.membership {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.membership__content h2 { margin-bottom: 16px; }
.membership__content p { margin-bottom: 24px; color: var(--text-light); }
.membership__visual {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 48px; text-align: center; position: relative; overflow: hidden;
}
.membership__visual::before {
  content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,200,14,0.08) 0%, transparent 60%);
}
.membership__price {
  font-family: 'Lora', serif; font-size: 3.5rem; font-weight: 700;
  color: var(--gold); position: relative; z-index: 1;
}
.membership__price span { font-size: 1.2rem; color: var(--text-on-dark); }
.membership__label {
  color: var(--text-on-dark); margin-top: 8px; font-size: 1rem;
  position: relative; z-index: 1;
}

/* ==================== MAP ==================== */
.map-section { position: relative; }
#map { height: 400px; width: 100%; border-radius: var(--radius-lg); z-index: 1; }
#map-home { height: 350px; width: 100%; border-radius: var(--radius-lg); z-index: 1; }

/* ==================== PAGE HERO (Inner Pages) ==================== */
.page-hero {
  background: var(--navy); padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255,200,14,0.05) 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; }
.page-hero p { color: var(--text-on-dark); max-width: 640px; font-size: 1.1rem; position: relative; z-index: 1; }
.page-hero .section__eyebrow { position: relative; z-index: 1; }

/* ==================== SERVICE LIST ==================== */
.service-list { display: flex; flex-direction: column; gap: 24px; }
.service-item {
  display: grid; grid-template-columns: auto 1fr; gap: 24px;
  padding: 28px; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: 0 2px 12px var(--shadow);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
}
.service-item:hover { transform: translateX(4px); box-shadow: 0 6px 24px var(--shadow-lg); }
.service-item__icon {
  width: 52px; height: 52px; background: var(--gold-light);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-item__icon svg { width: 24px; height: 24px; fill: var(--gold-dark); }
.service-item h3 { margin-bottom: 6px; font-size: 1.15rem; }
.service-item p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 8px; }
.service-item__points {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px;
}
.service-item__points span {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.82rem; color: var(--gold-dark); font-weight: 500;
  background: var(--gold-light); padding: 3px 10px; border-radius: 100px;
}

/* ==================== SERVICE FEATURE (with image) ==================== */
.service-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; margin-bottom: 80px;
}
.service-feature:nth-child(even) { direction: rtl; }
.service-feature:nth-child(even) > * { direction: ltr; }
.service-feature__img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 8px 30px var(--shadow);
}
.service-feature__img img { width: 100%; height: 320px; object-fit: cover; }
.service-feature__content h3 { margin-bottom: 12px; }
.service-feature__content p { color: var(--text-light); margin-bottom: 16px; }

/* ==================== CONTACT FORM ==================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.contact-info__item {
  display: flex; gap: 16px; margin-bottom: 28px;
}
.contact-info__icon {
  width: 48px; height: 48px; background: var(--gold-light);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 22px; height: 22px; fill: var(--gold-dark); }
.contact-info__text h4 { margin-bottom: 4px; }
.contact-info__text p { color: var(--text-light); font-size: 0.93rem; }
.contact-info__text a { color: var(--gold-dark); font-weight: 500; }

.form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; }
.form__group label {
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
  margin-bottom: 6px;
}
.form__group input,
.form__group textarea,
.form__group select {
  padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius);
  font-family: 'Rubik', sans-serif; font-size: 0.95rem; color: var(--text);
  transition: border-color var(--transition-fast); background: var(--white);
  min-height: 48px;
}
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  outline: none; border-color: var(--gold);
}
.form__group textarea { min-height: 120px; resize: vertical; }
#form-status { margin-top: 8px; padding: 12px; border-radius: var(--radius); font-weight: 500; display: none; }
#form-status.success { display: block; background: #d4edda; color: #155724; }
#form-status.error { display: block; background: #f8d7da; color: #721c24; }

/* ==================== AWARDS ==================== */
.awards-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  margin-top: 32px;
}
.award-badge {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); padding: 16px 24px;
  border-radius: var(--radius-lg); box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
}
.award-badge__icon {
  width: 44px; height: 44px; background: var(--gold-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.award-badge__icon svg { width: 22px; height: 22px; fill: var(--gold-dark); }
.award-badge__text { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.award-badge__text span { display: block; font-weight: 400; font-size: 0.8rem; color: var(--text-light); }

/* ==================== ABOUT ==================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; color: var(--text-light); }

/* ==================== CTA ==================== */
.cta-section {
  background: var(--navy); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,200,14,0.08) 0%, transparent 70%);
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section p { color: var(--text-on-dark); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-section .btn { position: relative; z-index: 1; }

/* ==================== FOOTER ==================== */
.footer {
  background: var(--navy); padding: 64px 0 0; color: var(--text-on-dark);
  border-top: 3px solid var(--gold);
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer__brand img { height: 44px; margin-bottom: 16px; }
.footer__brand p { font-size: 0.9rem; color: var(--text-on-dark); max-width: 300px; }
.footer h4 { color: var(--gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; font-family: 'Rubik', sans-serif; }
.footer a { color: var(--text-on-dark); font-size: 0.9rem; }
.footer a:hover { color: var(--gold); }
.footer ul li { margin-bottom: 8px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: var(--text-on-dark);
}
.footer__social { display: flex; gap: 16px; }
.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;
  transition: all var(--transition-fast);
}
.footer__social a:hover { background: var(--gold); }
.footer__social a:hover svg { fill: var(--navy); }
.footer__social svg { width: 18px; height: 18px; fill: var(--text-on-dark); }

/* ==================== LOCATIONS ==================== */
.locations-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px;
}
.location-card {
  background: var(--white); padding: 28px;
  border-radius: var(--radius-lg); box-shadow: 0 2px 12px var(--shadow);
  border-left: 4px solid var(--gold);
}
.location-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.location-card p { color: var(--text-light); font-size: 0.93rem; }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal--left { opacity: 0; transform: translateX(-30px); transition: all 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal--right { opacity: 0; transform: translateX(30px); transition: all 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal--scale { opacity: 0; transform: scale(0.95); transition: all 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible, .reveal--left.visible, .reveal--right.visible, .reveal--scale.visible {
  opacity: 1; transform: translate(0) scale(1);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.3s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .membership { grid-template-columns: 1fr; gap: 40px; }
  .service-feature { grid-template-columns: 1fr; gap: 32px; }
  .service-feature:nth-child(even) { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); padding: 16px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 12px 30px var(--shadow-lg);
  }
  .nav.open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav.open .nav__cta {
    margin: 8px 0 0 !important; text-align: center; justify-content: center;
    border-bottom: none !important;
  }
  .nav-toggle { display: block; }

  .hero { min-height: 80vh; }
  .hero__content { padding: 60px 0; }
  .hero__title { font-size: clamp(2rem, 6vw, 3rem); }

  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form__row { grid-template-columns: 1fr; }
  .trust-bar { gap: 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .locations-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .service-item { grid-template-columns: 1fr; }
  .service-item__icon { width: 44px; height: 44px; }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal--left, .reveal--right, .reveal--scale {
    opacity: 1; transform: none;
  }
}
