/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; color: #1a1a1a; line-height: 1.6; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== VARIABLES ===== */
:root {
  --navy: #1A2E5A;
  --navy-dark: #111f3e;
  --red: #CC3D1A;
  --red-dark: #a83315;
  --light: #F5F7FA;
  --border: #e2e8f0;
  --muted: #64748b;
  --white: #ffffff;
  --max: 1200px;
}

/* ===== UTILITY ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.section-title { font-size: clamp(24px, 4vw, 38px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.section-title span { color: var(--red); }
.section-sub { font-size: 16px; color: var(--muted); max-width: 600px; line-height: 1.7; }
section { padding: 80px 0; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-weight: 700; font-size: 16px; padding: 14px 30px; border-radius: 6px; border: 2px solid var(--red); transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn-primary.lg { font-size: 18px; padding: 16px 34px; }
.btn-primary svg, .btn-outline svg, .btn-white svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; font-weight: 700; font-size: 16px; padding: 14px 30px; border-radius: 6px; border: 2px solid rgba(255,255,255,0.55); transition: all 0.2s; white-space: nowrap; }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--red); font-weight: 700; font-size: 16px; padding: 14px 30px; border-radius: 6px; border: 2px solid #fff; transition: all 0.2s; white-space: nowrap; }
.btn-white:hover { background: #f1f1f1; }
.btn-white.lg { font-size: 18px; padding: 16px 34px; }

/* ===== SEO HIDDEN ===== */
.seo-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; pointer-events: none; }

/* ===== TOP BAR ===== */
.topbar { background: var(--navy-dark); color: rgba(255,255,255,0.8); font-size: 13px; padding: 8px 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 6px; transition: color 0.15s; }
.topbar a:hover { color: var(--red); }
.topbar-badge { background: var(--red); color: #fff; font-weight: 700; font-size: 11px; padding: 2px 9px; border-radius: 20px; letter-spacing: 0.5px; white-space: nowrap; }
.topbar-right { display: flex; align-items: center; gap: 10px; }

/* ===== HEADER ===== */
header { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 16px rgba(0,0,0,0.08); border-bottom: 3px solid var(--red); }
nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; max-width: var(--max); margin: 0 auto; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 60px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--navy); font-size: 14px; font-weight: 600; padding: 8px 12px; border-radius: 5px; transition: color 0.15s, background 0.15s; }
.nav-links a:hover { color: var(--red); background: rgba(204,61,26,0.06); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.phone-pill { display: flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-weight: 800; font-size: 15px; padding: 10px 20px; border-radius: 6px; transition: background 0.2s; white-space: nowrap; }
.phone-pill:hover { background: var(--red-dark); }
.phone-pill svg { width: 16px; height: 16px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border: none; background: none; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; display: block; }
.mobile-menu { display: none; flex-direction: column; background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.85); font-weight: 600; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 15px; }
.mobile-menu a:hover { color: var(--red); background: rgba(255,255,255,0.04); }
.mobile-menu-cta { margin: 16px 20px 20px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { background: var(--light); border-bottom: 1px solid var(--border); padding: 12px 20px; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--navy); font-weight: 600; }
.breadcrumb a:hover { color: var(--red); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d1f45 0%, #1A2E5A 60%, #1e3a6e 100%);
  overflow: hidden;
  padding: 80px 0;
}
.hero-bg { position: absolute; inset: 0; background-image: var(--hero-bg-img, none); background-size: cover; background-position: center; opacity: 0.2; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,20,50,0.9) 0%, rgba(10,20,50,0.5) 100%); z-index: 1; }
.hero-inner { position: relative; z-index: 2; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.hero-content { max-width: 620px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(204,61,26,0.2); border: 1px solid rgba(204,61,26,0.45); color: #ffaa88; font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 30px; margin-bottom: 20px; letter-spacing: 0.4px; }
.hero-badge::before { content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero h1 { font-size: clamp(32px, 5vw, 60px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: #ff8c5a; }
.hero-sub { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 520px; line-height: 1.65; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.72); font-size: 13px; font-weight: 600; }
.hero-trust-item svg { color: var(--red); width: 15px; height: 15px; flex-shrink: 0; }
.hero-card { background: rgba(255,255,255,0.07); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: 28px 26px; min-width: 240px; flex-shrink: 0; }
.hero-card h3 { color: #fff; font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.hero-card-sub { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 18px; }
.hero-stat { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat-num { font-size: 26px; font-weight: 900; color: var(--red); line-height: 1; min-width: 56px; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.35; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--red); }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 20px 22px; border-right: 1px solid rgba(255,255,255,0.2); }
.trust-item:last-child { border-right: none; }
.trust-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 20px; height: 20px; color: #fff; }
.trust-label { font-weight: 800; font-size: 14px; color: #fff; line-height: 1.2; }
.trust-desc { font-size: 12px; color: rgba(255,255,255,0.8); margin-top: 2px; }

/* ===== SERVICES ===== */
.services { background: var(--light); }
.services-header { text-align: center; margin-bottom: 48px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: #fff; border-radius: 14px; padding: 30px 26px; border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.service-card:hover { box-shadow: 0 10px 36px rgba(26,46,90,0.1); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; background: rgba(204,61,26,0.09); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon svg { width: 26px; height: 26px; color: var(--red); }
.service-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.service-link { font-size: 14px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.15s; }
.service-link:hover { gap: 8px; }
.service-card.emergency { background: linear-gradient(135deg, var(--navy), var(--navy-dark)); border-color: var(--navy); }
.service-card.emergency .service-icon { background: rgba(255,255,255,0.12); }
.service-card.emergency .service-icon svg { color: #fff; }
.service-card.emergency h3 { color: #fff; }
.service-card.emergency p { color: rgba(255,255,255,0.65); }
.service-card.emergency .service-link { color: #ffaa88; }

/* ===== WHY US ===== */
.why-us { background: #fff; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image-col { border-radius: 16px; overflow: hidden; height: 440px; background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 100%); position: relative; }
.why-image-col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.why-image-placeholder { text-align: center; color: rgba(255,255,255,0.35); padding: 40px; }
.why-image-placeholder svg { width: 72px; height: 72px; margin: 0 auto 14px; }
.why-image-placeholder p { font-size: 14px; line-height: 1.5; }
.why-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-weight: 800; font-size: 13px; padding: 7px 16px; border-radius: 30px; margin-bottom: 20px; }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.why-point { display: flex; gap: 16px; }
.why-check { width: 34px; height: 34px; background: rgba(204,61,26,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.why-check svg { width: 17px; height: 17px; color: var(--red); }
.why-point h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-point p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--navy); padding: 80px 0; }
.how-header { text-align: center; margin-bottom: 48px; }
.how-header .section-title { color: #fff; }
.how-header .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.how-grid::before { content: ''; position: absolute; top: 35px; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--red), rgba(204,61,26,0.2)); z-index: 0; }
.how-step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 70px; height: 70px; border-radius: 50%; background: var(--red); color: #fff; font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; border: 4px solid var(--navy); box-shadow: 0 0 0 2px var(--red); }
.how-step h3 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.how-step p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ===== SERVICE AREAS ===== */
.areas { background: var(--light); }
.areas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.areas-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
.area-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--navy); padding: 10px 14px; background: #fff; border-radius: 8px; border: 1px solid var(--border); transition: border-color 0.15s, color 0.15s, background 0.15s; }
.area-item svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }
a.area-item:hover { border-color: var(--red); color: var(--red); background: rgba(204,61,26,0.04); }
.area-item.active { border-color: var(--red); background: rgba(204,61,26,0.06); font-weight: 700; }
.contact-box { background: var(--navy); border-radius: 16px; padding: 34px 30px; color: #fff; position: sticky; top: 100px; }
.contact-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.contact-box > p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 22px; }
.contact-row { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-row:last-of-type { border-bottom: none; margin-bottom: 20px; }
.contact-row svg { width: 19px; height: 19px; color: var(--red); flex-shrink: 0; }
.contact-row-label { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.2; }
.contact-row-value { font-size: 15px; font-weight: 700; color: #fff; display: block; word-break: break-word; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #fff; }
.testimonials-header { text-align: center; margin-bottom: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--light); border-radius: 14px; padding: 26px; border: 1px solid var(--border); }
.stars { color: #f59e0b; font-size: 17px; margin-bottom: 12px; letter-spacing: 1px; }
.review-text { font-size: 14px; color: #374151; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.author-name { font-weight: 700; color: var(--navy); font-size: 14px; }
.author-loc { font-size: 12px; color: var(--muted); }

/* ===== FAQ ===== */
.faq { background: var(--light); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border-radius: 10px; border: 1px solid var(--border); overflow: hidden; }
.faq-q { width: 100%; text-align: left; padding: 17px 20px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-weight: 700; font-size: 15px; color: var(--navy); font-family: inherit; }
.faq-q svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; transition: transform 0.2s; }
.faq-q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; font-size: 14px; color: var(--muted); line-height: 1.75; }
.faq-a.open { max-height: 280px; padding: 0 20px 16px; }

/* ===== CITY INTRO ===== */
.city-intro { background: #fff; border-bottom: 1px solid var(--border); }
.city-intro-inner { max-width: 820px; }
.city-intro p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.city-intro p:last-child { margin-bottom: 0; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); padding: 72px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 900; color: #fff; margin-bottom: 14px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 34px; }
.cta-banner-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 58px; width: auto; object-fit: contain; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 240px; }
.footer-heading { font-size: 12px; font-weight: 700; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-links a:hover { color: var(--red); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--red); }
.footer-phone { font-size: 16px; font-weight: 800; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; }

/* ===== FLOATING CALL BUTTON ===== */
.float-call { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px); z-index: 99; display: flex; align-items: center; gap: 10px; background: var(--red); color: #fff; font-weight: 800; font-size: 17px; padding: 15px 32px; border-radius: 50px; box-shadow: 0 6px 28px rgba(204,61,26,0.55); white-space: nowrap; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s, opacity 0.3s; opacity: 0; pointer-events: none; }
.float-call.visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
.float-call:hover { box-shadow: 0 8px 36px rgba(204,61,26,0.7); }
.float-call svg { width: 19px; height: 19px; flex-shrink: 0; }

/* ===== SCROLL TO TOP ===== */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 42px; height: 42px; background: var(--navy); color: #fff; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; box-shadow: 0 4px 14px rgba(26,46,90,0.35); z-index: 50; }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-card { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 56px 0; }
  .hero { min-height: auto; padding: 56px 0 64px; }
  .hero-content { text-align: center; }
  .hero-badge { display: inline-flex; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-trust { justify-content: center; }
  .why-image-col { height: 280px; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image-col { min-height: 260px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-grid::before { display: none; }
  .areas-inner { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .scroll-top { bottom: 90px; right: 16px; }
}
@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .trust-item:last-child { border-bottom: none; }
  .how-grid { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .float-call { font-size: 15px; padding: 13px 24px; }
  .cta-banner-btns a { width: 100%; justify-content: center; }
}
