/* =============================================
   Böcek İlaçlama İzmir — Main Stylesheet
   Design: Professional & Trustworthy
   Palette: Deep Forest Green + Warning Orange
   ============================================= */

:root {
  --green-dark:   #0d3d1f;
  --green-mid:    #145a2e;
  --green-light:  #1e7c43;
  --green-accent: #28a457;
  --orange:       #f57c00;
  --orange-light: #ff9800;
  --orange-pale:  #fff3e0;
  --cream:        #f9f7f0;
  --white:        #ffffff;
  --gray-light:   #f4f4f4;
  --gray:         #888888;
  --text:         #1a2310;
  --text-light:   #4a5240;
  --shadow:       0 4px 20px rgba(13,61,31,.12);
  --shadow-md:    0 8px 32px rgba(13,61,31,.18);
  --radius:       12px;
  --radius-lg:    20px;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
a { color: var(--green-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ---- TOPBAR ---- */
.topbar {
  background: var(--green-dark);
  color: #b9e0c4;
  font-size: 13px;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-phone {
  color: var(--orange-light);
  font-weight: 700;
  font-size: 14px;
}
.topbar-phone:hover { color: var(--white); }

/* ---- HEADER ---- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text) !important;
}
.logo-icon { font-size: 32px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
}
.logo-text span {
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.main-nav > a, .nav-dropdown > a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: background .2s, color .2s;
}
.main-nav > a:hover, .nav-dropdown > a:hover {
  background: var(--gray-light);
  color: var(--green-light);
}
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--orange-light) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  z-index: 1000;
  padding: 8px 0;
}
.dropdown-wide {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  min-width: 400px;
}
.dropdown-menu.dropdown-wide { display: none; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.nav-dropdown:hover .dropdown-wide { display: grid; }
.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--text);
  font-weight: 500;
  transition: background .15s;
}
.dropdown-menu a:hover { background: var(--cream); color: var(--green-light); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--green-dark);
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  color: var(--white);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  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.04'%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: 2; max-width: 800px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--orange-light); }
.hero-desc {
  font-size: 18px;
  opacity: .9;
  margin-bottom: 32px;
  max-width: 620px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: var(--white) !important;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,.15);
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,.4);
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  transition: background .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,.25); }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--orange-light);
  display: block;
}
.stat-label { font-size: 13px; opacity: .8; }

/* ---- SERVICES GRID ---- */
.section { padding: 70px 0; }
.section-alt { background: var(--cream); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 10px;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 48px;
  font-size: 16px;
}
.section-subtitle::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 14px auto 0;
  border-radius: 2px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service-card .svc-icon {
  font-size: 48px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.1));
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.3;
}
.service-card .svc-link {
  display: inline-block;
  background: var(--green-light);
  color: var(--white) !important;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
  transition: background .2s;
}
.service-card .svc-link:hover { background: var(--orange); }

/* ---- DISTRICTS GRID ---- */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.district-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-dark);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border: 2px solid transparent;
  transition: all .25s;
  display: block;
}
.district-card:hover {
  border-color: var(--green-light);
  background: var(--green-dark);
  color: var(--white) !important;
  transform: translateY(-3px);
}
.district-card .d-icon { font-size: 22px; display: block; margin-bottom: 6px; }

/* ---- CONTENT PAGE ---- */
.breadcrumb {
  background: var(--cream);
  padding: 14px 0;
  font-size: 13px;
  color: var(--gray);
  border-bottom: 1px solid #e8e8e8;
}
.breadcrumb a { color: var(--green-light); }
.breadcrumb span { color: var(--gray); }

.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.content-main h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
}
.content-main h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-mid);
  margin: 24px 0 10px;
}
.content-main p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.85;
  font-size: 15.5px;
}
.content-main ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
}
.content-main ul li::before {
  content: '✅';
  position: absolute;
  left: 0;
  font-size: 14px;
}

/* SIDEBAR */
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid #e8ede8;
}
.sidebar-card-header {
  background: var(--green-dark);
  color: var(--white);
  padding: 16px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
}
.sidebar-card-body { padding: 20px; }
.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white) !important;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 17px;
  text-align: center;
  margin-bottom: 12px;
  transition: background .2s;
}
.call-btn:hover { background: var(--orange-light); }
.wa-btn-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: var(--white) !important;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: background .2s;
}
.wa-btn-sidebar:hover { background: #1aaa50; }
.sidebar-services a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: background .15s;
  border-bottom: 1px solid #f0f0f0;
}
.sidebar-services a:hover { background: var(--cream); color: var(--green-light); }
.sidebar-services a:last-child { border-bottom: none; }

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.feature-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green-light);
  transition: transform .25s;
}
.feature-box:hover { transform: translateY(-4px); }
.feature-box .feat-icon { font-size: 36px; margin-bottom: 14px; }
.feature-box h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-size: 15px;
}
.feature-box p { font-size: 14px; color: var(--text-light); }

/* FAQ */
.faq-list { margin-top: 16px; }
.faq-item {
  border: 1px solid #e0e8e0;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--green-dark);
  user-select: none;
}
.faq-q::after { content: '▼'; font-size: 12px; color: var(--orange); transition: transform .25s; }
.faq-item.open .faq-q::after { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.8;
  background: var(--cream);
}
.faq-item.open .faq-a { display: block; }

/* OTHER SERVICES DISTRICT */
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.other-svc-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  border: 2px solid transparent;
  transition: all .2s;
}
.other-svc-card:hover { border-color: var(--orange); color: var(--green-dark) !important; }

/* DISTRICT PAGE - service list */
.ilce-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.ilce-svc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--green-light);
  transition: all .25s;
}
.ilce-svc-item:hover { border-left-color: var(--orange); transform: translateX(4px); }
.ilce-svc-item .isvc-icon { font-size: 30px; }
.ilce-svc-item .isvc-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--green-dark);
}
.ilce-svc-item .isvc-text span { font-size: 12.5px; color: var(--text-light); }

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.why-card {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.why-card .why-icon { font-size: 40px; margin-bottom: 12px; }
.why-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.why-card p { font-size: 13px; color: var(--text-light); }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #e65c00 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  margin-bottom: 12px;
}
.cta-banner p { font-size: 17px; opacity: .9; margin-bottom: 30px; }
.cta-phone {
  display: inline-block;
  background: var(--white);
  color: var(--orange) !important;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 900;
  padding: 16px 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  transition: transform .2s;
}
.cta-phone:hover { transform: scale(1.04); }

/* FOOTER */
.site-footer {
  background: var(--green-dark);
  color: #c5dcc8;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo .logo-icon { font-size: 28px; }
.site-footer p { font-size: 14px; line-height: 1.7; }
.footer-badges { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.footer-badges span { font-size: 13px; font-weight: 600; color: #8dba97; }
.site-footer h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 15px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-mid);
}
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a { color: #a8cead; font-size: 13.5px; transition: color .2s; }
.site-footer ul a:hover { color: var(--orange-light); }
.footer-districts { columns: 2; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.phone-btn { background: var(--orange); color: var(--white) !important; }
.wa-btn { background: #25d366; color: var(--white) !important; }
.footer-hours { font-size: 13px; }
.footer-bottom {
  background: rgba(0,0,0,.25);
  margin-top: 40px;
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: #7a9e80;
}
.footer-bottom p { margin-bottom: 4px; }

/* ====== PHOTO BANNER — Ana Sayfa (assets/img/ana-sayfa.jpg) ====== */
.photo-banner {
  background: var(--cream);
  padding: 0 0 56px;
}
.photo-banner-inner { position: relative; }
.photo-banner-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo-banner-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-banner-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,61,31,.85) 0%, transparent 100%);
  padding: 40px 32px 28px;
}
.photo-banner-caption {
  max-width: 680px;
}
.photo-caption-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}
.photo-banner-caption p {
  color: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ====== PHOTO SIMPLE — İlçe Sayfası (assets/img/ilce-2.jpg) ====== */
.photo-banner-simple {
  padding: 0 0 56px;
  background: var(--white);
}
.photo-simple-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-simple-figure img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-simple-figure figcaption {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--green-dark);
  color: #c5dcc8;
  padding: 14px 22px;
  font-size: 14px;
  line-height: 1.6;
}
.photo-simple-figure figcaption span:first-child {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ====== İLÇE UZUN METİN ====== */
.ilce-long-text {
  max-width: 860px;
  margin: 0 auto 36px;
  color: var(--text-light);
  line-height: 1.9;
}
.ilce-long-text p {
  margin-bottom: 16px;
  font-size: 15.5px;
}

/* ====== FIXED BOTTOM FULL-WIDTH CALL BUTTON ====== */
.bottom-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--orange);
  border-top: 3px solid #c75000;
  height: 62px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
  text-decoration: none;
  transition: background .2s;
  cursor: pointer;
}
.bottom-call-bar:hover {
  background: var(--orange-light);
  color: var(--white);
}
.bottom-call-icon {
  font-size: 26px;
  animation: ring 2.5s infinite;
}
@keyframes ring {
  0%,100% { transform: rotate(0deg); }
  10%      { transform: rotate(-18deg); }
  20%      { transform: rotate(18deg); }
  30%      { transform: rotate(0deg); }
}
.bottom-call-label {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  color: var(--white);
}
.bottom-call-label strong {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .3px;
}
.bottom-call-label small {
  font-size: 12px;
  opacity: .88;
  font-weight: 600;
  letter-spacing: .5px;
}

/* Body padding so footer not hidden behind bar */
body { padding-bottom: 65px; }

@media (max-width: 600px) {
  .bottom-call-label strong { font-size: 16px; }
  .bottom-call-label small  { font-size: 11px; }
  .bottom-call-bar { height: 56px; }
  body { padding-bottom: 58px; }
}

/* SCHEMA / Breadcrumb visual */
.schema-breadcrumb { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.schema-breadcrumb a { color: var(--green-light); font-weight: 500; }
.schema-breadcrumb .sep { color: var(--gray); }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green-accent);
}
.review-stars { color: var(--orange); font-size: 18px; margin-bottom: 10px; }
.review-text { font-size: 14.5px; color: var(--text-light); margin-bottom: 14px; font-style: italic; }
.review-author { font-weight: 700; font-size: 14px; color: var(--green-dark); }
.review-location { font-size: 12px; color: var(--gray); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}
@media (max-width: 768px) {
  .hamburger { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .nav-dropdown { position: static; }
  .dropdown-menu, .dropdown-wide { position: static; box-shadow: none; border: none; display: block !important; }
  .dropdown-wide { grid-template-columns: 1fr; display: flex !important; flex-direction: column; }
  .site-header { position: relative; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 50px 0 40px; }
  .sticky-cta { bottom: 14px; right: 14px; }
  .features-grid, .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .districts-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
