/* ================================================================
   BLUE SKY PLUMBING — MASTER STYLESHEET v4 FINAL
   Fully matches all HTML classes. Mobile-first. SEO-ready.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600;700&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --blue:        #1B9DD9;
  --blue-dark:   #1278B0;
  --blue-darker: #0D5A8A;
  --blue-light:  #EBF6FD;
  --dark:        #111C28;
  --dark2:       #1A2A3A;
  --gray:        #4A5568;
  --gray-light:  #718096;
  --border:      #E2ECF4;
  --bg:          #F7FAFD;
  --white:       #FFFFFF;
  --red:         #DC2626;
  --green:       #16A34A;
  --orange:      #F59E0B;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow:      0 4px 20px rgba(27,157,217,0.18);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.15);
  --radius:      10px;
  --radius-lg:   16px;
  --t:           all 0.3s ease;
  --font-head:   'Oswald', sans-serif;
  --font-body:   'Open Sans', sans-serif;
  --font-accent: 'Barlow Condensed', sans-serif;
  /* Aliases */
  --blue-primary:  #1B9DD9;
  --font-heading:  'Oswald', sans-serif;
  --gray-200:      #E2ECF4;
  --gray-600:      #4A5568;
  --gray-700:      #111C28;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--t); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; padding: 0; margin: 0; }
input, select, textarea, button { font-family: var(--font-body); }

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

/* ====================================================
   TOP BAR
   ==================================================== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
  padding: 9px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-links { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.top-bar-links a { color: rgba(255,255,255,0.72); font-size: 0.8rem; }
.top-bar-links a:hover { color: var(--blue); }
.top-bar-links span { color: rgba(255,255,255,0.6); }
.top-bar-badge {
  background: var(--red);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.72rem;
  animation: pulsered 2s infinite;
}
@keyframes pulsered { 0%,100%{opacity:1} 50%{opacity:0.75} }

/* ====================================================
   HEADER
   ==================================================== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  position: relative;
}
/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-wrap img { height: 56px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--dark); line-height: 1.1; }
.logo-tagline { font-size: 0.67rem; color: var(--blue); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-top: 2px; }
/* Header phone */
.header-phone { display: flex; flex-direction: column; align-items: flex-end; }
.header-phone-label { font-size: 0.68rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.header-phone-number { font-family: var(--font-head); font-size: 1.1rem; color: var(--dark); font-weight: 700; }
.header-phone-number:hover { color: var(--blue); }
/* Header CTA button */
.header-cta-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--blue);
  color: var(--white) !important;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--t);
}
.header-cta-btn:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
/* Mobile toggle button */
.mobile-menu-toggle, .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: 6px;
  flex-shrink: 0;
}
.mobile-menu-toggle span, .nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--t);
}

/* ====================================================
   NAVIGATION (desktop — second row bar inside header)
   ==================================================== */
.main-nav {
  background: var(--dark2);
  display: block;
}
.main-nav .container { padding-top: 0; padding-bottom: 0; }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 0;
}
.nav-item { position: relative; }
.nav-item > a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  padding: 9px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--t);
  white-space: nowrap;
}
.nav-item > a:hover, .nav-item.active > a {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
/* Dropdown menus */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--t);
  z-index: 500;
  border-top: 3px solid var(--blue);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: 6px;
  border-left: 3px solid transparent;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown a:hover { color: var(--blue); background: var(--blue-light); border-left-color: var(--blue); }
/* Emergency nav button */
.nav-emergency-btn {
  margin-left: auto;
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  animation: pulsered 2s infinite;
}
.nav-emergency-btn:hover { background: #B91C1C !important; color: var(--white) !important; }
/* Mobile nav panel */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 3px solid var(--blue);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.mobile-nav a:hover { color: var(--blue); background: var(--blue-light); padding-left: 28px; }

/* ====================================================
   HERO
   ==================================================== */
.hero {
  background: linear-gradient(135deg, #091520 0%, #0D2137 40%, #1278B0 80%, #1B9DD9 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(27,157,217,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner, .hero-content-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}
/* hero-content is the left column text inside hero-inner */
.hero-content { /* text column */ }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.hero h1 span { color: var(--orange); display: block; }
.hero-subtitle, .hero-sub {
  font-size: 1.03rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.78;
}
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-feature-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.hero-buttons, .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
/* Hero form card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.hero-form-card h3 {
  font-family: var(--font-head);
  font-size: 1.22rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.hero-form-card p { font-size: 0.85rem; color: var(--gray); margin-bottom: 18px; }
.emergency-tag {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 18px;
}

/* ====================================================
   TRUST BAR
   ==================================================== */
.trust-bar { background: var(--dark2); padding: 14px 0; }
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.8);
  font-size: 0.84rem;
  font-weight: 600;
}
.trust-icon { font-size: 1.1rem; color: var(--orange); }

/* ====================================================
   EMERGENCY BANNER
   ==================================================== */
.emergency-banner {
  background: var(--red);
  padding: 16px 0;
  text-align: center;
}
.emergency-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.emergency-banner h2 { color: var(--white); font-family: var(--font-head); font-size: 1.5rem; }
.emergency-banner p { color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.emergency-banner strong { color: var(--white); font-family: var(--font-accent); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.emergency-number {
  background: var(--white);
  color: var(--red) !important;
  padding: 9px 24px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 1.05rem;
  font-family: var(--font-head);
  display: inline-block;
  transition: var(--t);
}
.emergency-number:hover { background: var(--dark); color: var(--white) !important; }

/* ====================================================
   BUTTONS
   ==================================================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
  transition: var(--t); border: none; cursor: pointer;
}
.btn-primary:hover { background: #D97706; color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(245,158,11,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
  transition: var(--t); border: 2px solid rgba(255,255,255,0.35); cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); color: var(--white); transform: translateY(-3px); }
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
  transition: var(--t); border: none; cursor: pointer;
}
.btn-orange:hover { background: #D97706; color: var(--white); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(245,158,11,0.4); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--blue);
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
  transition: var(--t);
}
.btn-white:hover { background: var(--dark); color: var(--white); transform: translateY(-3px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white;
  padding: 14px 28px; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.55); font-family: var(--font-head);
  font-weight: 700; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
  transition: var(--t);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; transform: translateY(-3px); }
.btn, .btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  padding: 12px 24px; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.5px;
  transition: var(--t); border: 2px solid var(--blue); cursor: pointer;
}
.btn:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: white; }

/* ====================================================
   SECTIONS
   ==================================================== */
.section, .section-pad { padding: 80px 0; }
.section-gray, .bg-light { background: var(--bg); }
.section-dark { background: var(--dark); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-desc, .section-dark .section-sub { color: rgba(255,255,255,0.72); }
.section-title, h2.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.section-title span { color: var(--blue); }
.section-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(27,157,217,0.2);
}
.section-desc, .section-sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}
.text-center { text-align: center; }

/* ====================================================
   FORMS
   ==================================================== */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.74rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 0.92rem; color: var(--dark); background: var(--bg);
  transition: var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,157,217,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit-btn {
  width: 100%; background: var(--blue); color: var(--white);
  border: none; padding: 14px; border-radius: var(--radius);
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: var(--t);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit-btn:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.form-success-msg, .form-success {
  display: none;
  background: #DCFCE7; border: 2px solid #16A34A;
  border-radius: var(--radius); padding: 16px;
  text-align: center; color: #166534;
  font-weight: 700; font-size: 0.9rem; margin-top: 14px;
}
.contact-form { width: 100%; }
.contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

/* ====================================================
   SERVICES GRID
   ==================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  border: 2px solid transparent; transition: var(--t);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
}
.service-card:hover { border-color: var(--blue); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon, .service-card-icon, .svc-icon {
  width: 58px; height: 58px;
  background: var(--blue-light); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--blue); margin-bottom: 18px;
  transition: var(--t);
}
.service-card:hover .service-icon,
.service-card:hover .service-card-icon,
.service-card:hover .svc-icon {
  background: var(--blue); color: var(--white);
}
.service-card h3, .service-card-title {
  font-family: var(--font-head); font-size: 1.1rem;
  color: var(--dark); margin-bottom: 10px; letter-spacing: 0.5px;
}
.service-card p, .service-card-desc {
  font-size: 0.87rem; color: var(--gray); line-height: 1.72; margin-bottom: 18px;
}
.service-link, .service-card-link {
  font-size: 0.8rem; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 5px; transition: var(--t);
}
.service-link:hover, .service-card-link:hover { gap: 10px; }

/* ====================================================
   WHY CHOOSE US
   ==================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--t);
  text-align: center;
}
.section-dark .why-card { background: rgba(255,255,255,0.05); }
.section-gray .why-card, .why-card { background: var(--white); border: 2px solid var(--border); }
.why-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.7rem;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(27,157,217,0.3);
}
.why-card h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; }
.section-dark .why-card h3 { color: var(--white); }
.why-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.7; }
.section-dark .why-card p { color: rgba(255,255,255,0.7); }

/* ====================================================
   STATS
   ==================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.stat-card {
  background: var(--blue); border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center; color: var(--white);
  box-shadow: 0 4px 20px rgba(27,157,217,0.3);
  transition: var(--t);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(27,157,217,0.4); }
.stat-number {
  font-family: var(--font-accent); font-size: 2.6rem; font-weight: 800;
  letter-spacing: 1px; display: block; line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 0.78rem; opacity: 0.9; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
}
.counter { display: inline-block; }

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--t);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.92rem; color: var(--gray); line-height: 1.8;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; background: var(--blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testimonial-location { font-size: 0.77rem; color: var(--gray-light); margin-top: 2px; }

/* ====================================================
   VIDEO
   ==================================================== */
.video-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px;
}
.video-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 16/9;
}
.video-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

/* ====================================================
   BLOG CARDS
   ==================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 40px;
}
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--t);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--blue-darker), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,0.2);
  position: relative;
}
.blog-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: white;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 20px;
}
.blog-card-body { padding: 22px; }
.blog-meta { font-size: 0.74rem; color: var(--gray-light); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-card h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--blue); }
.blog-card-title { font-family: var(--font-head); font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.blog-card-title a { color: var(--dark); }
.blog-card-title a:hover { color: var(--blue); }
.blog-card p, .blog-card-excerpt { font-size: 0.85rem; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.blog-read-more, .blog-card-link {
  font-size: 0.78rem; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 5px; transition: var(--t);
}
.blog-read-more:hover, .blog-card-link:hover { gap: 10px; }
/* Blog single */
.blog-intro {
  font-size: 1.04rem; color: var(--gray); line-height: 1.85;
  border-left: 4px solid var(--blue); padding-left: 20px;
  margin-bottom: 28px; font-style: italic;
}
.blog-single-content h2 { font-family: var(--font-head); font-size: 1.55rem; color: var(--dark); margin: 28px 0 12px; }
.blog-single-content p { font-size: 0.95rem; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }

/* ====================================================
   CTA BANNER
   ==================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-darker), var(--blue));
  padding: 70px 0; text-align: center;
}
.cta-banner h2 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 30px; }
.cta-banner .actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ====================================================
   PAGE HEADER (inner pages)
   ==================================================== */
.page-header {
  background: linear-gradient(135deg, #091520 0%, #0D2137 40%, #1278B0 80%, #1B9DD9 100%);
  padding: 55px 0 48px; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
}
.page-header .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  margin-bottom: 14px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.35); }
.page-header h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: white; font-weight: 700;
  letter-spacing: 1px; margin-bottom: 12px; line-height: 1.1;
}
.page-header p { color: rgba(255,255,255,0.82); font-size: 1rem; max-width: 620px; line-height: 1.72; }
.meta-tag {
  display: inline-block; background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88); padding: 5px 14px;
  border-radius: 20px; font-size: 0.76rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2); margin: 4px 4px 0 0;
}
/* Also used as page-hero on old service pages */
.page-hero, .service-hero {
  background: linear-gradient(135deg, #091520 0%, #0D2137 40%, #1278B0 80%, #1B9DD9 100%);
  padding: 55px 0 48px; color: white;
}
.page-hero-content, .page-hero-overlay { position: relative; z-index: 2; }
.page-hero h1, .service-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: white; font-weight: 700; margin-bottom: 12px;
}
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 620px; }

/* ====================================================
   SIDEBAR LAYOUT
   ==================================================== */
.content-with-sidebar, .content-2col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: flex-start;
}
.main-content, .content-main { min-width: 0; }
.page-sidebar, .content-sidebar { min-width: 0; }
.main-content h2, .content-main h2 {
  font-family: var(--font-head); font-size: 1.75rem;
  color: var(--dark); margin: 28px 0 12px;
}
.main-content h2:first-child, .content-main h2:first-child { margin-top: 0; }
.main-content h3, .content-main h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--dark); margin: 24px 0 10px; }
.main-content p, .content-main p { font-size: 0.95rem; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.main-content ul, .content-main ul { margin: 0 0 20px; }
.main-content ul li, .content-main ul li {
  font-size: 0.93rem; color: var(--gray);
  padding: 7px 0 7px 24px; position: relative; line-height: 1.65;
  border-bottom: 1px solid var(--border);
}
.main-content ul li:last-child, .content-main ul li:last-child { border-bottom: none; }
.main-content ul li::before, .content-main ul li::before { content: '✓'; color: var(--blue); font-weight: 700; position: absolute; left: 0; }
.check-list { margin: 0 0 20px; }
.check-list li { font-size: 0.93rem; color: var(--gray); padding: 7px 0 7px 24px; position: relative; line-height: 1.65; border-bottom: 1px solid var(--border); }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; color: var(--blue); font-weight: 700; position: absolute; left: 0; }
/* Sidebar widgets */
.sidebar-widget, .sidebar-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); margin-bottom: 24px;
}
.sidebar-widget h4, .sidebar-card h4 {
  font-family: var(--font-head); font-size: 1rem; color: var(--dark);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--blue); letter-spacing: 0.5px;
}
.sidebar-phone {
  display: flex; align-items: center; gap: 10px;
  background: var(--blue); color: white; padding: 14px 16px;
  border-radius: var(--radius); font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; transition: var(--t);
}
.sidebar-phone:hover { background: var(--blue-dark); color: white; transform: translateY(-2px); }
.sidebar-links, .sidebar-card ul { margin: 0; }
.sidebar-links li, .sidebar-card ul li { margin-bottom: 6px; }
.sidebar-links a, .sidebar-card ul a {
  font-size: 0.87rem; color: var(--gray);
  display: flex; align-items: center; gap: 6px;
  padding: 6px 0; border-bottom: 1px solid var(--border); transition: var(--t);
}
.sidebar-links a:hover, .sidebar-card ul a:hover { color: var(--blue); padding-left: 6px; }
.sidebar-links li:last-child a, .sidebar-card ul li:last-child a { border-bottom: none; }
/* City services list */
.city-services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.city-service-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: var(--blue-light);
  border-radius: var(--radius); font-size: 0.84rem;
  font-weight: 600; color: var(--blue-darker);
  border: 1px solid rgba(27,157,217,0.2);
}

/* ====================================================
   PAGE LAYOUT (simple two-col for about/contact/blog)
   ==================================================== */
.page-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: flex-start; }
.page-main { min-width: 0; }
.page-main h2 { font-family: var(--font-head); font-size: 1.7rem; color: var(--dark); margin: 28px 0 12px; }
.page-main h2:first-child { margin-top: 0; }
.page-main p { font-size: 0.95rem; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }

/* County cards grid on location pages */
.county-grid, .counties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.county-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; border: 2px solid var(--border); transition: var(--t);
}
.county-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.county-card h3 { font-family: var(--font-head); font-size: 1rem; color: var(--dark); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--blue); }
.county-card ul li { margin-bottom: 4px; }
.county-card ul li a { font-size: 0.84rem; color: var(--gray); display: flex; align-items: center; gap: 5px; padding: 2px 0; }
.county-card ul li a::before { content: '▸'; color: var(--blue); font-size: 0.7rem; }
.county-card ul li a:hover { color: var(--blue); padding-left: 4px; }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer { background: #0A1421; color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin: 16px 0 20px; }
.footer-brand img, .footer-logo { height: 52px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a, .social-links a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--t);
}
.footer-social a:hover, .social-links a:hover { background: var(--blue); color: white; transform: translateY(-2px); }
.footer-col h4 {
  font-family: var(--font-head); font-size: 0.92rem; color: white;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--blue);
}
.footer-links { margin: 0; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; transition: var(--t); }
.footer-links a::before { content: '▸'; color: var(--blue); font-size: 0.65rem; }
.footer-links a:hover { color: var(--blue); padding-left: 5px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.footer-contact-item .icon { color: var(--blue); flex-shrink: 0; font-size: 1rem; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--blue); }

/* ====================================================
   FLOATING CALL BUTTON
   ==================================================== */
.floating-call-btn, .float-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  background: var(--green); color: white;
  padding: 13px 22px; border-radius: 30px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(22,163,74,0.4); transition: var(--t);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.floating-call-btn:hover, .float-call:hover { background: #15803D; color: white; transform: translateY(-3px); }

/* ====================================================
   POPUP MODAL
   ==================================================== */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px); z-index: 10000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: var(--t);
}
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-box {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 500px; width: 100%; padding: 38px 32px;
  position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  transform: scale(0.92) translateY(20px); transition: var(--t);
}
.popup-overlay.active .popup-box { transform: scale(1) translateY(0); }
.popup-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 1.4rem;
  cursor: pointer; color: var(--gray-light); transition: var(--t); line-height: 1; padding: 4px;
}
.popup-close:hover { color: var(--red); transform: rotate(90deg); }
.popup-badge {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
}
.popup-box h2 { font-family: var(--font-head); font-size: 1.7rem; color: var(--dark); margin-bottom: 8px; }
.popup-box p { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; line-height: 1.65; }
.popup-icon {
  width: 56px; height: 56px; background: var(--blue);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white; margin: 0 auto 16px;
}

/* ====================================================
   FAQ
   ==================================================== */
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item { background: var(--white); border-radius: var(--radius); border: 2px solid var(--border); margin-bottom: 10px; overflow: hidden; transition: var(--t); }
.faq-item.open { border-color: var(--blue); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; font-family: var(--font-head); font-size: 1rem; color: var(--dark); user-select: none; }
.faq-q .icon { width: 28px; height: 28px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 1.1rem; flex-shrink: 0; transition: var(--t); }
.faq-item.open .faq-q .icon { background: var(--blue); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 22px; }
.faq-a p { font-size: 0.9rem; color: var(--gray); line-height: 1.8; padding-bottom: 18px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ====================================================
   SITEMAP
   ==================================================== */
.sitemap-section { margin-bottom: 40px; }
.sitemap-section h2 { font-family: var(--font-head); font-size: 1.3rem; color: var(--dark); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--blue); }
.sitemap-list { columns: 2; column-gap: 20px; }
.sitemap-list li { padding: 4px 0; border-bottom: 1px solid var(--border); break-inside: avoid; }
.sitemap-list a { font-size: 0.87rem; color: var(--gray); }
.sitemap-list a:hover { color: var(--blue); }

/* ====================================================
   REVEAL ANIMATION
   ==================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ====================================================
   RESPONSIVE — TABLET (≤1024px)
   ==================================================== */
@media (max-width: 1024px) {
  .hero-inner, .hero-content-wrap { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 540px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .content-with-sidebar, .content-2col { grid-template-columns: 1fr; }
  .page-layout { grid-template-columns: 1fr; }
}

/* ====================================================
   RESPONSIVE — MOBILE (≤768px)
   ==================================================== */
@media (max-width: 768px) {
  .section, .section-pad { padding: 52px 0; }
  /* Nav */
  .main-nav .nav-inner { display: none; } /* Hide desktop nav items */
  .mobile-menu-toggle, .nav-toggle { display: flex; }
  .header-cta-btn { font-size: 0.8rem; padding: 9px 14px; }
  .header-phone { display: none; }
  /* Hero */
  .hero { padding: 44px 0 36px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-buttons, .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-orange { justify-content: center; width: 100%; }
  .hero-features { display: none; }
  /* Trust bar */
  .trust-bar-inner { gap: 14px; justify-content: flex-start; }
  /* Grids */
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .city-services-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Floating btn */
  .floating-call-btn, .float-call { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.88rem; }
  /* Sitemap */
  .sitemap-list { columns: 1; }
}

/* ====================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ==================================================== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-form-card { padding: 22px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .popup-box { padding: 26px 18px; }
  .top-bar-links { gap: 10px; }
}

/* ====================================================
   DESKTOP NAV SHOW (force visible on desktop)
   ==================================================== */
@media (min-width: 769px) {
  .main-nav .nav-inner { display: flex !important; }
  .mobile-menu-toggle, .nav-toggle { display: none !important; }
  .mobile-nav { display: none !important; }
}

/* ====================================================
   UTILITIES
   ==================================================== */
.text-blue { color: var(--blue); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-24 { margin-bottom: 24px; }
.fw-700 { font-weight: 700; }
.font-head { font-family: var(--font-head); }
.icon { font-size: 1.1rem; }

@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ====================================================
   SERVICE PAGES — Additional Legacy Classes
   ==================================================== */

/* Old nav structure on service pages */
.site-header .header-inner { display: flex; align-items: center; gap: 16px; padding: 14px 20px; max-width: 1200px; margin: 0 auto; }
.logo-link { flex-shrink: 0; }
.logo-img { height: 56px; width: auto; }
.main-nav ul { display: flex; align-items: center; gap: 2px; list-style: none; padding: 0; margin: 0; }
.main-nav ul li { position: relative; }
.main-nav ul li > a { display: block; font-family: var(--font-body); font-size: 0.84rem; font-weight: 700; color: rgba(255,255,255,0.88); padding: 9px 12px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.4px; transition: var(--t); white-space: nowrap; }
.main-nav ul li > a:hover { color: white; background: rgba(255,255,255,0.1); }
.main-nav ul li.has-dropdown > ul.dropdown { display: flex; flex-direction: column; }
.nav-cta { background: var(--red) !important; color: white !important; padding: 9px 18px !important; border-radius: 8px !important; font-weight: 800 !important; animation: pulsered 2s infinite; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
  border-radius: 6px; flex-shrink: 0;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--t); }

/* Old hero styles */
.service-hero, .page-hero {
  background: linear-gradient(135deg, #091520 0%, #0D2137 40%, #1278B0 80%, #1B9DD9 100%);
  padding: 60px 0 50px; position: relative; overflow: hidden; color: white;
}
.service-hero .container, .page-hero .container { position: relative; z-index: 2; }
.service-hero h1, .page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.2rem); color: white; font-weight: 700; margin-bottom: 14px; line-height: 1.1; letter-spacing: 1px; }
.service-hero p, .hero-sub, .page-hero p { color: rgba(255,255,255,0.85); font-size: 1rem; max-width: 620px; line-height: 1.72; margin-bottom: 24px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Old service content layout */
.content-2col { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: flex-start; }
.content-main { min-width: 0; }
.content-sidebar { min-width: 0; }
.content-main h2 { font-family: var(--font-head); font-size: 1.75rem; color: var(--dark); margin: 28px 0 12px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--dark); margin: 22px 0 10px; }
.content-main p { font-size: 0.95rem; color: var(--gray); line-height: 1.85; margin-bottom: 16px; }
.sidebar-card.emergency { background: var(--dark); color: white; }
.sidebar-card.emergency h4 { color: white; border-bottom-color: var(--blue); }

/* Old section classes */
.section-pad { padding: 80px 0; }
.bg-light { background: var(--bg); }
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--dark); line-height: 1.15; margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--gray); line-height: 1.8; max-width: 680px; margin: 0 auto; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav ul { display: none; }
  .main-nav ul.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.15); border-top: 3px solid var(--blue); }
  .main-nav ul li > a { color: var(--dark); }
  .content-2col { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
@media (min-width: 769px) {
  .hamburger { display: none !important; }
  .main-nav ul { display: flex !important; }
}
