/* ============================================
   Austin Plumbing - Texas Professional Design
   Colors: Warm Orange + Deep Indigo
   Fonts: Zilla Slab + Albert Sans
   ============================================ */

:root {
  --primary: #cd6340;
  --primary-light: #ee7b55;
  --primary-dark: #a84e30;
  --indigo: #241da3;
  --indigo-dark: #1a1580;
  --indigo-deep: #120e6b;
  --text: #2b2b2b;
  --text-light: #5a5a5a;
  --text-muted: #8a8a8a;
  --white: #ffffff;
  --bg-warm: #fdf6f1;
  --bg-cream: #f5ede7;
  --bg-light: #f9f9f9;
  --border: #e5ddd7;
  --shadow: rgba(36, 29, 163, 0.08);
  --shadow-strong: rgba(36, 29, 163, 0.15);
  --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; }

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

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

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

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

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

p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--indigo);
  color: var(--white);
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Albert Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow-strong); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }

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

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

.btn-white { background: var(--white); color: var(--indigo); }
.btn-white:hover { background: var(--bg-warm); color: var(--indigo); }

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--indigo);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--indigo-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo { display: flex; align-items: center; gap: 0.75rem; }
.header-logo img { height: 56px; width: 56px; }
.header-logo span {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  display: none;
}

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; list-style: none; gap: 0.25rem; }
.nav-desktop a {
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}
.nav-desktop a:hover, .nav-desktop a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.header-cta { display: none; }
.header-cta .btn { padding: 0.6rem 1.25rem; font-size: 0.9rem; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.header-phone svg { width: 18px; height: 18px; fill: var(--primary-light); }

/* ---- Mobile Nav ---- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--indigo-dark);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1rem;
  border-radius: var(--radius);
  transition: background var(--transition-fast);
}
.nav-mobile a:hover { background: rgba(255,255,255,0.1); }
.nav-mobile .mobile-phone {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-light);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 14, 107, 0.88) 0%, rgba(36, 29, 163, 0.75) 50%, rgba(205, 99, 64, 0.5) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  animation: fadeInUp 0.6s both;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.6s 0.1s both;
}
.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
  animation: fadeInUp 0.6s 0.2s both;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.6s 0.3s both;
}

/* ---- Section Base ---- */
section { padding: 5rem 0; }
.section-white { background: var(--white); }
.section-warm { background: var(--bg-warm); }
.section-cream { background: var(--bg-cream); }
.section-dark { background: var(--indigo); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,0.8); }

.section-label {
  display: inline-block;
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section-dark .section-label { color: var(--primary-light); }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}
.trust-item .trust-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm);
  border-radius: 50%;
  flex-shrink: 0;
}
.trust-item .trust-icon svg { width: 22px; height: 22px; fill: var(--primary); }
.trust-item strong { font-size: 1.1rem; }

/* ---- Service Cards ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow-strong);
}
.service-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.15));
}
.service-card-body { padding: 1.5rem; }
.service-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.service-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1rem; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}
.service-card .card-link:hover { gap: 0.6rem; }

/* ---- Why Choose Us ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px var(--shadow);
}
.why-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  flex-shrink: 0;
}
.why-icon svg { width: 26px; height: 26px; fill: var(--white); }
.why-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.why-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ---- Promo Banner ---- */
.promo-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.promo-banner h2 { color: var(--white); margin-bottom: 0.75rem; position: relative; }
.promo-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 1.5rem; position: relative; }

/* ---- Testimonials ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px var(--shadow-strong);
  transform: translateY(-2px);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testimonial-stars svg { width: 18px; height: 18px; fill: #f59e0b; }
.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-name { font-weight: 600; }
.testimonial-source { font-size: 0.85rem; color: var(--text-muted); }

/* ---- Map Section ---- */
.map-section { padding: 4rem 0; }
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  border: 2px solid var(--border);
}

/* ---- CTA Section ---- */
.cta-section {
  background: var(--indigo);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(205,99,64,0.08), transparent);
  transform: skewX(-20deg);
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; position: relative; }

/* ---- Footer ---- */
.site-footer {
  background: var(--indigo-deep);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand { }
.footer-brand img { height: 60px; width: 60px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.95rem; max-width: 300px; line-height: 1.6; }
.footer-heading {
  font-family: 'Zilla Slab', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--primary-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer-contact-item svg { width: 18px; height: 18px; fill: var(--primary-light); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--primary-light); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: all var(--transition-fast);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }
.footer-social a svg { width: 18px; height: 18px; fill: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

/* ---- About Page ---- */
.about-hero {
  padding: 8rem 0 4rem;
  background: var(--indigo);
  color: var(--white);
}
.about-hero .section-label { color: var(--primary-light); }
.about-hero h1 { color: var(--white); }

.about-story {
  padding: 5rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text p { color: var(--text-light); font-size: 1.05rem; }
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
}
.about-img img { width: 100%; height: auto; object-fit: cover; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 12px var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all var(--transition);
}
.team-card:hover {
  box-shadow: 0 8px 24px var(--shadow-strong);
  transform: translateY(-2px);
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Zilla Slab', serif;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.team-info h3 { margin-bottom: 0.25rem; font-size: 1.15rem; }
.team-title { color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; }
.team-bio { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* ---- Services Page ---- */
.services-hero {
  padding: 8rem 0 4rem;
  background: var(--indigo);
  color: var(--white);
  position: relative;
}
.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--indigo-deep) 0%, var(--indigo) 60%, rgba(205,99,64,0.2) 100%);
}
.services-hero .container { position: relative; }
.services-hero h1 { color: var(--white); }

.service-category { padding: 4rem 0; }
.service-category:nth-child(even) { background: var(--bg-warm); }
.category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.category-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  flex-shrink: 0;
}
.category-icon svg { width: 28px; height: 28px; fill: var(--white); }
.category-header h2 { margin: 0; }

.service-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.service-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px var(--shadow);
}
.service-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-item p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.75rem; }
.service-item .key-points { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-item .key-points li {
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  background: var(--bg-warm);
  border-radius: 50px;
  color: var(--text-light);
}

/* ---- Service Area Page ---- */
.area-hero {
  padding: 8rem 0 4rem;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.area-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,14,107,0.92), rgba(36,29,163,0.8));
}
.area-hero .container { position: relative; z-index: 2; }
.area-hero h1 { color: var(--white); }
.area-hero p { color: rgba(255,255,255,0.85); }

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.area-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-weight: 600;
  transition: all var(--transition);
}
.area-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px var(--shadow);
  transform: translateY(-2px);
}
.area-card svg { width: 20px; height: 20px; fill: var(--primary); flex-shrink: 0; }

/* ---- Testimonials Page ---- */
.testimonials-hero {
  padding: 8rem 0 4rem;
  background: var(--indigo);
  color: var(--white);
}
.testimonials-hero h1 { color: var(--white); }
.testimonials-hero p { color: rgba(255,255,255,0.85); }

.testimonials-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.testimonial-card-lg {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 16px var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card-lg:hover {
  box-shadow: 0 8px 32px var(--shadow-strong);
  transform: translateY(-3px);
}
.testimonial-card-lg::before {
  content: '\201C';
  font-family: 'Zilla Slab', serif;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

/* ---- Contact Page ---- */
.contact-hero {
  padding: 8rem 0 4rem;
  background: var(--indigo);
  color: var(--white);
}
.contact-hero h1 { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact-info-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px var(--shadow);
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 24px; height: 24px; fill: var(--primary); }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-info-card p { margin: 0; color: var(--text-light); font-size: 0.95rem; }
.contact-info-card a { color: var(--primary); font-weight: 500; }

/* ---- Contact Form ---- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 16px var(--shadow);
  border: 1px solid var(--border);
}
.contact-form h2 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.contact-form > p { color: var(--text-light); margin-bottom: 1.5rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Albert Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-light);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(205, 99, 64, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

#form-status {
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  display: none;
  font-weight: 500;
}
#form-status.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
#form-status.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 8rem 0 3.5rem;
  background: var(--indigo);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 200px;
  height: 200px;
  background: rgba(205,99,64,0.08);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; }
.page-hero .section-label { color: var(--primary-light); }

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Leaflet Overrides ---- */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  font-family: 'Albert Sans', sans-serif !important;
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Responsive ---- */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .service-list-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-info-cards { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .header-logo span { display: block; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-page-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
  .header-cta { display: block; }
  .header-phone { display: none; }
  .service-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .service-list-grid { grid-template-columns: 1fr 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .area-grid { grid-template-columns: repeat(5, 1fr); }
}
