
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #1B3A6B;
  --navy-dark: #122850;
  --navy-light: #2a5298;
  --orange: #F36F21;
  --orange-dark: #d45a10;
  --orange-light: #ff8c42;
  --white: #ffffff;
  --gray-50: #F8F9FA;
  --gray-100: #F5F5F5;
  --gray-200: #E9ECEF;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --gold: #F59E0B;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}
html { scroll-behavior: smooth;
overflow-x: hidden;}
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── HEADER ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  padding: 0 2rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: background var(--transition);
}
#header.scrolled { background: rgba(18,40,80,0.97); backdrop-filter: blur(8px); }
.logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; }
.logo-icon { width: 38px; height: 38px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
nav { display: flex; align-items: center; gap: 2rem; }
nav a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; transition: color var(--transition); }
nav a:hover { color: var(--white); }
.header-cta {
  background: var(--orange); color: var(--white);
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.header-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy-dark); z-index: 999; flex-direction: column;
  padding: 2rem; gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--white); font-size: 1.2rem; font-weight: 500; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }

/* ── HERO ── */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1600&q=85') center/cover no-repeat;
  padding: 120px 2rem 80px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,40,80,0.85) 0%, rgba(27,58,107,0.7) 60%, rgba(243,111,33,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 860px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(243,111,33,0.2); border: 1px solid rgba(243,111,33,0.5);
  color: #ffb380; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero-content h1 {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white); line-height: 1.15; margin-bottom: 1.25rem;
}
.hero-content h1 span { color: var(--orange-light); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.88); margin-bottom: 2.5rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 16px 32px; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; gap: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(243,111,33,0.4);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(243,111,33,0.5); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 16px 32px; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 10px;
  transition: background var(--transition), border-color var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.trust-badges { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 500; }
.trust-badge i { color: #4ade80; font-size: 14px; }

/* ── SECTIONS SHARED ── */
section { padding: 90px 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }
.section-sub { font-size: 1.05rem; color: var(--gray-600); max-width: 580px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── SERVICES ── */
#services { background: var(--gray-50); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-200); transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.service-card-body { padding: 1.25rem; }
.service-icon { width: 40px; height: 40px; background: rgba(243,111,33,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--orange); margin-bottom: 0.75rem; }
.service-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.4rem; }
.service-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.5; margin-bottom: 0.75rem; }
.service-link { font-size: 0.85rem; font-weight: 600; color: var(--orange); display: flex; align-items: center; gap: 5px; }
.service-link:hover { gap: 8px; }

/* ── TRUST STATS ── */
#trust { background: var(--navy); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-icon { font-size: 2.5rem; color: var(--orange); margin-bottom: 1rem; }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: 2.5rem; color: var(--white); margin-bottom: 0.3rem; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ── HOW IT WORKS ── */
#how { background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 40px; left: 16.5%; right: 16.5%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0, var(--orange) 10px, transparent 10px, transparent 20px);
}
.step-card { text-align: center; padding: 2rem 1.5rem; }
.step-num {
  width: 72px; height: 72px; background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
  font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--white);
  position: relative; z-index: 1; box-shadow: 0 4px 20px rgba(243,111,33,0.4);
}
.step-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.75rem; }
.step-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* ── TESTIMONIALS ── */
#reviews { background: var(--gray-50); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gray-200); }
.reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.reviewer-loc { font-size: 0.8rem; color: var(--gray-400); }

/* ── SERVICE AREAS ── */
#areas { background: var(--white); }
.usa-map { max-width: 700px; margin: 2rem auto; display: block; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.cities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.5rem 1rem; margin-top: 2rem; }
.city-link { font-size: 0.88rem; color: var(--navy-light); font-weight: 500; padding: 4px 0; transition: color var(--transition); }
.city-link:hover { color: var(--orange); text-decoration: underline; }

/* ── CTA SECTION ── */
#cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 90px 2rem;
}
#cta-section .section-title { color: var(--white); }
#cta-section .section-sub { color: rgba(255,255,255,0.9); }
.cta-phone {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); margin: 1.5rem 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: transform var(--transition);
}
.cta-phone:hover { transform: scale(1.03); }
.cta-phone i { font-size: 2rem; animation: ring 2s ease-in-out infinite; }
@keyframes ring {
  0%,100% { transform: rotate(0); }
  10%,30% { transform: rotate(-15deg); }
  20%,40% { transform: rotate(15deg); }
  50% { transform: rotate(0); }
}
.cta-divider { display: flex; align-items: center; gap: 1rem; margin: 2rem 0; max-width: 600px; }
.cta-divider::before, .cta-divider::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.4); }
.cta-divider span { color: rgba(255,255,255,0.8); font-size: 0.9rem; white-space: nowrap; }
.callback-form { background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius); padding: 2rem; max-width: 600px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.05em; }
.form-field input, .form-field select {
  padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.95);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--gray-800);
  outline: none; transition: border-color var(--transition);
}
.form-field input:focus, .form-field select:focus { border-color: var(--navy); }
.form-full { grid-column: 1 / -1; }
.btn-submit {
  width: 100%; padding: 16px; background: var(--navy);
  color: var(--white); border: none; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: background var(--transition), transform var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--navy-dark); transform: translateY(-2px); }
.form-success { display: none; text-align: center; padding: 1.5rem; }
.form-success i { font-size: 2.5rem; color: #4ade80; margin-bottom: 0.75rem; display: block; }
.form-success p { color: var(--white); font-weight: 600; font-size: 1.05rem; }

/* ── FAQ ── */
#faq { background: var(--gray-50); }
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); margin-bottom: 1rem; overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: var(--navy); transition: background var(--transition); gap: 1rem; }
.faq-q:hover { background: var(--gray-50); }
.faq-q i { font-size: 14px; color: var(--orange); transition: transform var(--transition); flex-shrink: 0; }
.faq-q.open i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding var(--transition); padding: 0 1.5rem; }
.faq-a.open { max-height: 300px; padding: 0 1.5rem 1.25rem; }
.faq-a p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

/* ── FOOTER ── */
footer { background: var(--navy-dark); color: var(--white); padding: 60px 2rem 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-badges { display: flex; gap: 0.75rem; }
.footer-badge { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); padding: 8px 14px; font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.8); }
footer h4 { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; letter-spacing: 0.04em; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
footer ul li a:hover { color: var(--orange); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 0.75rem; line-height: 1.5; }
.footer-contact li i { color: var(--orange); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ── MOBILE FLOATING BAR ── */
#mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--orange); color: var(--white);
  padding: 14px 1.5rem; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  box-shadow: 0 -4px 20px rgba(243,111,33,0.4);
}
#mobile-cta i { font-size: 1.2rem; animation: ring 2s ease-in-out infinite; }

/* ── EXIT POPUP ── */
#exit-popup {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); align-items: center; justify-content: center; padding: 1rem;
}
#exit-popup.show { display: flex; }
.popup-box {
  background: var(--white); border-radius: var(--radius); padding: 2.5rem;
  max-width: 480px; width: 100%; text-align: center; position: relative;
  animation: popIn 0.3s ease;
}
@keyframes popIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--gray-400); }
.popup-icon { font-size: 3rem; margin-bottom: 1rem; }
.popup-box h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--navy); margin-bottom: 0.75rem; }
.popup-box p { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 1.5rem; line-height: 1.6; }
.popup-phone {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--orange); color: var(--white); padding: 16px 32px; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; margin-bottom: 1rem;
  transition: background var(--transition);
}
.popup-phone:hover { background: var(--orange-dark); }
.popup-dismiss { font-size: 0.8rem; color: var(--gray-400); cursor: pointer; }
.popup-dismiss:hover { color: var(--gray-600); }

/* ── URGENCY BANNER ── */
#urgency-bar {
  background: var(--navy); color: var(--white); text-align: center;
  padding: 10px 1rem; font-size: 0.85rem; font-weight: 500;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
}
#urgency-bar span { color: var(--orange-light); font-weight: 700; }
body { padding-top: 36px; }
#header { top: 36px; }
.mobile-nav { top: 108px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    #header {
    position: relative;
    top:13px;
    }
    .header-cta{
        display:none;
    }
    /*#urgency-bar{*/
    /*    display:none;*/
    /*}*/
  nav { display: none; }
  .hamburger { display: flex; }
  .header-cta span.hide-sm { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  #mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  #urgency-bar { font-size: 0.75rem; }
  .hero-btns { flex-direction: column; align-items: center; }
}
