/*
Theme Name: MC Electric Comfort Systems
Theme URI: https://mcelectriccomfort.com
Author: Ocean Motion Media
Author URI: https://oceanmotionmedia.com
Description: Custom WordPress theme for MC Electric Comfort Systems LLC — a veteran-founded electrical and HVAC company serving Southern NH, Central Maine, and MA.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mc-electric
Tags: custom-logo, custom-menu, one-page, responsive-layout
*/

:root {
  --navy: #1B2F5E;
  --navy-dark: #0F1D3A;
  --red: #C0392B;
  --red-dark: #962D23;
  --gold: #F5D623;
  --gold-dark: #D4B91E;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-100: #F0EDE8;
  --gray-200: #D6D2CA;
  --gray-600: #6B6560;
  --gray-800: #2D2926;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--gold); text-decoration: none; font-weight: 600; }
.topbar-licensed { font-weight: 500; letter-spacing: 0.5px; }
.top-bar .veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,214,35,0.12);
  padding: 3px 12px;
  border-radius: 3px;
  border: 1px solid rgba(245,214,35,0.25);
  font-weight: 600;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── HEADER ─── */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-area img { height: 55px; width: auto; }
.logo-text h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.logo-text span {
  font-size: 11px;
  color: var(--gray-600);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ─── WordPress Nav Menu ─── */
.main-navigation { display: flex; align-items: center; gap: 2px; }
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-navigation li { position: relative; }
.main-navigation a {
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
  transition: all 0.2s;
  padding: 8px 10px;
  border-radius: 4px;
  white-space: nowrap;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  height: 38px;
}
.main-navigation a:hover { color: var(--red); background: rgba(192,57,43,0.05); }
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_item > a { color: var(--red); }

/* Dropdown */
.main-navigation .nav-dropdown { display: inline-flex; align-items: center; height: 38px; }
.main-navigation .menu-item-has-children > a::after { content: ' \25BE'; font-size: 10px; margin-left: 3px; }
.main-navigation .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 240px;
  z-index: 200;
  border: 1px solid var(--gray-100);
  list-style: none;
}
.main-navigation li:hover > .sub-menu { display: block; }
.main-navigation .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 0;
  color: var(--gray-800);
  height: auto;
}
.main-navigation .sub-menu a:hover { background: var(--off-white); color: var(--red); }
/* Third-level dropdown */
.main-navigation .sub-menu .sub-menu {
  top: 0; left: 100%; border-radius: 0 6px 6px 6px;
}
.main-navigation .sub-menu .menu-item-has-children > a::after { content: ' \203A'; font-size: 14px; }
.main-navigation .sub-menu li { position: relative; }

.header-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.phone-header {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.phone-header:hover { color: var(--red); }
.header-cta .btn-primary { padding: 10px 20px; font-size: 12px; white-space: nowrap; }

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

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 12px 26px; border-radius: 4px; text-decoration: none;
  font-weight: 700; font-size: 14px; text-transform: uppercase;
  letter-spacing: 1px; transition: all 0.25s; border: 2px solid var(--red);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-1px); box-shadow: 0 4px 15px rgba(192,57,43,0.35);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 12px 26px; border-radius: 4px; text-decoration: none;
  font-weight: 700; font-size: 14px; text-transform: uppercase;
  letter-spacing: 1px; transition: all 0.25s; border: 2px solid var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--navy); transform: translateY(-1px); }
.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); box-shadow: 0 4px 15px rgba(245,214,35,0.4); }
.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 12px 26px; border-radius: 4px; text-decoration: none;
  font-weight: 700; font-size: 14px; text-transform: uppercase;
  letter-spacing: 1px; transition: all 0.25s; border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--red);
  padding: 14px 30px; border-radius: 4px; text-decoration: none;
  font-weight: 700; font-size: 14px; text-transform: uppercase;
  letter-spacing: 1px; transition: all 0.25s; border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--navy-dark);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--navy) 66%);
}
.page-hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(245,214,35,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(192,57,43,0.06) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 14px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 44px; font-weight: 700; color: var(--white);
  text-transform: uppercase; line-height: 1.1;
}
.page-hero h2 .accent { color: var(--gold); }
.page-hero p {
  font-size: 18px; color: rgba(255,255,255,0.8);
  max-width: 600px; margin: 14px auto 0; line-height: 1.6;
}

/* Landing page hero variant — with CTA */
.page-hero--landing { padding: 80px 0 60px; }
.page-hero--landing .container { text-align: center; }
.hero-cta-row {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-top: 28px;
}
.hero-cta-row .btn-primary {
  padding: 16px 36px; font-size: 16px; font-weight: 700;
  letter-spacing: 0.5px;
}
.hero-cta-row .hero-call-btn {
  border-color: rgba(255,255,255,0.4);
  color: var(--white); font-size: 16px; padding: 16px 30px;
}
.hero-cta-row .hero-call-btn:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
}
.hero-trust-row {
  display: flex; gap: 24px; justify-content: center;
  margin-top: 20px; flex-wrap: wrap;
}
.hero-trust-row span {
  color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ─── STICKY MOBILE CTA BAR ─── */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999; background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.mobile-cta-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px; text-decoration: none; font-family: 'Oswald', sans-serif;
  font-size: 16px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; transition: background 0.2s;
}
.mobile-cta-call {
  flex: 1; background: var(--red); color: var(--white) !important;
}
.mobile-cta-call:hover { background: #a83226; }
.mobile-cta-icon { font-size: 20px; }
.mobile-cta-estimate {
  flex: 1; background: var(--gold); color: var(--navy) !important;
}
.mobile-cta-estimate:hover { background: #e6c820; }

/* ─── HERO (home) ─── */
.hero {
  position: relative; min-height: 600px; display: flex;
  align-items: center; overflow: hidden; background: var(--navy-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(15,29,58,0.88) 0%, rgba(27,47,94,0.75) 50%, rgba(15,29,58,0.85) 100%),
    url('assets/images/photos/hero-hvac.webp');
  background-size: cover, cover;
  background-position: center, center;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(245,214,35,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(192,57,43,0.06) 0%, transparent 50%);
}
.hero-stripe {
  position: absolute; bottom: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--navy) 66%);
}
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 80px; }
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,214,35,0.15); border: 1px solid rgba(245,214,35,0.35);
  padding: 8px 18px; border-radius: 4px; color: var(--gold);
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 24px;
}
.hero h2 {
  font-family: 'Oswald', sans-serif; font-size: 52px; font-weight: 700;
  color: var(--white); line-height: 1.1; margin-bottom: 20px; text-transform: uppercase;
}
.hero h2 .accent { color: var(--gold); }
.hero p {
  font-size: 19px; color: rgba(255,255,255,0.85); line-height: 1.6;
  margin-bottom: 12px; font-weight: 300; max-width: 550px;
}
.hero-bullets { list-style: none; margin: 20px 0 32px; }
.hero-bullets li {
  color: rgba(255,255,255,0.9); font-size: 16px; padding: 6px 0;
  padding-left: 28px; position: relative; font-weight: 500;
}
.hero-bullets li::before {
  content: '\2713'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 18px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--navy); padding: 20px 0; border-bottom: 3px solid var(--gold);
}
.trust-bar .container {
  display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--white); }
.trust-icon {
  width: 44px; height: 44px; background: rgba(245,214,35,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.trust-item strong {
  display: block; font-family: 'Oswald', sans-serif; font-size: 20px;
  font-weight: 700; color: var(--gold);
}
.trust-item span { font-size: 13px; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.5px; }

/* ─── SECTION STYLES ─── */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-label {
  font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--red); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px;
}
.section-title {
  font-family: 'Oswald', sans-serif; font-size: 38px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; line-height: 1.15;
}
.section-divider { width: 60px; height: 4px; background: var(--gold); margin: 16px auto 0; border-radius: 2px; }

/* ─── SERVICES GRID (Home) ─── */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.service-category {
  background: var(--white); border: 1px solid var(--gray-200);
  position: relative; overflow: hidden; transition: all 0.35s ease; cursor: pointer;
  border-left: 4px solid transparent; text-decoration: none; color: inherit; display: block;
}
.service-category:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12); z-index: 2;
  border-left-color: var(--gold);
  background: linear-gradient(135deg, var(--white) 0%, rgba(245,214,35,0.04) 100%);
  transform: translateY(-3px);
}
.service-category:hover .service-icon-wrap {
  background: var(--red);
  transform: scale(1.08);
  transition: all 0.35s ease;
}
.service-category:hover .service-header h3 {
  color: var(--red);
  transition: color 0.25s ease;
}
.service-category:first-child { border-radius: 8px 0 0 0; }
.service-category:nth-child(2) { border-radius: 0 8px 0 0; }
.service-category:nth-child(3) { border-radius: 0 0 0 8px; }
.service-category:last-child { border-radius: 0 0 8px 0; }
.service-header {
  padding: 30px 30px 20px; display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.service-icon-wrap {
  width: 56px; height: 56px; background: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0;
  transition: all 0.35s ease;
}
.service-header h3 {
  font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--navy); text-transform: uppercase;
}
.service-header p { font-size: 14px; color: var(--gray-600); margin-top: 2px; }
.service-category::after {
  content: 'View Details \2192';
  position: absolute; bottom: 16px; right: 24px;
  font-size: 13px; font-weight: 700; color: var(--red);
  text-transform: uppercase; letter-spacing: 0.5px;
  opacity: 0; transform: translateX(-8px);
  transition: all 0.3s ease;
}
.service-category:hover::after { opacity: 1; transform: translateX(0); }
.service-list { padding: 20px 30px 30px; list-style: none; }
.service-list li {
  padding: 9px 0; padding-left: 22px; position: relative; font-size: 15px;
  color: var(--gray-800); border-bottom: 1px solid var(--gray-100);
  transition: padding-left 0.2s ease, color 0.2s ease;
}
.service-category:hover .service-list li { padding-left: 28px; }
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '\26A1'; position: absolute; left: 0; font-size: 12px; transition: left 0.2s ease; }
.service-category:hover .service-list li::before { left: 4px; }
.service-category:nth-child(3) .service-list li::before,
.service-category:nth-child(4) .service-list li::before { content: '\2744'; }

/* ─── WHY CARDS ─── */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card {
  text-align: center; padding: 40px 28px; border-radius: 8px;
  border: 1px solid var(--gray-200); transition: all 0.3s; position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.why-icon {
  width: 70px; height: 70px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 20px;
}
.why-card h3 {
  font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; margin-bottom: 12px;
}
.why-card p { font-size: 15px; color: var(--gray-600); line-height: 1.65; }

/* ─── VETERAN CTA ─── */
.veteran-cta { background: var(--navy-dark); padding: 70px 0; position: relative; overflow: hidden; }
.veteran-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--navy) 66%);
}
.veteran-cta .container { display: flex; align-items: center; gap: 50px; }
.veteran-flag { font-size: 80px; flex-shrink: 0; line-height: 1; }
.veteran-text h2 {
  font-family: 'Oswald', sans-serif; font-size: 36px; color: var(--white);
  text-transform: uppercase; margin-bottom: 14px; line-height: 1.15;
}
.veteran-text h2 .accent { color: var(--gold); }
.veteran-text p {
  color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.7;
  margin-bottom: 28px; max-width: 580px;
}

/* ─── SERVICE AREA ─── */
.service-area { background: var(--off-white); }
.area-state-section { padding: 50px 0; border-bottom: 1px solid var(--gray-200); }
.area-state-section:last-of-type { border-bottom: none; }
.state-badge {
  display: inline-block; background: var(--navy); color: var(--gold);
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 16px; border-radius: 3px; margin-bottom: 12px;
}
.area-content { display: flex; align-items: center; gap: 50px; }
.area-text { flex: 1; }
.area-text h2 {
  font-family: 'Oswald', sans-serif; font-size: 36px; color: var(--navy);
  text-transform: uppercase; margin-bottom: 16px; line-height: 1.15;
}
.area-text p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.area-towns { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.area-towns span {
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 6px 14px; border-radius: 4px; font-size: 14px; font-weight: 600; color: var(--navy);
}
.area-map {
  flex: 1; min-height: 350px; background: #E8E6E1; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gray-600); border: none;
  flex-direction: column; gap: 12px;
}
.area-map::before { content: '\1F4CD'; font-size: 48px; display: block; }
.area-map::after { content: 'Interactive Google Map'; font-family: 'Source Sans 3', sans-serif; font-weight: 600; }

/* ─── REVIEWS ─── */
.reviews { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--off-white); padding: 30px; border-radius: 8px; border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}
.review-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08); transform: translateY(-3px);
  border-color: var(--gold);
}
.review-stars { color: var(--gold); font-size: 20px; margin-bottom: 14px; letter-spacing: 2px; }
.review-card p, .review-content { font-size: 15px; color: var(--gray-800); line-height: 1.65; font-style: italic; margin-bottom: 16px; }
.review-author { font-weight: 700; font-size: 14px; color: var(--navy); }

/* ─── CONTACT ─── */
.contact { background: var(--navy); padding: 70px 0; }
.contact .section-title { color: var(--white); }
.contact .section-label { color: var(--gold); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-card:last-child { border-bottom: none; }
.contact-icon {
  width: 48px; height: 48px; background: rgba(245,214,35,0.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.contact-info-card h4 {
  font-family: 'Oswald', sans-serif; font-size: 16px; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}
.contact-info-card p, .contact-info-card a {
  color: rgba(255,255,255,0.85); font-size: 16px; text-decoration: none; line-height: 1.5;
}
.contact-info-card a:hover { color: var(--gold); }
.contact-form {
  background: rgba(255,255,255,0.06); padding: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}
.contact-form h3 {
  font-family: 'Oswald', sans-serif; font-size: 22px; color: var(--white);
  text-transform: uppercase; margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px; background: rgba(255,255,255,0.08); color: var(--white);
  font-family: 'Source Sans 3', sans-serif; font-size: 15px; transition: border-color 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: var(--navy-dark); color: white; }

/* ─── CONTACT SECTION (standalone page, light background) ─── */
.contact-section { background: var(--off-white); padding: 70px 0; }
.contact-section .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-section .contact-info-cards { display: flex; flex-direction: column; gap: 0; }
.contact-section .info-card {
  padding: 22px 0; border-bottom: 1px solid var(--gray-200);
}
.contact-section .info-card:last-child { border-bottom: none; }
.contact-section .info-card h3 {
  font-family: 'Oswald', sans-serif; font-size: 18px; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
}
.contact-section .info-card a {
  color: var(--red); text-decoration: none; font-weight: 600; font-size: 16px;
}
.contact-section .info-card a:hover { color: var(--red-dark); text-decoration: underline; }
.contact-section .info-card p { color: var(--gray-600); font-size: 15px; line-height: 1.6; }
.contact-section .contact-form {
  background: var(--white); padding: 40px; border-radius: 10px;
  border: 1px solid var(--gray-200); box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-section .contact-form h2 {
  font-family: 'Oswald', sans-serif; font-size: 26px; color: var(--navy);
  text-transform: uppercase; margin-bottom: 24px; line-height: 1.15;
}
.contact-section .form-group label {
  display: block; font-size: 14px; font-weight: 600; color: var(--navy);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.3px;
}
.contact-section .form-group input,
.contact-section .form-group textarea,
.contact-section .form-group select {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 6px; background: var(--white); color: var(--gray-800);
  font-family: 'Source Sans 3', sans-serif; font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder {
  color: var(--gray-600); opacity: 0.6;
}
.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus,
.contact-section .form-group select:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,47,94,0.1);
}
.contact-section .form-group select option { background: var(--white); color: var(--gray-800); }

/* ─── CONTACT PAGE EXTRAS ─── */
.contact-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.contact-why-item {
  text-align: center; padding: 30px 20px;
  background: var(--off-white); border-radius: 10px;
  border: 1px solid var(--gray-100); transition: all 0.3s ease;
}
.contact-why-item:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(0,0,0,0.06); transform: translateY(-3px); }
.contact-why-icon { font-size: 36px; margin-bottom: 14px; }
.contact-why-item h3 {
  font-family: 'Oswald', sans-serif; font-size: 18px; color: var(--navy);
  text-transform: uppercase; margin-bottom: 8px;
}
.contact-why-item p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ─── REVIEWS PAGE ENHANCEMENTS ─── */
.reviews-intro {
  text-align: center; max-width: 720px; margin: 0 auto 50px;
}
.reviews-intro .reviews-summary-bar {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  background: var(--off-white); border: 1px solid var(--gray-100);
  border-radius: 10px; padding: 24px 36px; margin-bottom: 24px;
}
.reviews-summary-bar .summary-stars { color: var(--gold); font-size: 28px; letter-spacing: 3px; }
.reviews-summary-bar .summary-text { font-size: 18px; font-weight: 600; color: var(--navy); }
.reviews-intro p {
  font-size: 16px; color: var(--gray-600); line-height: 1.7;
}
.reviews-cta {
  text-align: center; padding: 70px 0; background: var(--navy); margin-top: 0;
}
.reviews-cta h3 {
  font-family: 'Oswald', sans-serif; font-size: 30px; color: var(--white);
  text-transform: uppercase; margin-bottom: 12px;
}
.reviews-cta p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 28px; }
.reviews-cta .btn-primary { display: inline-block; }

/* ─── REVIEWS PAGE - PREMIUM ─── */
.reviews-overview { background: var(--white); }
.reviews-overview-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 50px; align-items: center;
}
.reviews-rating-card {
  text-align: center; background: var(--navy); color: var(--white);
  padding: 40px 50px; border-radius: 12px;
}
.rating-big {
  font-family: 'Oswald', sans-serif; font-size: 72px; font-weight: 700;
  line-height: 1; color: var(--white);
}
.rating-stars-big { color: var(--gold); font-size: 28px; letter-spacing: 4px; margin: 10px 0; }
.reviews-rating-card p { color: rgba(255,255,255,0.7); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.reviews-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stat-item { text-align: center; padding: 30px 20px; background: var(--off-white); border-radius: 10px; }
.stat-number {
  font-family: 'Oswald', sans-serif; font-size: 42px; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.stat-label {
  font-size: 14px; color: var(--gray-600); text-transform: uppercase;
  letter-spacing: 0.5px; margin-top: 8px; font-weight: 600;
}

/* Review Platforms */
.review-platforms {
  display: flex; justify-content: center; gap: 20px; margin-top: 40px; flex-wrap: wrap;
}
.platform-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--off-white); border: 1px solid var(--gray-200);
  padding: 10px 20px; border-radius: 30px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  letter-spacing: 0.3px;
}

/* Featured Review */
.featured-review { background: var(--off-white); padding: 70px 0; }
.featured-review-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.featured-review-img img {
  width: 100%; height: auto; border-radius: 10px; display: block;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.featured-label {
  font-family: 'Oswald', sans-serif; font-size: 13px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--red); font-weight: 600; margin-bottom: 12px;
}
.featured-review-content blockquote {
  font-size: 18px; line-height: 1.7; color: var(--gray-800); font-style: italic;
  margin: 16px 0 20px; border: none; padding: 0;
}
.featured-author strong { font-size: 16px; color: var(--navy); display: block; }
.featured-author span { font-size: 14px; color: var(--gray-600); }

/* Review Service Tags */
.review-service-tag {
  display: inline-block; margin-top: 12px; padding: 4px 12px;
  background: rgba(27,47,94,0.08); color: var(--navy); font-size: 12px;
  font-weight: 600; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}

/* Work Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 10px; }
.gallery-item img {
  width: 100%; height: 220px; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,29,58,0.85));
  color: var(--white); padding: 30px 16px 14px; font-size: 14px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}

/* Trust Badges */
.trust-section { background: var(--white); }
.trust-badges-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.trust-badge-item {
  text-align: center; padding: 30px 20px;
  border: 1px solid var(--gray-100); border-radius: 10px;
  transition: all 0.3s ease;
}
.trust-badge-item:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(0,0,0,0.06); transform: translateY(-3px); }
.trust-badge-icon { font-size: 36px; margin-bottom: 14px; }
.trust-badge-item h4 {
  font-family: 'Oswald', sans-serif; font-size: 16px; color: var(--navy);
  text-transform: uppercase; margin-bottom: 8px;
}
.trust-badge-item p { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

/* ─── ABOUT PAGE PREMIUM ─── */
.about-stats { padding: 50px 0; }
.about-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center;
}
.about-stat-number {
  font-family: 'Oswald', sans-serif; font-size: 48px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.about-stat-label {
  font-size: 14px; color: rgba(255,255,255,0.7); text-transform: uppercase;
  letter-spacing: 1px; margin-top: 8px; font-weight: 600;
}
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.process-step {
  text-align: center; padding: 30px 20px;
  background: var(--white); border-radius: 10px;
  border: 1px solid var(--gray-100); transition: all 0.3s ease;
}
.process-step:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(0,0,0,0.06); transform: translateY(-3px); }
.process-number {
  font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 700;
  color: var(--gold); margin-bottom: 12px;
}
.process-step h3 {
  font-family: 'Oswald', sans-serif; font-size: 18px; color: var(--navy);
  text-transform: uppercase; margin-bottom: 10px;
}
.process-step p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.credentials-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.credentials-img img {
  width: 100%; height: auto; border-radius: 10px; display: block;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.credentials-content h2 {
  font-family: 'Oswald', sans-serif; font-size: 30px; color: var(--navy);
  text-transform: uppercase; margin-bottom: 16px; line-height: 1.2;
}
.credentials-content p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.credentials-list { list-style: none; padding: 0; }
.credentials-list li {
  font-size: 15px; color: var(--gray-800); padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.credentials-list li:last-child { border-bottom: none; }

/* ─── SERVICE AREA MAP EMBED ─── */
.area-map iframe {
  width: 100%; height: 100%; min-height: 400px; border: 0; border-radius: 8px;
}
.area-map.has-embed {
  background: none; padding: 0; min-height: 400px;
}
.area-map.has-embed::before, .area-map.has-embed::after { display: none; }

/* ─── FOOTER ─── */
.footer { background: var(--navy-dark); padding: 50px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin-top: 14px; }
.footer h4 {
  font-family: 'Oswald', sans-serif; color: var(--gold); font-size: 16px;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 0; text-align: center; color: rgba(255,255,255,0.4); font-size: 13px; }

/* ─── FLOATING CALL (MOBILE) ─── */
.floating-call {
  display: none; position: fixed; bottom: 20px; right: 20px; z-index: 999;
  width: 60px; height: 60px; background: var(--red); border-radius: 50%;
  align-items: center; justify-content: center; color: white; font-size: 26px;
  text-decoration: none; box-shadow: 0 4px 20px rgba(192,57,43,0.5);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(192,57,43,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(192,57,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
}

/* ─── FINANCING PAGE ─── */
.financing-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.financing-why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.financing-process-grid {
  grid-template-columns: repeat(3, 1fr); max-width: 960px; margin: 0 auto;
}
.financing-services-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ─── SERVICE PAGE SPECIFIC STYLES ─── */
.service-page-content { padding: 70px 0; }
.service-page-layout { display: grid; grid-template-columns: 1fr 360px; gap: 50px; }
.service-main h2 {
  font-family: 'Oswald', sans-serif; font-size: 30px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; margin: 40px 0 16px; line-height: 1.15;
}
.service-main h2:first-child { margin-top: 0; }
.service-main p { font-size: 16px; line-height: 1.8; color: var(--gray-600); margin-bottom: 16px; }
.service-main ul {
  list-style: none; margin: 20px 0 30px; padding: 0;
}
.service-main ul li {
  padding: 10px 0 10px 30px; position: relative; font-size: 15px;
  border-bottom: 1px solid var(--gray-100); color: var(--gray-800);
}
.service-main ul li::before {
  content: '\2713'; position: absolute; left: 0; color: var(--red);
  font-weight: 700; font-size: 16px;
}
.service-img { margin: 24px 0; }
.service-img img { display: block; }
.service-img-placeholder {
  width: 100%; height: 300px; background: #E8E6E1;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); font-weight: 600; margin: 24px 0; border: none;
  flex-direction: column; gap: 12px;
}
.service-img-placeholder::before { content: '\1F4F7'; font-size: 48px; display: block; }
.service-img-placeholder::after { content: 'Professional Service Photo'; font-size: 14px; display: block; }

/* Sidebar */
.service-sidebar {}
.sidebar-card {
  background: var(--off-white); border-radius: 8px; padding: 28px;
  margin-bottom: 24px; border: 1px solid var(--gray-200);
}
.sidebar-card h3 {
  font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--navy); text-transform: uppercase; margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 3px solid var(--gold);
}
.sidebar-services { list-style: none; }
.sidebar-services li { border-bottom: 1px solid var(--gray-200); }
.sidebar-services li:last-child { border-bottom: none; }
.sidebar-services a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; text-decoration: none; color: var(--gray-800);
  font-weight: 500; font-size: 15px; transition: all 0.2s;
}
.sidebar-services a:hover { color: var(--red); padding-left: 6px; }
.sidebar-services a::after { content: '\2192'; color: var(--gray-200); transition: color 0.2s; }
.sidebar-services a:hover::after { color: var(--red); }
.sidebar-services li.active-service > a { color: var(--red); font-weight: 700; }
.sidebar-sub-services { list-style: none; padding-left: 16px; margin: 0; }
.sidebar-sub-services li { border-bottom: 1px solid var(--gray-100); }
.sidebar-sub-services li:last-child { border-bottom: none; }
.sidebar-sub-services a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; text-decoration: none; color: var(--gray-600);
  font-weight: 400; font-size: 13px; transition: all 0.2s;
}
.sidebar-sub-services a::after { content: '\203A'; color: var(--gray-200); transition: color 0.2s; font-size: 16px; }
.sidebar-sub-services a:hover { color: var(--red); padding-left: 4px; }
.sidebar-sub-services a:hover::after { color: var(--red); }
.sidebar-sub-services li.active-service a { color: var(--red); font-weight: 600; }
.sidebar-licenses { list-style: none; }
.sidebar-licenses li { padding: 8px 0; font-size: 14px; color: var(--gray-800); border-bottom: 1px solid var(--gray-100); }
.sidebar-licenses li:last-child { border-bottom: none; }
.sidebar-licenses strong { color: var(--navy); font-size: 15px; }

/* ─── SERVICE CTA BLOCK (conversion-optimized) ─── */
.service-trust-block { margin: 40px 0 24px; }
.trust-badges-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
}
.trust-badge-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--off-white); border: 1px solid var(--gray-200);
  padding: 10px 16px; border-radius: 6px; font-size: 13px;
  font-weight: 600; color: var(--navy); flex: 1; min-width: 140px;
  justify-content: center;
}
.trust-badge-icon { font-size: 18px; }
.service-review-snippet {
  background: var(--navy); border-radius: 8px; padding: 28px 32px;
  margin: 24px 0; text-align: center;
}
.snippet-stars { color: var(--gold); font-size: 22px; letter-spacing: 3px; margin-bottom: 10px; }
.service-review-snippet p { color: rgba(255,255,255,0.9) !important; font-style: italic; font-size: 15px !important; line-height: 1.6; margin-bottom: 8px !important; }
.snippet-author { color: var(--gold); font-weight: 600; font-size: 13px; }
.snippet-link { display: inline-block; margin-top: 12px; color: rgba(255,255,255,0.7); font-size: 13px; text-decoration: none; }
.snippet-link:hover { color: var(--white); }
.service-dual-cta {
  display: flex; gap: 24px; align-items: center; margin: 24px 0 0;
  padding: 28px; background: var(--off-white); border-radius: 8px;
  border: 2px solid var(--gray-200);
}
.dual-cta-left { flex: 1; }
.dual-cta-left h3 { font-family: 'Oswald', sans-serif; font-size: 22px; color: var(--navy); text-transform: uppercase; margin-bottom: 6px; }
.dual-cta-left p { font-size: 14px; color: var(--gray-600); margin-bottom: 14px; }
.dual-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.dual-cta-right {
  text-align: center; padding-left: 24px; border-left: 1px solid var(--gray-200);
}
.financing-note { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.dual-cta-right a { font-size: 13px; color: var(--red); text-decoration: none; font-weight: 600; }
@media (max-width: 992px) {
  .trust-badges-row { flex-direction: column; }
  .trust-badge-item { min-width: unset; width: 100%; justify-content: center; padding: 12px 16px; }
  .service-dual-cta { flex-direction: column; text-align: center; padding: 24px; }
  .dual-cta-left { width: 100%; text-align: center; }
  .dual-cta-buttons { flex-direction: column; width: 100%; gap: 10px; }
  .dual-cta-buttons .btn,
  .dual-cta-buttons .btn-primary,
  .dual-cta-buttons .btn-outline {
    width: 100%; text-align: center; justify-content: center;
    display: flex; padding: 16px; font-size: 15px; box-sizing: border-box;
  }
  .dual-cta-right { padding-left: 0; border-left: none; padding-top: 16px; border-top: 1px solid var(--gray-200); width: 100%; }
  /* Sidebar CTA: center and full-width buttons */
  .sidebar-cta { text-align: center; }
  .sidebar-cta .btn-primary,
  .sidebar-cta .btn-gold {
    width: 100%; display: flex; justify-content: center;
    text-align: center; padding: 16px; box-sizing: border-box;
    font-size: 15px;
  }
  .sidebar-cta .phone-big { font-size: 26px; }
  /* Service page bottom CTA section */
  .cta-section { text-align: center; }
  .cta-section .btn,
  .cta-section .btn-primary {
    display: flex; width: 100%; max-width: 400px; margin: 0 auto;
    text-align: center; justify-content: center; padding: 16px;
    box-sizing: border-box; font-size: 15px;
  }
}

.sidebar-cta {
  background: var(--navy); border-radius: 8px; padding: 30px;
  text-align: center; color: var(--white);
}
.sidebar-cta h3 {
  font-family: 'Oswald', sans-serif; font-size: 22px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 10px;
}
.sidebar-cta p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 20px; line-height: 1.5; }
.sidebar-cta .phone-big {
  display: block; font-family: 'Oswald', sans-serif; font-size: 28px;
  color: var(--gold); text-decoration: none; font-weight: 700; margin-bottom: 16px;
}

/* ─── ABOUT PAGE ─── */
.about-content { padding: 70px 0; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 {
  font-family: 'Oswald', sans-serif; font-size: 32px; color: var(--navy);
  text-transform: uppercase; margin-bottom: 18px; line-height: 1.15;
}
.about-text p { font-size: 16px; line-height: 1.8; color: var(--gray-600); margin-bottom: 16px; }
.about-img img { width: 100%; height: auto; display: block; border-radius: 8px; }
.about-img-placeholder {
  width: 100%; height: 400px; background: #E8E6E1;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); font-weight: 600; border: none;
  flex-direction: column; gap: 12px;
}
.about-img-placeholder::before { content: '\1F4F7'; font-size: 48px; display: block; }
.about-img-placeholder::after { content: 'Team Photo'; font-size: 14px; display: block; }
.about-values {
  padding: 70px 0; background: var(--off-white);
}
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 30px 20px; }
.value-card .val-icon { font-size: 40px; margin-bottom: 14px; }
.value-card h4 {
  font-family: 'Oswald', sans-serif; font-size: 18px; color: var(--navy);
  text-transform: uppercase; margin-bottom: 8px;
}
.value-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ─── SERVICES LANDING PAGE ─── */
.all-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 70px 0; }
.all-service-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px;
  overflow: hidden; transition: all 0.3s; text-decoration: none; color: inherit; display: block;
}
.all-service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-4px); }
.all-service-card-img {
  height: 180px; background: var(--navy); display: flex; align-items: center;
  justify-content: center; font-size: 50px;
}
.all-service-card-body { padding: 24px; }
.all-service-card-body h3 {
  font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--navy);
  text-transform: uppercase; margin-bottom: 10px;
}
.all-service-card-body p { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }
.learn-more {
  color: var(--red); font-weight: 700; text-decoration: none; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.learn-more:hover { text-decoration: underline; }

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .main-navigation { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 4px; z-index: 1000; }
  .main-navigation.open { display: flex; }
  .main-navigation ul { flex-direction: column; width: 100%; }
  .hamburger { display: flex; }
  .hero h2, .page-hero h2 { font-size: 36px; }
  .services-grid, .all-services-grid { grid-template-columns: 1fr; }
  .service-category { border-radius: 0 !important; }
  .why-grid, .reviews-grid { grid-template-columns: 1fr; }
  .area-content, .about-layout { flex-direction: column; }
  .about-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-section .contact-grid { grid-template-columns: 1fr !important; }
  .contact-why-grid { grid-template-columns: 1fr; }
  .reviews-overview-grid { grid-template-columns: 1fr; }
  .featured-review-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-stats { grid-template-columns: repeat(3, 1fr); }
  .veteran-cta .container { flex-direction: column; text-align: center; }

  /* SERVICE PAGES: Sidebar goes BELOW content on mobile, not above */
  .service-page-layout { grid-template-columns: 1fr; gap: 30px; }
  .service-sidebar { order: 2; }
  .service-main { order: 1; }

  /* STICKY MOBILE CTA BAR: show on tablet/mobile */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 56px; }
  .footer { margin-bottom: 0; }

  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .credentials-grid { grid-template-columns: 1fr; }
  .main-navigation .sub-menu { position: static; box-shadow: none; border: none; padding-left: 20px; }
  .main-navigation li:hover > .sub-menu { display: block; }

  /* CONTACT PAGE: Form first, info cards second on mobile */
  .contact-section .contact-form { order: 1; }
  .contact-section .contact-info-cards { order: 2; }
  .contact-section .contact-grid { display: flex !important; flex-direction: column; gap: 40px !important; }

  /* FINANCING PAGE: Stack all two-column grids */
  .financing-intro-grid,
  .financing-why-grid { grid-template-columns: 1fr; gap: 30px; }
  .financing-process-grid { grid-template-columns: repeat(2, 1fr); }
  .financing-services-grid { grid-template-columns: repeat(2, 1fr); }

  /* SERVICE AREA PAGE: Ensure stacking on mobile */
  .area-content { flex-direction: column; gap: 30px; }
  .area-map { min-height: 280px; }
  .area-map iframe { min-height: 280px; }
  .area-towns { margin-bottom: 10px; }

  /* ABOUT PAGE: Stack inline grids */
  .about-content .about-layout { grid-template-columns: 1fr !important; }
}

@media (max-width: 600px) {
  .hero h2, .page-hero h2 { font-size: 28px; }
  .section { padding: 50px 0; }
  .trust-bar .container { gap: 20px; justify-content: flex-start; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { text-align: center; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-cta .btn-primary { display: none; }
  .header-cta .phone-header { font-size: 16px; }
  .phone-header { font-size: 16px; }
  .all-services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-badges-grid { grid-template-columns: 1fr; }

  /* FINANCING: Ensure all grids single-column on small screens */
  .financing-intro-grid,
  .financing-why-grid { grid-template-columns: 1fr; gap: 24px; }
  .financing-process-grid { grid-template-columns: 1fr; }
  .financing-services-grid { grid-template-columns: 1fr; }

  /* SERVICE AREA: Reduce padding, improve mobile spacing */
  .area-state-section { padding: 30px 0 !important; }
  .area-map iframe { min-height: 250px; }
  .state-badge { font-size: 12px !important; }

  /* SERVICE PAGES: Tighter mobile spacing */
  .service-page-content { padding: 40px 0; }
  .service-main h2 { font-size: 24px; margin: 30px 0 12px; }
  .sidebar-card { padding: 20px; }

  /* CONTACT: Better mobile form experience */
  .contact-section { padding: 40px 0; }
  .contact-section .contact-form { padding: 24px !important; }
  .contact-section .contact-form h2 { font-size: 24px; }

  /* TRUST BAR: Wrap on small screens */
  .trust-bar .container { flex-wrap: wrap; gap: 16px; padding: 14px 20px; }
  .trust-item { flex: 1 1 45%; min-width: 140px; }
  .trust-icon { font-size: 20px !important; }

  /* HERO: Better mobile spacing */
  .hero { padding: 60px 0 50px; }
  .hero-badge { font-size: 12px; }
  .hero-bullets { padding-left: 0; }
  .hero-bullets li { font-size: 14px; }

  /* LANDING PAGE HERO: Mobile CTA optimization */
  .page-hero--landing { padding: 50px 0 40px; }
  .hero-cta-row { flex-direction: column; gap: 10px; margin-top: 22px; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .hero-call-btn {
    width: 100%; text-align: center; justify-content: center;
    padding: 16px 20px; font-size: 16px;
  }
  .hero-trust-row { gap: 12px; margin-top: 16px; }
  .hero-trust-row span { font-size: 11px; }

  /* General mobile type */
  .section-title { font-size: 28px !important; }
  .section-label { font-size: 12px; }

  /* TOP BAR: Stack on very small screens */
  .top-bar .container { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 6px 16px; }
  .topbar-licensed { font-size: 12px; }
}
