/* ============================================================
   NEXT LEVEL PLUMBING NJ — Professional Stylesheet
     Color Palette:
    Dark Blue:  #0A3D62   (header/footer/trust)
    Light Blue: #3498DB   (buttons, links, accents)
    Bg:         #FFFFFF
    Text:   #1A2332
============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:         #0A3D62;
  --navy-light:   #145A86;
  --blue:         #3498DB;
  --blue-dark:    #2D84BF;
  --blue-light:   #5DADE2;
  --orange:       #3498DB;
  --orange-bright:#5DADE2;
  --green:        #3498DB;
  --gray-bg:      #FFFFFF;
  --gray-border:  #E2E8F0;
  --gray-soft:    #EEF4FF;
  --text-main:    #1A2332;
  --text-muted:   #5A6A7E;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --transition:   0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--gray-bg);
  color: var(--text-main);
  line-height: 1.65;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  line-height: 1.22;
  color: var(--navy);
  font-weight: 700;
}

/* ===== EMERGENCY TOP BAR ===== */
.emergency-bar {
  background: #0A3D62;
  color: white;
  text-align: center;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.emergency-bar a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}

/* ===== STICKY NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0A3D62;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 2px 16px rgba(9, 18, 31, 0.2);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 0 182px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-height: 72px;
  position: relative;
}
.navbar-logo {
  background: rgba(255,255,255,0.98);
  border-radius: 16px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 18px rgba(7, 18, 34, 0.22);
  border: 1px solid rgba(255,255,255,0.72);
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.navbar-logo img {
    height: 104px;
  width: auto;
  filter: none;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.navbar-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 16px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.015em;
  white-space: nowrap;
}
.navbar-links a:hover,
.navbar-links a.is-active {
  background: rgba(255,255,255,0.15);
  color: white;
}
.navbar-cta-btn {
  background: var(--orange);
  color: white !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.navbar-cta-btn:hover {
  background: var(--orange-bright) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: white;
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0D2137 0%, #1A3A5C 55%, #1565C0 100%);
  color: white;
  padding: 100px 28px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 49%, var(--gray-bg) 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 3.2rem;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  font-weight: 800;
}
.hero h1 span { color: #9ED2F2; }
.hero p {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.85);
  max-width: 660px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-phone {
  display: block;
  margin-top: 32px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}
.hero-phone strong {
  color: #9ED2F2;
  font-size: 1.1rem;
  letter-spacing: normal;
}

/* ===== BUTTONS ===== */
.btn-orange {
  background: var(--orange);
  color: white;
  padding: 17px 38px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(52,152,219,0.35);
  letter-spacing: 0.01em;
}
.btn-orange:hover {
  background: var(--orange-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(52,152,219,0.48);
}
.btn-ghost {
  background: transparent;
  color: white;
  padding: 15px 34px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.02rem;
  border: 2px solid rgba(255,255,255,0.5);
  display: inline-block;
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-3px);
}
.btn-blue {
  background: var(--blue);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.97rem;
  display: inline-block;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-white {
  background: white;
  color: var(--orange);
  padding: 18px 44px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1.15rem;
  display: inline-block;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 36px rgba(0,0,0,0.3); }

/* ===== TRUST BADGES BAR ===== */
.trust-bar {
  background: white;
  border-bottom: 3px solid var(--blue);
  padding: 22px 28px;
  box-shadow: var(--shadow-sm);
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  white-space: nowrap;
}
.trust-item .ti-icon { font-size: 1.4rem; }
.trust-item .ti-text { color: var(--text-main); font-weight: 600; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--gray-border);
}

/* ===== SECTIONS ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 86px 28px;
}
.section-label {
  display: inline-block;
  background: var(--gray-soft);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.77rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title { font-size: 2.3rem; color: var(--navy); margin-bottom: 14px; font-weight: 800; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; line-height: 1.7; }

/* Full-width section wrappers */
.bg-white    { background: white; }
.bg-navy     { background: var(--navy); }
.bg-soft     { background: var(--gray-soft); }
.bg-gradient-blue { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); }
.bg-gradient-orange { background: linear-gradient(135deg, #3498DB 0%, #2D84BF 100%); }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.service-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
  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(--orange));
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21,101,192,0.3);
}
.sc-icon {
  font-size: 2.8rem;
  margin-bottom: 18px;
  display: block;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--navy);
}
.service-card .desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 20px;
  line-height: 1.65;
}
.service-card ul li {
  padding: 7px 0 7px 26px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.93rem;
  border-bottom: 1px solid var(--gray-border);
}
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-5px);
}
.why-card .wc-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.why-card h4 { color: white; margin-bottom: 9px; font-size: 1.05rem; }
.why-card p { color: rgba(255,255,255,0.66); font-size: 0.91rem; line-height: 1.7; }

/* ===== STATS BAR ===== */
.stats-bar { padding: 54px 28px; text-align: center; }
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 150px;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-top: 6px; }

/* ===== TESTIMONIALS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.review-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #F59E0B; font-size: 1.15rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-card blockquote {
  color: var(--text-main);
  font-size: 0.96rem;
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 18px;
}
.review-card cite {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.86rem;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-card cite::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--blue);
}
.review-cta-row {
  margin-top: 50px;
  text-align: center;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--navy);
  border: 2px solid var(--gray-border);
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.btn-google:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== AREAS SECTION ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.area-chip {
  background: white;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  font-size: 0.9rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.area-chip:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.area-chip .chip-county {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 3px;
}
.area-chip:hover .chip-county { color: rgba(255,255,255,0.8); }

/* ===== CTA SECTION ===== */
.cta-section { padding: 90px 28px; text-align: center; }
.cta-section h2 { font-size: 2.6rem; color: white; margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.88); max-width: 580px; margin: 0 auto 40px; line-height: 1.7; }
.cta-phone {
  display: block;
  margin-top: 22px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.cta-phone strong { color: white; font-size: 1.15rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue) 100%);
  padding: 72px 28px 64px;
  text-align: center;
  color: white;
}
.page-hero h1 { font-size: 2.7rem; color: white; margin-bottom: 12px; font-weight: 800; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.contact-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-border);
}
.contact-card h2 { font-size: 1.5rem; margin-bottom: 28px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-border);
}
.contact-info-item:last-of-type { border-bottom: none; }
.ci-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 44px;
  height: 44px;
  background: var(--gray-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item h4 { color: var(--navy); margin-bottom: 4px; font-size: 0.9rem; letter-spacing: 0.03em; text-transform: uppercase; }
.big-phone {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
  transition: color var(--transition);
}
.big-phone:hover { color: var(--blue); }
.contact-info-item p, .contact-info-item a { color: var(--text-muted); font-size: 0.94rem; }
.contact-info-item a { transition: color var(--transition); }
.contact-info-item a:hover { color: var(--blue); }

/* Form */
.form-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-border);
}
.form-card h2 { font-size: 1.5rem; margin-bottom: 10px; }
.form-card .form-sub { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; color: var(--navy); margin-bottom: 6px; font-size: 0.88rem; letter-spacing: 0.02em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-main);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--gray-bg);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== ABOUT PAGE ===== */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-block {
  background: #ffffff;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-border);
  padding: 24px;
}
.about-logo {
  max-width: 92%;
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.about-text h2 { font-size: 2.1rem; margin-bottom: 18px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; font-size: 0.97rem; }
.about-text .quote-block {
  background: var(--gray-soft);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-main);
  font-size: 0.97rem;
  line-height: 1.75;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
  color: var(--text-main);
  font-size: 0.96rem;
}
.check-list li:last-child { border-bottom: none; }
.chk { color: var(--blue); font-weight: 700; font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* Credentials grid */
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.cred-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
}
.cred-card .cred-icon { font-size: 2.2rem; margin-bottom: 12px; }
.cred-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.cred-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== SERVICES PAGE ===== */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.sd-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
}
.sd-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sd-card-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 28px 28px 24px;
  color: white;
}
.sd-card-header .sd-icon { font-size: 2.4rem; margin-bottom: 10px; display: block; }
.sd-card-header h3 { color: white; font-size: 1.25rem; margin-bottom: 6px; }
.sd-card-header p { color: rgba(255,255,255,0.75); font-size: 0.88rem; }
.sd-card-body { padding: 28px; }
.sd-card-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 0.93rem;
  color: var(--text-muted);
}
.sd-card-body ul li:last-child { border-bottom: none; }
.sd-card-body ul li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 800;
  flex-shrink: 0;
}

/* Emergency box */
.emergency-box {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--radius-md);
  padding: 48px 40px;
  text-align: center;
  color: white;
  margin-top: 20px;
}
.emergency-box h3 { font-size: 1.8rem; color: white; margin-bottom: 12px; }
.emergency-box p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 28px; }

/* ===== AREAS PAGE ===== */
.county-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: all var(--transition);
  border-top: 4px solid var(--blue);
}
.county-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.county-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 16px; }
.county-card .towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.town-tag {
  background: var(--gray-soft);
  color: var(--navy);
  border: 1px solid var(--gray-border);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 64px 28px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 260px; }
.footer-phone-big {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin: 14px 0 6px;
}
footer h5 {
  color: white;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer ul li { padding: 5px 0; }
footer ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
footer ul li a:hover { color: white; }
.footer-license {
  display: inline-block;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 14px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .hero h1 { font-size: 2.4rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-two-col { grid-template-columns: 1fr; gap: 40px; }
  .about-img-block { display: none; }
  .section-title { font-size: 1.95rem; }
}

@media (max-width: 720px) {
  .navbar-links { display: none; flex-direction: column; gap: 4px; }
  .navbar-links.open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #0A3D62;
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 10px 28px rgba(9, 18, 31, 0.12);
    z-index: 998;
  }
  .navbar-links.open a { padding: 12px 14px; border-radius: var(--radius-sm); }
  .navbar-cta-btn { display: block !important; }
  .hamburger { display: flex; }
  .navbar { position: relative; }
  .navbar-inner {
    min-height: 84px;
    padding: 0 16px 0 128px;
  }
  .navbar-logo {
    left: 12px;
    padding: 6px 10px;
    border-radius: 14px;
  }
  .navbar-logo img { height: 80px; }
  .hero { padding: 70px 20px 80px; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { font-size: 0.97rem; }
  .section { padding: 60px 20px; }
  .section-title { font-size: 1.7rem; }
  .stats-inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 20px; }
  .stat-item:last-child { border-bottom: none; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero { padding: 52px 20px 44px; }
  .cta-section h2 { font-size: 1.9rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-card, .form-card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .trust-divider { display: none; }
  .trust-item { font-size: 0.82rem; gap: 7px; }
}
