/* ================================================
   Compass Insurance Co. — Main Stylesheet
   Colors: GEICO Green #00A550 | Navy #1B2A4A | White #FFFFFF
   ================================================ */

:root {
  --green:       #00A550;
  --green-dark:  #008942;
  --green-light: #e6f7ee;
  --navy:        #1B2A4A;
  --navy-light:  #2d4270;
  --white:       #ffffff;
  --gray-light:  #F7F9FC;
  --gray-mid:    #E8ECF2;
  --gray-text:   #6B7280;
  --text:        #111827;
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.12);
  --radius:      10px;
  --transition:  all 0.25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--gray-text); }
.section-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; }

/* ---- Arrow Animation ---- */
@keyframes bounce-right {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,165,80,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(0,165,80,0); }
}
.arrow-right {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--green); font-weight: 800; font-size: 1.1rem;
  animation: bounce-right 1.4s ease-in-out infinite;
  margin-top: 1.25rem;
}
.start-here-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green); color: white; font-weight: 800;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 20px;
  animation: pulse-glow 1.8s ease-in-out infinite;
  margin-bottom: 0.85rem;
}
.start-here-badge svg { animation: bounce-down 1.4s ease-in-out infinite; }
.savings-line {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(0,165,80,0.12); border: 1px solid rgba(0,165,80,0.25);
  border-radius: 6px; padding: 0.6rem 0.9rem; margin-bottom: 1rem;
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
}
.savings-line svg { color: var(--green); min-width: 16px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.85rem 1.8rem; border-radius: 6px; font-weight: 700;
  font-size: 1rem; cursor: pointer; transition: var(--transition); border: none;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,165,80,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--green); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---- Layout ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 80px 0; }
.section-alt { background: var(--gray-light); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-green { background: var(--green); color: var(--white); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--gray-mid);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.5rem; max-width: 1260px; margin: 0 auto; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-text { font-size: 1.25rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.logo-text span { color: var(--green); }
.site-nav { display: flex; align-items: center; gap: 0.15rem; flex-shrink: 0; }
.site-nav > a, .site-nav > .nav-dropdown > a { 
  padding: 0.45rem 0.75rem; border-radius: 6px; font-weight: 500; 
  font-size: 0.88rem; color: var(--navy); transition: var(--transition); 
  white-space: nowrap; display: block;
}
.site-nav > a:hover, .site-nav > .nav-dropdown > a:hover { background: var(--green-light); color: var(--green); }
.header-cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-phone { 
  display: flex; align-items: center; gap: 0.35rem; font-weight: 700; 
  color: var(--navy); font-size: 0.92rem; white-space: nowrap;
}
.header-phone svg { color: var(--green); min-width: 15px; }
/* ---- Dropdown Nav ---- */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.65rem; opacity: 0.6; }
.dropdown-menu {
  visibility: hidden; opacity: 0; pointer-events: none;
  position: absolute; top: 100%; left: 0;
  margin-top: 6px;
  background: var(--white); border-radius: 10px; min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14); padding: 0.4rem 0;
  z-index: 200; border: 1px solid var(--gray-mid);
  transition: opacity 0.15s ease, visibility 0s linear 0.35s;
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.dropdown-menu a {
  display: block; padding: 0.48rem 1rem; font-size: 0.85rem;
  color: var(--navy); font-weight: 500; border-radius: 0;
  transition: var(--transition); white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--green-light); color: var(--green); padding-left: 1.3rem; }
.dropdown-divider { height: 1px; background: var(--gray-mid); margin: 0.3rem 0; }
.dropdown-label { 
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; 
  text-transform: uppercase; color: var(--gray-text); 
  padding: 0.45rem 1rem 0.2rem;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  visibility: visible; opacity: 1; pointer-events: auto;
  transition: opacity 0.15s ease, visibility 0s linear 0s;
}

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.mobile-nav { display: none; background: var(--white); border-top: 1px solid var(--gray-mid); padding: 1rem 1.5rem; }
.mobile-nav a { display: block; padding: 0.7rem 0; font-weight: 500; color: var(--navy); border-bottom: 1px solid var(--gray-mid); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-phone { display: block; margin-top: 1rem; }
.mobile-nav.open { display: block; }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #243660 100%);
  padding: 80px 0 70px; color: var(--white); overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,165,80,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center; max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.hero-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 0.75rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--green); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 500px; }
.hero-trust { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.hero-trust-item svg { color: var(--green); }
.stars { color: #FFD700; font-size: 1.1rem; letter-spacing: 0.05em; }

/* Quote Form Card */
.quote-card {
  background: var(--white); border-radius: 14px; padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25); position: relative;
}
.quote-card h3 { color: var(--navy); margin-bottom: 0.25rem; font-size: 1.35rem; }
.quote-card p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid var(--gray-mid);
  border-radius: 6px; font-size: 0.95rem; color: var(--text); background: var(--white);
  transition: var(--transition); font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,165,80,0.1); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 0.75rem; color: var(--gray-text); margin-top: 0.75rem; text-align: center; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--green); padding: 1.2rem 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; color: var(--white); font-weight: 600; font-size: 0.95rem; }
.trust-item svg { opacity: 0.9; }
.trust-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.3); }

/* ============================================
   SERVICES
   ============================================ */
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.75rem;
  box-shadow: var(--shadow); border: 1.5px solid var(--gray-mid);
  transition: var(--transition); display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.service-icon { width: 52px; height: 52px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.service-icon svg { color: var(--green); }
.service-card h3 { color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; flex: 1; }
.service-link { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--green); font-weight: 600; font-size: 0.9rem; margin-top: 1.25rem; transition: var(--transition); }
.service-link:hover { gap: 0.6rem; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--gray-mid); }
.why-item:last-child { border-bottom: none; }
.why-icon { width: 44px; height: 44px; min-width: 44px; background: var(--green-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.why-icon svg { color: var(--green); }
.why-text h3 { color: var(--navy); margin-bottom: 0.25rem; font-size: 1.05rem; }
.why-text p { font-size: 0.9rem; }
.why-image { border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, var(--navy), #2d4270); padding: 3rem 2rem; color: white; text-align: center; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.stat-box { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 1.25rem; text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--green); line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-top: 0.25rem; }

/* ============================================
   ABOUT
   ============================================ */
.about-img { border-radius: 14px; background: linear-gradient(145deg, var(--navy), var(--navy-light)); min-height: 360px; display: flex; align-items: center; justify-content: center; }
.about-placeholder { text-align: center; color: white; padding: 2rem; }
.about-placeholder svg { opacity: 0.3; margin: 0 auto 1rem; }
.credentials { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.credential { display: flex; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem; background: var(--green-light); border-radius: 8px; border-left: 3px solid var(--green); }
.credential svg { color: var(--green); min-width: 18px; }
.credential span { font-size: 0.9rem; font-weight: 500; color: var(--navy); }

/* ============================================
   PROCESS
   ============================================ */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; position: relative; }
.process-grid::before { content: ''; position: absolute; top: 35px; left: 16.67%; right: 16.67%; height: 2px; background: var(--gray-mid); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 70px; height: 70px; background: var(--white); border: 3px solid var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.5rem; font-weight: 800; color: var(--green); }
.process-step h3 { color: var(--navy); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; max-width: 200px; margin: 0 auto; }

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.review-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); border: 1.5px solid var(--gray-mid); }
.review-stars { color: #FFD700; font-size: 1rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.92rem; color: var(--text); font-style: italic; margin-bottom: 1rem; line-height: 1.7; }
.review-author { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.review-location { font-size: 0.8rem; color: var(--gray-text); }
.reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: gap; gap: 1rem; }
.google-badge { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem; border: 1.5px solid var(--gray-mid); border-radius: 8px; }
.google-badge .rating-num { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.google-badge .rating-info { font-size: 0.8rem; color: var(--gray-text); }
.google-badge .rating-info strong { display: block; color: var(--navy); font-size: 0.85rem; }

/* ============================================
   SERVICE AREAS
   ============================================ */
.area-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.area-tag { background: var(--green-light); color: var(--green); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(0,165,80,0.2); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, #243660 100%); padding: 80px 0; text-align: center; color: var(--white); }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #0f1a2e; color: rgba(255,255,255,0.7); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .logo-text { color: var(--white); margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.88rem; padding: 0.25rem 0; transition: var(--transition); }
.footer-col a:hover { color: var(--green); }
.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; padding: 0.25rem 0; }
.footer-contact-item svg { color: var(--green); min-width: 16px; }
.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.82rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.82rem; }
.footer-links a:hover { color: var(--green); }
.footer-green-bar { height: 4px; background: var(--green); }

/* ============================================
   PRODUCT PAGE SIDEBAR
   ============================================ */
.lp-body { max-width: 1160px; margin: 0 auto; padding: 60px 1.5rem; display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }
.lp-main { min-width: 0; }
.lp-sidebar { position: sticky; top: 90px; }
.service-box { background: var(--white); border-radius: 12px; box-shadow: var(--shadow-md); border: 1.5px solid var(--gray-mid); overflow: hidden; }
.service-box-top { background: var(--navy); padding: 1.75rem 1.5rem; text-align: center; color: var(--white); }
.service-box-top .check-circle { width: 48px; height: 48px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.service-box-top p { color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.service-box-top h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.6rem; }
.service-box-top .sub { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; text-transform: none; letter-spacing: 0; }
.service-box-divider { height: 1px; background: var(--gray-mid); }
.service-box-bottom { padding: 0.5rem 0; }
.service-box-bottom h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-text); padding: 0.75rem 1.25rem 0.4rem; }
.service-option { display: flex; align-items: center; gap: 0.75rem; padding: 0.7rem 1.25rem; color: var(--navy); font-weight: 500; font-size: 0.88rem; border-bottom: 1px solid var(--gray-mid); transition: var(--transition); }
.service-option:last-child { border-bottom: none; }
.service-option:hover { background: var(--green-light); color: var(--green); }
.service-option-icon { width: 32px; height: 32px; min-width: 32px; background: var(--green-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.service-option-icon svg { color: var(--green); }
@media (max-width: 768px) {
  .lp-body { grid-template-columns: 1fr; padding: 40px 1.5rem; }
  .lp-sidebar { position: static; }
}

/* ============================================
   LANDING PAGE SPECIFIC
   ============================================ */
.lp-hero { background: linear-gradient(135deg, var(--navy) 0%, #243660 100%); padding: 22px 0; color: var(--white); }
.lp-hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
.breadcrumb a { color: var(--green); }
.lp-hero h1 { color: var(--white); margin-bottom: 1rem; }
.lp-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 1.5rem; }
.lp-features { display: flex; flex-direction: column; gap: 0.6rem; }
.lp-feature { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.lp-feature svg { color: var(--green); min-width: 18px; }

/* Coverage detail sections */
.coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.coverage-item { padding: 1.5rem; background: var(--white); border-radius: var(--radius); border: 1.5px solid var(--gray-mid); box-shadow: var(--shadow); }
.coverage-item h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.coverage-item h3 svg { color: var(--green); }
.coverage-item p { font-size: 0.88rem; }

/* ============================================
   THANK YOU PAGE
   ============================================ */
.ty-section { min-height: 80vh; display: flex; align-items: center; background: var(--gray-light); }
.ty-card { background: var(--white); border-radius: 16px; padding: 3rem; text-align: center; box-shadow: var(--shadow-md); max-width: 560px; margin: 0 auto; }
.ty-icon { width: 80px; height: 80px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.ty-icon svg { color: var(--green); }
.ty-card h1 { font-size: 2rem; color: var(--navy); margin-bottom: 0.75rem; }
.ty-card p { max-width: 400px; margin: 0 auto 1.5rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero { background: linear-gradient(135deg, var(--navy) 0%, #243660 100%); padding: 70px 0; color: var(--white); text-align: center; }
.about-hero h1 { color: var(--white); margin-bottom: 1rem; }
.about-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero { background: linear-gradient(135deg, var(--navy) 0%, #243660 100%); padding: 60px 0; color: var(--white); text-align: center; }
.contact-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.contact-hero p { color: rgba(255,255,255,0.8); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-info-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border: 1.5px solid var(--gray-mid); }
.contact-info-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--gray-mid); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 44px; height: 44px; min-width: 44px; background: var(--green-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.contact-info-icon svg { color: var(--green); }
.contact-info-text strong { display: block; color: var(--navy); font-size: 0.9rem; margin-bottom: 0.15rem; }
.contact-info-text span { font-size: 0.9rem; color: var(--gray-text); }

/* ============================================
   PRIVACY / TERMS
   ============================================ */
.legal-hero { background: var(--navy); padding: 60px 0; color: var(--white); text-align: center; }
.legal-hero h1 { color: var(--white); font-size: 2rem; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 60px 1.5rem; }
.legal-content h2 { color: var(--navy); margin: 2rem 0 0.75rem; font-size: 1.3rem; }
.legal-content p, .legal-content li { color: var(--gray-text); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-content ul { padding-left: 1.5rem; list-style: disc; }

/* ============================================
   CONTACT CARDS (contact.html)
   ============================================ */
.contact-card { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 1px solid #e5e7eb; border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.contact-card-icon { width: 48px; height: 48px; min-width: 48px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green); }
.contact-card-content h3 { color: var(--navy); font-size: 1rem; margin-bottom: 0.25rem; }
.contact-card-content p { color: var(--gray-text); font-size: 0.9rem; margin: 0 0 0.25rem; }
.contact-link { color: var(--green); font-weight: 600; font-size: 1rem; text-decoration: none; }
.contact-link:hover { text-decoration: underline; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem 1rem; font-size: 0.9rem; color: var(--gray-text); }

/* ============================================
   THANK YOU PAGE (thank-you.html)
   ============================================ */
.ty-message { font-size: 1.1rem; color: var(--gray-text); max-width: 440px; margin: 0 auto 1.5rem; }
.ty-details { background: var(--gray-light); border-radius: 10px; padding: 1.25rem; margin-bottom: 1.5rem; }
.ty-details p { color: var(--gray-text); font-size: 0.95rem; margin-bottom: 0.5rem; }
.ty-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 800; color: var(--green); text-decoration: none; }
.ty-phone:hover { text-decoration: underline; }
.ty-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.ty-trust { border-top: 1px solid #e5e7eb; padding-top: 1.25rem; color: var(--gray-text); font-size: 0.9rem; }
.ty-trust p { margin-top: 0.4rem; }

/* ============================================
   CREDENTIAL ITEMS (about.html)
   ============================================ */
.credential-icon { width: 40px; height: 40px; min-width: 40px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--white); }
.credential-text { display: flex; flex-direction: column; gap: 0.15rem; }
.credential-text strong { color: var(--navy); font-size: 0.95rem; }
.credential-text span { color: var(--gray-text); font-size: 0.85rem; }

/* ============================================
   LEGAL EXTRAS (privacy-policy.html, terms.html)
   ============================================ */
.legal-content h3 { color: var(--navy); margin: 1.25rem 0 0.5rem; font-size: 1.05rem; }
.legal-content a { color: var(--green); text-decoration: underline; }
.legal-hero p { color: rgba(255,255,255,0.7); margin-top: 0.5rem; font-size: 0.95rem; }
.legal-contact-box { background: var(--gray-light); border-left: 4px solid var(--green); border-radius: 6px; padding: 1.25rem 1.5rem; margin-top: 1rem; }
.legal-contact-box p { margin: 0; line-height: 1.9; }

/* ============================================
   BUTTON EXTRA SIZES
   ============================================ */
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.82rem; }

/* ============================================
   UTILITIES
   ============================================ */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-green { color: var(--green); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.bg-white { background: var(--white); }
.badge { display: inline-block; background: var(--green-light); color: var(--green); padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .site-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .quote-card { margin-top: 2rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .trust-bar-inner { gap: 1.5rem; }
  .trust-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .lp-hero-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
