/* ============================================================
   Gold Star Plumbing & Heating — Main Stylesheet
   Brand Colors: Navy #1B2A6B | Gold #C9A227 | Dark #0D1B4B
   ============================================================ */

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

:root {
  --navy: #1B2A6B;
  --navy-dark: #0D1B4B;
  --navy-light: #243480;
  --gold: #C9A227;
  --gold-light: #e8c040;
  --gold-dark: #a8851e;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-light: #f0f2f8;
  --gray: #6c7a9c;
  --gray-dark: #3a4560;
  --text: #1a1f36;
  --text-light: #4a5568;
  --red-emergency: #d32f2f;
  --red-light: #fff5f5;
  --shadow: 0 4px 24px rgba(27,42,107,0.10);
  --shadow-lg: 0 8px 40px rgba(27,42,107,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

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

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

/* ============================================================ TOP BAR */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--gold);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar a { color: rgba(255,255,255,0.85); font-size: 0.82rem; display: flex; align-items: center; gap: 5px; }
.top-bar a:hover { color: var(--gold); }
.top-bar .emergency-badge {
  background: var(--red-emergency); color: white; padding: 2px 10px; border-radius: 20px;
  font-weight: 700; font-size: 0.75rem; letter-spacing: 0.5px; text-transform: uppercase;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red { 0%,100% { box-shadow: 0 0 0 0 rgba(211,47,47,0.4); } 50% { box-shadow: 0 0 0 6px rgba(211,47,47,0); } }

/* ============================================================ HEADER */
.site-header {
  background: var(--white);
  padding: 16px 0;
  box-shadow: 0 2px 20px rgba(27,42,107,0.10);
  position: relative;
  z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo-wrap img { height: 70px; width: auto; }
.header-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.header-phone { font-family: 'Oswald', sans-serif; font-size: 1.7rem; color: var(--navy-dark); font-weight: 700; letter-spacing: 1px; }
.header-phone span { color: var(--gold); }
.header-cta-btns { display: flex; gap: 10px; }

/* ============================================================ NAVIGATION */
.main-nav { background: var(--navy); }
.nav-inner { display: flex; align-items: center; }
.nav-menu { display: flex; width: 100%; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block; padding: 14px 18px; color: white; font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.5px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover, .nav-menu > li.active > a { background: var(--gold); color: var(--navy-dark); }
.nav-menu > li.has-dropdown:hover > .dropdown { display: block; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: white; min-width: 240px; box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold); z-index: 999; border-radius: 0 0 var(--radius) var(--radius);
}
.dropdown li a {
  display: block; padding: 10px 20px; color: var(--text); font-size: 0.88rem;
  border-bottom: 1px solid #f0f0f0; transition: all var(--transition);
}
.dropdown li a:hover { background: var(--gray-light); color: var(--gold); padding-left: 26px; }
.dropdown.mega { min-width: 600px; display: none; }
.dropdown.mega.active, .nav-menu > li.has-dropdown:hover > .dropdown.mega { display: grid; grid-template-columns: repeat(3,1fr); }
.dropdown.mega .col-title { font-family: 'Oswald', sans-serif; font-size: 0.9rem; color: var(--navy); padding: 12px 20px 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid var(--gold-light); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: all 0.3s; }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px;
  border-radius: var(--radius); font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px;
  cursor: pointer; border: 2px solid transparent; transition: all var(--transition);
  text-decoration: none;
}
.btn-gold { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,0.4); }
.btn-navy { background: var(--navy); color: white; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-red { background: var(--red-emergency); color: white; border-color: var(--red-emergency); }
.btn-red:hover { background: #b71c1c; border-color: #b71c1c; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(211,47,47,0.4); }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============================================================ HERO */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1e3a8a 100%);
  color: white; padding: 80px 0 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 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='%23C9A227' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px;
  background: white; clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.4); color: var(--gold-light); padding: 6px 16px; border-radius: 20px; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.1; margin-bottom: 20px; color: white; }
.hero h1 .gold { color: var(--gold); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 30px; line-height: 1.7; }
.hero-features { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-feature { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); padding: 8px 14px; border-radius: 6px; font-size: 0.88rem; }
.hero-feature svg { color: var(--gold); flex-shrink: 0; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.trust-item svg { color: var(--gold); }

/* Hero Form Card */
.hero-form-card { background: white; border-radius: var(--radius-lg); padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.hero-form-card h3 { font-size: 1.3rem; color: var(--navy-dark); margin-bottom: 6px; }
.hero-form-card p { font-size: 0.88rem; color: var(--gray); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid #dde2f0; border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif; font-size: 0.9rem; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.15); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-success { display: none; background: #e8f5e9; border: 1px solid #4caf50; border-radius: var(--radius); padding: 16px; text-align: center; color: #2e7d32; font-weight: 600; }

/* ============================================================ SECTIONS */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.section-dark { background: var(--navy-dark); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-navy { background: var(--navy); color: white; }
.section-navy h2, .section-navy h3 { color: white; }
.section-gold { background: var(--gold); }
.section-gray { background: var(--gray-light); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 12px; display: block; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ============================================================ SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: white; border-radius: var(--radius-lg); padding: 32px; border: 1px solid #e8ecf8;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-light); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; background: var(--gray-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--navy); transition: all var(--transition); }
.service-card:hover .service-icon { background: var(--navy); color: var(--gold); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.service-link { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }
.service-link:hover { color: var(--gold); }

/* ============================================================ WHY CHOOSE US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.why-card { text-align: center; padding: 32px 20px; background: rgba(255,255,255,0.05); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.1); }
.why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-card h3 { color: white; font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

/* ============================================================ STATS */
.stats-bar { background: var(--gold); padding: 32px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-item { }
.stat-number { font-family: 'Oswald', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--navy-dark); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--navy); font-weight: 600; margin-top: 4px; }

/* ============================================================ REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.review-card { background: white; border-radius: var(--radius-lg); padding: 28px; border: 1px solid #e8ecf8; box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.93rem; color: var(--text-light); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; flex-shrink: 0; }
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--navy-dark); }
.reviewer-location { font-size: 0.8rem; color: var(--gray); }

/* ============================================================ EMERGENCY CTA */
.emergency-cta { background: linear-gradient(135deg, var(--red-emergency), #b71c1c); color: white; padding: 60px 0; text-align: center; }
.emergency-cta h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: white; margin-bottom: 14px; }
.emergency-cta p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.emergency-cta .phone-big { font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: 2px; color: white; display: block; margin: 20px 0; }

/* ============================================================ COUNTIES SECTION */
.counties-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.county-card { background: white; border-radius: var(--radius); padding: 20px; border: 1.5px solid #e0e6f5; text-align: center; transition: all var(--transition); }
.county-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.county-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.county-card p { font-size: 0.78rem; color: var(--gray); }
.county-card a { color: inherit; }

/* ============================================================ BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card { background: white; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid #e8ecf8; transition: all var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); position: relative; overflow: hidden; }
.blog-card-img .category-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy-dark); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card-img .icon-decor { position: absolute; bottom: -10px; right: 20px; font-size: 5rem; opacity: 0.15; color: white; }
.blog-content { padding: 24px; }
.blog-meta { font-size: 0.78rem; color: var(--gray); margin-bottom: 10px; display: flex; gap: 14px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { color: var(--navy-dark); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 18px; }
.read-more { font-size: 0.82rem; font-weight: 700; font-family: 'Montserrat', sans-serif; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 5px; }
.read-more:hover { color: var(--gold); }

/* ============================================================ INNER PAGE */
.page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 60px 0 50px; color: white; text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: white; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.6); justify-content: center; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }

/* City Page */
.city-content { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.city-sidebar { position: sticky; top: 20px; }
.sidebar-card { background: white; border-radius: var(--radius-lg); border: 1px solid #e0e6f5; overflow: hidden; margin-bottom: 20px; }
.sidebar-card-header { background: var(--navy); color: white; padding: 16px 20px; font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; }
.sidebar-card-body { padding: 20px; }
.sidebar-links li { border-bottom: 1px solid #f0f2f8; }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 0.9rem; color: var(--text); }
.sidebar-links a:hover { color: var(--gold); }
.city-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.city-service-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--gray-light); border-radius: var(--radius); }
.city-service-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.city-service-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.city-service-item p { font-size: 0.82rem; color: var(--text-light); }

/* ============================================================ BLOG PAGE */
.blog-header-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.blog-main { }
.blog-full { padding: 40px 0; }
.blog-full h1 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.blog-full .blog-meta-full { display: flex; gap: 20px; color: var(--gray); font-size: 0.85rem; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 2px solid var(--gray-light); flex-wrap: wrap; }
.blog-body h2 { font-size: 1.5rem; margin: 36px 0 14px; color: var(--navy-dark); }
.blog-body h3 { font-size: 1.15rem; margin: 24px 0 10px; color: var(--navy); }
.blog-body p { margin-bottom: 18px; color: var(--text-light); line-height: 1.8; }
.blog-body ul, .blog-body ol { margin: 14px 0 18px 24px; color: var(--text-light); }
.blog-body ul { list-style: disc; }
.blog-body ol { list-style: decimal; }
.blog-body li { margin-bottom: 8px; line-height: 1.7; }
.blog-callout { background: var(--gray-light); border-left: 4px solid var(--gold); padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 28px 0; }
.blog-callout p { color: var(--text); margin: 0; font-style: italic; }

/* ============================================================ CONTACT / FORM */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 2rem; margin-bottom: 20px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon { width: 48px; height: 48px; background: var(--gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { color: var(--navy-dark); }
.contact-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); margin-bottom: 4px; }
.contact-value { font-size: 1rem; color: var(--navy-dark); font-weight: 600; }
.contact-form-wrap { background: white; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); border: 1px solid #e8ecf8; }

/* ============================================================ FOOTER */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo-wrap { display: inline-block; background: white; border-radius: 10px; padding: 8px 16px; margin-bottom: 18px; }
.footer-logo-wrap img { height: 55px; width: auto; display: block; filter: none; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-heading { font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--gold); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================ POPUP MODAL */
.popup-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,27,75,0.75); z-index: 9999; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: white; border-radius: var(--radius-lg); max-width: 520px; width: 92%; max-height: 90vh;
  overflow-y: auto; box-shadow: 0 30px 80px rgba(0,0,0,0.4); animation: popIn 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}
@keyframes popIn { from { opacity: 0; transform: scale(0.85) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.popup-header { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: white; padding: 24px 28px; position: relative; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.popup-header h3 { font-size: 1.4rem; color: white; margin-bottom: 4px; }
.popup-header p { font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.popup-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--red-emergency); color: white; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.popup-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,0.15); border: none; color: white; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.popup-close:hover { background: rgba(255,255,255,0.3); }
.popup-body { padding: 28px; }

/* ============================================================ MISC */
.check-list { }
.check-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.93rem; color: var(--text-light); }
.check-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.highlight-box { background: var(--gray-light); border-radius: var(--radius-lg); padding: 28px 32px; border-left: 5px solid var(--gold); margin: 28px 0; }
.highlight-box h3 { font-size: 1.15rem; margin-bottom: 10px; }
.phone-link { color: var(--navy); font-weight: 700; font-family: 'Oswald', sans-serif; font-size: 1.2rem; }
.phone-link:hover { color: var(--gold); }
.gold-text { color: var(--gold); }
.navy-text { color: var(--navy); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }

/* ============================================================ MOBILE NAV */
.mobile-menu { display: none; background: var(--navy-dark); padding: 16px 20px; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu > ul > li > a { display: block; color: white; padding: 12px 0; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu .sub-links { display: none; padding: 8px 0 8px 16px; }
.mobile-menu .sub-links.open { display: block; }
.mobile-menu .sub-links a { display: block; color: rgba(255,255,255,0.7); padding: 7px 0; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu .sub-links a:hover { color: var(--gold); }
.mobile-cta-bar { display: none; background: var(--gold); text-align: center; padding: 12px; font-family: 'Oswald', sans-serif; font-size: 1.1rem; color: var(--navy-dark); font-weight: 700; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .city-content { grid-template-columns: 1fr; }
  .city-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .top-bar-left { display: none; }
  .header-phone { font-size: 1.3rem; }
  .header-cta-btns { display: none; }
  .nav-menu { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .city-services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-cta-bar { display: block; }
  .blog-header-wrap { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 40px; }
  .hero::after { height: 40px; }
  .section { padding: 48px 0; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-cta-group { flex-direction: column; }
  .btn-lg { padding: 14px 24px; font-size: 0.9rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
