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

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #1a1a1a;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.header { position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,.18); }
.header-top {
  background: #0D1F3C;
  color: #fff;
  font-size: 13px;
  padding: 7px 0;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.header-phone {
  color: #F5A623;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
}
.header-phone:hover { text-decoration: underline; }
.header-main {
  background: #1A3A6B;
  padding: 12px 0;
}
.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.logo-img { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; }
.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
}
.logo-text strong { color: #F5A623; }
.nav-desktop { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav-desktop a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background .2s;
}
.nav-desktop a:hover, .nav-desktop a.active { background: rgba(255,255,255,.15); }
.btn-nav {
  background: #F5A623 !important;
  color: #0D1F3C !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  white-space: nowrap;
}
.btn-nav:hover { background: #e09410 !important; }
.hamburger {
  display: none;
  background: none;
  border: 2px solid #fff;
  color: #fff;
  font-size: 22px;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0D1F3C;
  padding: 12px 20px;
}
.mobile-menu a {
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-weight: 600;
  font-size: 15px;
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0D1F3C 0%, #1A3A6B 50%, #2a5298 100%);
  color: #fff;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=60') center/cover no-repeat;
  opacity: .18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,.92) 0%, rgba(26,58,107,.85) 100%);
}
.hero-small { min-height: 280px; }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 800px;
}
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 14px; }
.breadcrumb a { color: #F5A623; }
.hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.accent { color: #F5A623; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.9); margin-bottom: 28px; max-width: 600px; }
.btn-hero {
  display: inline-block;
  background: #F5A623;
  color: #0D1F3C;
  font-weight: 800;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(245,166,35,.4);
  transition: transform .2s, box-shadow .2s;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,.5); }
.hero-badges { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== FEATURED SNIPPET ===== */
.snippet-box { margin: 36px auto; }
.snippet-inner {
  background: #EFF6FF;
  border-left: 5px solid #1A3A6B;
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
}
.snippet-label {
  display: inline-block;
  background: #1A3A6B;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.snippet-question {
  font-size: 20px;
  color: #0D1F3C;
  margin-bottom: 10px;
  font-weight: 700;
}
.snippet-inner p { color: #333; font-size: 15px; }

/* ===== MAIN CONTENT ===== */
.main-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 40px 20px;
  align-items: start;
}
.content-article h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1A3A6B;
  margin: 32px 0 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 3px solid #F5A623;
  padding-bottom: 8px;
}
.content-article h3 {
  font-size: 20px;
  color: #0D1F3C;
  margin: 22px 0 10px;
  font-weight: 700;
}
.content-article p { margin-bottom: 16px; color: #333; }
.content-article strong { color: #1A3A6B; }
.content-list { margin: 12px 0 20px 20px; }
.content-list li {
  margin-bottom: 10px;
  padding-left: 8px;
  position: relative;
  color: #333;
}
.content-list li::before {
  content: '✓';
  color: #F5A623;
  font-weight: 700;
  margin-right: 8px;
}
ol.content-list { list-style: decimal; }
ol.content-list li::before { content: none; }

/* ===== IMAGES ===== */
.img-block { margin: 28px 0; }
.content-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.img-caption {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  font-style: italic;
}

/* ===== CTA INLINE ===== */
.cta-inline {
  background: linear-gradient(135deg, #1A3A6B, #0D1F3C);
  color: #fff;
  padding: 28px 32px;
  border-radius: 12px;
  text-align: center;
  margin: 36px 0;
}
.cta-inline p { color: rgba(255,255,255,.9); font-size: 17px; margin-bottom: 16px; }
.btn-cta {
  display: inline-block;
  background: #F5A623;
  color: #0D1F3C;
  font-weight: 800;
  font-size: 17px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background .2s;
}
.btn-cta:hover { background: #e09410; }

/* ===== KEYWORDS GRID ===== */
.keywords-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 32px;
}
.kw-tag {
  background: #EFF6FF;
  border: 1px solid #1A3A6B;
  color: #1A3A6B;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* ===== FAQ ===== */
.faq-section { margin: 40px 0; }
.faq-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1A3A6B;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 3px solid #F5A623;
  padding-bottom: 8px;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid #dde8f5; border-radius: 8px; overflow: hidden; }
.faq-question {
  width: 100%;
  background: #EFF6FF;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #0D1F3C;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}
.faq-question::after { content: '+'; font-size: 22px; color: #F5A623; font-weight: 700; }
.faq-question.open::after { content: '−'; }
.faq-question:hover { background: #dde8f5; }
.faq-answer { display: none; padding: 16px 20px; background: #fff; }
.faq-answer.open { display: block; }
.faq-answer p { color: #444; margin: 0; }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: #fff;
  border: 1px solid #dde8f5;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.sidebar-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  color: #1A3A6B;
  margin-bottom: 12px;
  text-transform: uppercase;
  border-bottom: 2px solid #F5A623;
  padding-bottom: 6px;
}
.cta-card { background: linear-gradient(135deg, #1A3A6B, #0D1F3C); color: #fff; }
.cta-card h3 { color: #F5A623; border-color: #F5A623; }
.cta-card p { color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 14px; }
.btn-sidebar {
  display: block;
  background: #F5A623;
  color: #0D1F3C;
  font-weight: 800;
  font-size: 16px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 10px;
  transition: background .2s;
}
.btn-sidebar:hover { background: #e09410; }
.sidebar-hours { color: rgba(255,255,255,.7); font-size: 13px; text-align: center; }
.sidebar-links li { margin-bottom: 8px; }
.sidebar-links a {
  color: #1A3A6B;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
  display: block;
  border-bottom: 1px solid #eef2f8;
  transition: color .2s;
}
.sidebar-links a:hover, .sidebar-links a.active { color: #F5A623; }
.map-address { font-size: 13px; color: #555; margin-top: 10px; line-height: 1.5; }

/* ===== SERVICES GRID ===== */
.services-section { background: #f8fafd; padding: 60px 0; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #0D1F3C;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-sub { text-align: center; color: #666; margin-bottom: 40px; font-size: 16px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  border-top: 4px solid #1A3A6B;
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.14); }
.service-icon { font-size: 40px; margin-bottom: 14px; }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  color: #1A3A6B;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.service-card p { color: #555; font-size: 14px; margin-bottom: 16px; }
.service-link {
  display: inline-block;
  color: #F5A623;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 2px solid #F5A623;
  padding-bottom: 2px;
}

/* ===== WHY US ===== */
.why-section { padding: 60px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.why-card {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-bottom: 3px solid #F5A623;
}
.why-icon { font-size: 36px; margin-bottom: 12px; }
.why-card h3 { font-size: 17px; color: #1A3A6B; margin-bottom: 8px; font-weight: 700; }
.why-card p { font-size: 14px; color: #555; }

/* ===== REVIEWS ===== */
.reviews-section { background: #0D1F3C; padding: 60px 0; }
.reviews-section .section-title { color: #fff; }
.reviews-section .section-sub { color: rgba(255,255,255,.7); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 24px;
  color: #fff;
}
.review-stars { color: #F5A623; font-size: 20px; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { color: rgba(255,255,255,.85); font-size: 14px; margin-bottom: 14px; line-height: 1.6; }
.review-author { font-weight: 700; color: #F5A623; font-size: 14px; }
.review-source { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ===== STATS ===== */
.stats-section { background: #1A3A6B; padding: 40px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #F5A623;
  display: block;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,.8); }

/* ===== ZONES ===== */
.zones-section { padding: 50px 0; background: #f8fafd; }
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.zone-tag {
  background: #fff;
  border: 1px solid #dde8f5;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #1A3A6B;
  text-align: center;
  transition: background .2s;
}
.zone-tag:hover { background: #1A3A6B; color: #fff; }

/* ===== FOOTER ===== */
.footer { background: #0D1F3C; color: #fff; padding: 50px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-logo { width: 60px; height: 60px; object-fit: contain; border-radius: 8px; margin-bottom: 14px; }
.footer-col p { color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.7; }
.footer-phone {
  display: inline-block;
  color: #F5A623;
  font-weight: 700;
  font-size: 16px;
  margin-top: 10px;
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  color: #F5A623;
  text-transform: uppercase;
  margin-bottom: 14px;
  border-bottom: 2px solid rgba(245,166,35,.3);
  padding-bottom: 6px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: color .2s;
}
.footer-col ul a:hover { color: #F5A623; }
.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 16px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,.5); font-size: 13px; }
.footer-bottom a { color: #F5A623; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main-content { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-desktop { display: none; }
  .hamburger { display: block; }
  .hero-content { padding: 40px 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
