/*
  A1 JUNK REMOVAL AND TREE SERVICE
  Design System: "Omaha Grit" — Bold Local Pride
  Colors: Deep Navy #0A1628, Safety Orange #E8611A, Sage Green #7A9E7E
  Fonts: Bebas Neue (display), Work Sans (body)
  Static HTML — No frameworks
*/

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #374151;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
strong { font-weight: 700; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ─── UTILITIES ─── */
.hide-mobile { display: none; }
.show-mobile { display: inline; }
@media (min-width: 640px) {
  .hide-mobile { display: inline; }
  .show-mobile { display: none; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-family: 'Work Sans', sans-serif;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1;
}
.btn svg { flex-shrink: 0; }
.btn-orange {
  background: #E8611A;
  color: #fff;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}
.btn-orange:hover { background: #d4570f; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ─── TOP BAR ─── */
.top-bar {
  background: #E8611A;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.375rem 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  color: #fff;
}
.top-bar-phone:hover { opacity: 0.9; }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #0A1628;
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 10px 25px -5px rgba(0,0,0,0.3); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 1024px) { .header-inner { height: 4.5rem; } }

/* Logo */
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  color: #fff;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.logo-sub {
  color: #7A9E7E;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
@media (min-width: 1024px) {
  .logo-main { font-size: 1.5rem; }
  .logo-sub { font-size: 0.875rem; }
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.desktop-nav > a, .nav-dropdown-btn {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  white-space: nowrap;
}
.desktop-nav > a:hover, .nav-dropdown-btn:hover { color: #fff; }
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Work Sans', sans-serif;
}
.nav-dropdown-btn svg { transition: transform 0.2s; }
.nav-dropdown-btn.open svg { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100vw;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border-top: 4px solid #E8611A;
  z-index: 50;
}
.mega-menu.open { display: block; }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  padding: 2rem 0;
}
@media (min-width: 768px) { .mega-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .mega-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .mega-grid { grid-template-columns: repeat(4, 1fr); } }

.mega-col-title {
  color: #0A1628;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.mega-col ul { display: flex; flex-direction: column; gap: 0.375rem; }
.mega-col li a {
  font-size: 0.875rem;
  color: #6b7280;
  transition: color 0.2s;
}
.mega-col li a:hover { color: #E8611A; }
#mega-tree .mega-col li a:hover,
#mega-landscaping .mega-col li a:hover { color: #7A9E7E; }

.mega-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}
.mega-footer p { color: #9ca3af; font-size: 0.875rem; }
.mega-footer a { color: #E8611A; font-weight: 600; font-size: 0.875rem; }
.mega-footer a:hover { text-decoration: underline; }
#mega-tree .mega-footer a,
#mega-landscaping .mega-footer a { color: #7A9E7E; }

/* Mobile Menu Button */
.mobile-menu-btn {
  color: #fff;
  padding: 0.5rem;
  display: block;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: #0A1628;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-header span { color: #fff; font-weight: 700; font-size: 1.125rem; font-family: 'Bebas Neue', sans-serif; }
.mobile-menu-header button { color: #fff; padding: 0.5rem; }
.mobile-menu-nav { padding: 1rem; }
.mobile-menu-nav > a, .mobile-dropdown > button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.5rem;
}
.mobile-menu-nav > a:hover,
.mobile-dropdown > button:hover { background: rgba(255,255,255,0.05); }
.mobile-dropdown > button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Work Sans', sans-serif;
}
.mobile-dropdown > button svg { transition: transform 0.2s; }
.mobile-dropdown > button.open svg { transform: rotate(180deg); }
.mobile-dropdown-content {
  display: none;
  margin-left: 1rem;
  padding-top: 0.25rem;
}
.mobile-dropdown-content.open { display: block; }
.mobile-dropdown-content a.view-all {
  display: block;
  padding: 0.5rem 1rem;
  color: #E8611A;
  font-weight: 600;
  font-size: 0.875rem;
}
.mobile-dropdown-content a.view-all-green { color: #7A9E7E; }
.mobile-dropdown-content .mobile-cat-title {
  padding: 0.25rem 1rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.mobile-dropdown-content a.mobile-svc-link {
  display: block;
  padding: 0.375rem 1rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
}
.mobile-dropdown-content a.mobile-svc-link:hover { color: #E8611A; }
.mobile-menu-ctas {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-menu-ctas .btn { width: 100%; padding: 0.75rem; font-size: 1.125rem; }

/* ─── BREADCRUMB ─── */
.breadcrumb-bar {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #9ca3af;
  flex-wrap: wrap;
}
.breadcrumb a { color: #6b7280; }
.breadcrumb a:hover { color: #0A1628; }
.breadcrumb .current { color: #0A1628; font-weight: 500; }

/* ─── HERO SECTION ─── */
.hero-section {
  position: relative;
  padding: 4rem 0;
  background: #0A1628;
  overflow: hidden;
}
@media (min-width: 1024px) { .hero-section { padding: 6rem 0; } }
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0A1628, rgba(10,22,40,0.8), transparent);
}
.hero-content { position: relative; z-index: 10; }
.hero-inner { max-width: 48rem; }
.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-badge-orange { background: rgba(232,97,26,0.2); color: #E8611A; }
.hero-badge-green { background: rgba(122,158,126,0.2); color: #7A9E7E; }
.hero-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.5rem; } }
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

/* ─── TRUST BAR ─── */
.trust-bar {
  padding: 2rem 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trust-item svg { flex-shrink: 0; }
.trust-label { font-weight: 700; color: #0A1628; }
.trust-sub { font-size: 0.875rem; color: #9ca3af; }

/* ─── CONTENT SECTION ─── */
.content-section {
  padding: 4rem 0 5rem;
}
@media (min-width: 1024px) { .content-section { padding: 5rem 0; } }
.content-narrow {
  max-width: 48rem;
  margin: 0 auto;
}

/* Placeholder notice */
.placeholder-notice {
  text-align: center;
  padding: 3rem 1rem;
  color: #9ca3af;
  font-size: 1.25rem;
}

/* ─── RELATED SERVICES ─── */
.related-services {
  padding: 3rem 0;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}
.related-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  text-align: center;
  color: #0A1628;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(4, 1fr); } }
.related-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
}
.related-card span { font-weight: 600; color: #0A1628; transition: color 0.2s; }
.related-card svg { color: #9ca3af; transition: color 0.2s; }
.related-card:hover {
  border-color: #E8611A;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.related-card:hover span { color: #E8611A; }
.related-card:hover svg { color: #E8611A; }

/* ─── CTA SECTION ─── */
.cta-section {
  position: relative;
  padding: 5rem 0;
  background: #0A1628;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0A1628, rgba(10,22,40,0.8), transparent);
}
.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}
.cta-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) { .cta-title { font-size: 3rem; } }
.cta-text {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

/* ─── FOOTER ─── */
.site-footer { background: #0A1628; color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand .logo { margin-bottom: 1rem; }
.former-name { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-style: italic; margin-bottom: 1rem; }
.footer-desc { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.footer-contact a:hover { color: #E8611A; }
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
}

.footer-heading {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.footer-heading-orange { color: #E8611A; }
.footer-heading-green { color: #7A9E7E; }

.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col li a:hover { color: #fff; }
.footer-view-all { color: #E8611A !important; font-weight: 600; }
.footer-view-all:hover { text-decoration: underline; }
.footer-view-all-green { color: #7A9E7E !important; font-weight: 600; }
.footer-view-all-green:hover { text-decoration: underline; }

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
}
.footer-areas a {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  transition: color 0.2s;
}
.footer-areas a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── MOBILE STICKY CTA ─── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #0A1628;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem;
  gap: 0.5rem;
}
.mobile-sticky-cta.visible { display: flex; }
@media (min-width: 1024px) { .mobile-sticky-cta { display: none !important; } }
.mobile-sticky-cta .btn { flex: 1; padding: 0.75rem; font-size: 0.875rem; }

/* ─── FORM STYLES ─── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-weight: 600;
  color: #0A1628;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  color: #374151;
  background: #fff;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: #E8611A;
  box-shadow: 0 0 0 3px rgba(232,97,26,0.15);
}
.form-textarea { min-height: 120px; resize: vertical; }

/* ─── SERVICE GRID (for listing pages) ─── */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  display: block;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: all 0.2s;
}
.service-card:hover {
  border-color: #E8611A;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.service-card h3 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  color: #0A1628;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.service-card:hover h3 { color: #E8611A; }
.service-card p { color: #6b7280; font-size: 0.875rem; }

/* ─── AREA GRID ─── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .area-grid { grid-template-columns: repeat(5, 1fr); } }
.area-card {
  display: block;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  text-align: center;
  transition: all 0.2s;
}
.area-card:hover {
  border-color: #E8611A;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.area-card h3 { font-family: 'Bebas Neue', 'Impact', sans-serif; color: #0A1628; margin-bottom: 0.25rem; }
.area-card p { color: #9ca3af; font-size: 0.875rem; }

/* ─── PAGE SECTIONS ─── */
.page-section { padding: 4rem 0; }
@media (min-width: 1024px) { .page-section { padding: 5rem 0; } }
.page-section-alt { background: #f9fafb; }
.section-title {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  color: #0A1628;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .section-title { font-size: 2.25rem; } }
.section-title-center { text-align: center; }

/* ─── HOMEPAGE ─── */
.home-hero {
  position: relative;
  padding: 5rem 0;
  background: #0A1628;
  overflow: hidden;
}
@media (min-width: 1024px) { .home-hero { padding: 7rem 0; } }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  padding: 2rem;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
}
.why-card svg { color: #E8611A; margin-bottom: 1rem; }
.why-card h3 { font-family: 'Bebas Neue', 'Impact', sans-serif; color: #0A1628; margin-bottom: 0.5rem; }
.why-card p { color: #6b7280; font-size: 0.9375rem; }

/* ─── PRINT ─── */
@media print {
  .top-bar, .site-header, .site-footer, .mobile-sticky-cta, .cta-section { display: none; }
  body { color: #000; }
}

/* ─── SERVICE GRID ─── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  display: block;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.2s;
  text-decoration: none;
}
.service-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
  border-color: #E8611A;
}
.service-card h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.25rem;
  color: #0A1628;
  margin-bottom: 0.25rem;
}
.service-card p {
  color: #6b7280;
  font-size: 0.875rem;
}

/* ─── AREA GRID ─── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .area-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .area-grid { grid-template-columns: repeat(4, 1fr); }
}

.area-card {
  display: block;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s;
  text-decoration: none;
}
.area-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
  border-color: #E8611A;
}
.area-card h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.5rem;
  color: #0A1628;
  margin-bottom: 0.25rem;
}
.area-card p {
  color: #6b7280;
  font-size: 0.875rem;
}

/* ─── FORM STYLES ─── */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-weight: 600;
  color: #0A1628;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: 'Work Sans', sans-serif;
  transition: border-color 0.2s;
  background: white;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #E8611A;
  box-shadow: 0 0 0 3px rgba(232, 97, 26, 0.1);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* ─── BUTTON STYLES ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: 0.375rem;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'Work Sans', sans-serif;
}
.btn-orange {
  background: #E8611A;
  color: white;
}
.btn-orange:hover {
  background: #d4570f;
}
.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ─── PROSE (for legal pages) ─── */
.prose p {
  margin-bottom: 1rem;
  line-height: 1.75;
}
.prose h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
