/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #E8A020;
  --gold-dk: #C07810;
  --dark:    #1A1A1A;
  --charcoal:#2D2D2D;
  --mid:     #555;
  --light:   #F5F4F0;
  --white:   #FFFFFF;
  --font-h:  'Oswald', sans-serif;
  --font-b:  'Source Sans 3', sans-serif;
  --ease:    0.3s ease;
  --shadow:  0 8px 32px rgba(0,0,0,0.14);
  --radius:  6px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--white); color: var(--dark); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
}
.nav-logo {
  font-family: var(--font-h); font-size: 1.15rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.5px; line-height: 1.2;
}
.nav-logo span { color: var(--gold); }
.nav-logo em { font-style: normal; font-size: 0.8rem; color: #aaa; margin-left: 3px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.88rem; font-weight: 600; color: #bbb; text-transform: uppercase; letter-spacing: 0.5px; transition: color var(--ease); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--dark) !important; padding: 0.4rem 1.1rem; border-radius: 3px; font-weight: 700 !important; transition: background var(--ease) !important; }
.nav-cta:hover { background: var(--gold-dk) !important; }
.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--white); transition: var(--ease); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--dark);
  font-family: var(--font-h); font-size: 1rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: 3px; border: none; cursor: pointer;
  transition: background var(--ease), transform var(--ease);
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-dk); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--white);
  font-family: var(--font-h); font-size: 1rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 0.85rem 2rem; border-radius: 3px; border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer; transition: border-color var(--ease), color var(--ease);
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-dark {
  display: inline-block; margin-top: 0.5rem;
  background: transparent; color: var(--dark);
  font-family: var(--font-h); font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 0.55rem 1.2rem; border-radius: 3px;
  border: 2px solid var(--dark); transition: all var(--ease);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

/* ── HERO ── */
#hero {
  min-height: 100vh; padding-top: 68px;
  background: linear-gradient(140deg, var(--dark) 0%, #2a2a2a 55%, #3a2800 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(232,160,32,0.025) 50px, rgba(232,160,32,0.025) 100px);
}
#hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 70px;
  background: var(--white); clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 4rem 5%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232,160,32,0.12); border: 1px solid rgba(232,160,32,0.5);
  color: var(--gold); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 2px; margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-h); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; color: var(--white); text-transform: uppercase;
  line-height: 1.08; letter-spacing: 1px; margin-bottom: 1.2rem;
}
.hero-title span { color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: #bbb; max-width: 500px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.4rem; color: #999; font-size: 0.82rem; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.hero-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(232,160,32,0.2);
  border-radius: var(--radius); padding: 2rem; backdrop-filter: blur(6px);
}
.hero-card h3 {
  font-family: var(--font-h); color: var(--gold); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.2rem;
}
.service-pill {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #ddd; font-size: 0.95rem;
}
.service-pill:last-of-type { border-bottom: none; }
.service-pill span { font-size: 1.2rem; }

/* ── STATS BAR ── */
.stats-bar { background: var(--gold); padding: 1.2rem 5%; }
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1rem;
}
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-h); font-size: 1.8rem; font-weight: 700; color: var(--dark); line-height: 1; }
.stat span { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(26,26,26,0.7); }

/* ── SECTIONS ── */
section { padding: 5rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }

.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-h); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; text-transform: uppercase; color: var(--dark);
  line-height: 1.12; margin-bottom: 0.8rem;
}
.section-title span { color: var(--gold); }
.section-desc { font-size: 1rem; color: var(--mid); max-width: 560px; margin-bottom: 3rem; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; }
.service-card { border: 1px solid #e5e5e5; border-radius: var(--radius); overflow: hidden; transition: box-shadow var(--ease), transform var(--ease); background: var(--white); }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.sc-top { background: var(--dark); padding: 1.8rem 1.5rem 1.4rem; position: relative; }
.sc-top::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 18px; background: var(--white); clip-path: polygon(0 100%, 100% 100%, 100% 0); }
.sc-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.sc-top h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; color: var(--white); }
.sc-line { display: block; width: 36px; height: 3px; background: var(--gold); margin-top: 0.6rem; }
.sc-body { padding: 1.4rem 1.5rem; }
.sc-body p { font-size: 0.9rem; color: var(--mid); margin-bottom: 1rem; }
.check-list { list-style: none; margin-bottom: 1.2rem; }
.check-list li { font-size: 0.86rem; color: var(--mid); padding: 0.28rem 0; display: flex; align-items: flex-start; gap: 0.5rem; }
.check-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.link-more { font-size: 0.85rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.5px; transition: color var(--ease); }
.link-more:hover { color: var(--gold-dk); }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 1.8rem 1.5rem; border-left: 4px solid var(--gold); box-shadow: 0 2px 10px rgba(0,0,0,0.06); transition: transform var(--ease), box-shadow var(--ease); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon { font-size: 1.8rem; margin-bottom: 0.7rem; }
.why-card h4 { font-family: var(--font-h); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.88rem; color: var(--mid); }

/* ── AREAS GRID ── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.area-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(232,160,32,0.2);
  border-radius: var(--radius); padding: 1.3rem 1rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
  cursor: pointer;
}
.area-card:hover { background: rgba(232,160,32,0.12); border-color: var(--gold); transform: translateY(-3px); }
.area-icon { font-size: 1.4rem; }
.area-card strong { font-family: var(--font-h); font-size: 1rem; color: var(--white); text-transform: uppercase; }
.area-card span { font-size: 0.75rem; color: #888; }

/* ── INSURANCE ── */
.insurance-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ins-left p { color: var(--mid); font-size: 0.97rem; }
.ins-box { background: var(--dark); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(232,160,32,0.25); }
.ins-box h4 { font-family: var(--font-h); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 1.2rem; }
.ins-row { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.88rem; }
.ins-row:last-child { border-bottom: none; }
.ins-row span { color: #888; }
.ins-row strong { color: var(--gold); font-family: var(--font-h); font-size: 0.9rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.cinfo-item { display: flex; align-items: flex-start; gap: 1rem; }
.cinfo-icon { width: 44px; height: 44px; background: var(--dark); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cinfo-item h5 { font-family: var(--font-h); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 0.15rem; }
.cinfo-item a, .cinfo-item p { font-size: 0.95rem; color: var(--mid); }
.cinfo-item a:hover { color: var(--gold); }
.review-cta { margin-top: 0.5rem; padding: 1.2rem; background: var(--light); border-radius: var(--radius); border-left: 3px solid var(--gold); }
.review-cta p { font-size: 0.88rem; color: var(--mid); }

/* ── LEAD FORM ── */
.lead-form { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: 0 4px 24px rgba(0,0,0,0.09); }
.form-title { font-family: var(--font-h); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; color: var(--dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--mid); margin-bottom: 0.3rem; }
input, select, textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid #ddd; border-radius: 4px;
  font-family: var(--font-b); font-size: 0.95rem; color: var(--dark);
  background: var(--white); transition: border-color var(--ease); outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  width: 100%; background: var(--gold); color: var(--dark);
  font-family: var(--font-h); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 1rem; border: none; border-radius: 4px; cursor: pointer;
  margin-top: 0.5rem; transition: background var(--ease), transform var(--ease);
}
.btn-submit:hover { background: var(--gold-dk); transform: translateY(-2px); }
.form-note { font-size: 0.78rem; color: #aaa; text-align: center; margin-top: 0.6rem; }
.form-success { text-align: center; padding: 2rem 1rem; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { font-family: var(--font-h); font-size: 1.4rem; color: var(--dark); margin-bottom: 0.5rem; }
.form-success p { color: var(--mid); }
.form-success a { color: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--dark); color: #888; padding: 3rem 5% 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.7rem; }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; color: #777; line-height: 1.6; }
.footer-phone { display: inline-block; margin-top: 0.8rem; color: var(--gold); font-family: var(--font-h); font-size: 1rem; font-weight: 600; }
.footer-links h5 { font-family: var(--font-h); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 1rem; }
.footer-links a { display: block; font-size: 0.87rem; color: #777; padding: 0.25rem 0; transition: color var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.2rem; font-size: 0.8rem; text-align: center; }
.footer-bottom a { color: var(--gold); }

/* ── FLOATING BUTTON ── */
.float-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  background: var(--gold); color: var(--dark);
  font-family: var(--font-h); font-size: 0.88rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  padding: 0.8rem 1.4rem; border-radius: 50px;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 6px 24px rgba(232,160,32,0.45);
  animation: goldPulse 2.5s infinite;
  transition: transform var(--ease);
}
.float-btn:hover { transform: translateY(-3px); }
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(232,160,32,0.45); }
  50% { box-shadow: 0 6px 36px rgba(232,160,32,0.7); }
}

/* ── CITY PAGE SPECIFIC ── */
.city-hero { min-height: 55vh; padding-top: 68px; background: linear-gradient(140deg, var(--dark) 0%, #2a2a2a 60%, #3a2800 100%); display: flex; align-items: center; position: relative; overflow: hidden; }
.city-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: polygon(0 100%, 100% 100%, 100% 0); }
.city-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 3rem 5%; }
.breadcrumb { font-size: 0.8rem; color: #777; margin-bottom: 1rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; }

/* ── FADE ANIMATION ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .insurance-strip { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--dark); padding: 1.5rem 5%; gap: 1rem; border-top: 1px solid var(--gold); z-index: 999; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .float-btn span { display: none; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { gap: 0.5rem; }
  .stat strong { font-size: 1.4rem; }
}
