
:root {
  --forest: #162D50;
  --forest-deep: #0C1929;
  --forest-light: #1E3A66;
  --gold: #F08030;
  --gold-light: #F59548;
  --gold-pale: #FFF4EB;
  --urgent: #C44D10;
  --urgent-deep: #A33D0A;
  --urgent-glow: rgba(240,104,32,.15);
  --action-orange: #F08030;
  --action-orange-deep: #D86A18;
  --cream: #F0F2F8;
  --white: #FFFFFF;
  --text: #141A28;
  --text-mid: #3D4558;
  --text-light: #636B7C;
  --border: #DDE0E8;
  --danger: #E04030;
  --success: #18A850;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 20px rgba(12,25,41,0.10);
  --shadow-lg: 0 12px 40px rgba(12,25,41,0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }

h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.2; color: var(--forest-deep); }
h3 { font-size: 1.25rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); background: var(--gold-pale);
  padding: 6px 14px; border-radius: 20px; margin-bottom: 12px;
}
.section-sub { font-size: 0.95rem; color: var(--text-mid); max-width: 700px; margin-top: 10px; line-height: 1.7; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 0.9rem; text-decoration: none; transition: all 0.25s; border: none; cursor: pointer;
}
.btn-urgent { background: var(--urgent); color: white; }
.btn-urgent:hover { background: var(--urgent-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,77,16,0.3); }
.btn-action { background: var(--gold); color: var(--forest-deep); }
.btn-action:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-forest { background: var(--forest); color: white; }
.btn-forest:hover { background: var(--forest-light); }

/* TOPBAR */
.topbar {
  background: var(--forest-deep); overflow: hidden; height: 32px;
  display: flex; align-items: center; position: relative; z-index: 101;
}
.topbar-scroll {
  display: flex; gap: 32px; white-space: nowrap;
  animation: scrollbar 25s linear infinite;
}
.topbar-item { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.topbar-item a { color: #FFD060; text-decoration: none; }
@keyframes scrollbar { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); height: 64px;
  display: flex; align-items: center; transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 38px; height: 38px; background: var(--forest); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; color: var(--gold); font-size: 0.75rem; font-weight: 700;
}
.nav-logo-text { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--forest-deep); }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; color: var(--text-mid);
  text-decoration: none; padding: 8px 10px; border-radius: var(--radius-sm); transition: all 0.2s;
}
.nav-links a:hover { background: var(--cream); color: var(--forest); }
.nav-cta {
  background: var(--forest) !important; color: white !important;
  padding: 8px 16px !important; border-radius: var(--radius-sm) !important;
}
.nav-phone a {
  font-size: 0.88rem; font-weight: 700; color: var(--forest);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
}
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px;
}
.hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--forest-deep), var(--forest), var(--forest-light));
  color: white; padding: 70px 0 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(240,128,48,0.12) 0%, transparent 50%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center; }
.hero-badge {
  display: inline-block; font-size: 0.78rem; font-weight: 600; color: #FFD060;
  background: rgba(255,255,255,0.08); padding: 8px 16px; border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.12); margin-bottom: 16px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1; margin-bottom: 16px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 560px; margin-bottom: 24px; line-height: 1.7; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hero-stat { text-align: center; padding: 12px; background: rgba(255,255,255,0.06); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.08); }
.hero-stat-num { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--gold); }
.hero-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.7); margin-top: 2px; }
.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 24px; backdrop-filter: blur(8px);
}
.hero-card h3 { font-size: 1.05rem; color: white; margin-bottom: 16px; }
.hero-card .h2-card { font-size: 1.05rem; color: white; margin-bottom: 16px; margin-top: 0; font-weight: 600; font-family: inherit; }
.license-mini-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.82rem;
}
.license-mini-item span:first-child { color: rgba(255,255,255,0.75); }
.badge { background: rgba(39,174,96,0.15); color: #4ADE80; padding: 3px 10px; border-radius: 12px; font-size: 0.7rem; font-weight: 600; }

/* TRUST BAR */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 14px 0; }
.trust-bar .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); }
.trust-icon { font-size: 0.9rem; }

/* LICENSE */
.license-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 28px; }
.license-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; transition: all 0.3s; text-align: center;
}
.license-card:hover { box-shadow: var(--shadow); border-color: var(--gold); transform: translateY(-3px); }
.license-county { font-weight: 700; color: var(--forest-deep); margin-bottom: 4px; }
.license-num { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--gold); margin: 8px 0; }
.license-type { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; }
.license-status { font-size: 0.82rem; font-weight: 600; color: var(--success); }
.license-expires { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }
.license-note { text-align: center; margin-top: 20px; font-size: 0.82rem; color: var(--text-light); }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 28px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: all 0.3s; position: relative;
}
.service-card:hover { box-shadow: var(--shadow); border-color: var(--gold); transform: translateY(-3px); }
.service-icon { font-size: 1.6rem; margin-bottom: 10px; }
.service-card h3 { font-size: 1.05rem; color: var(--forest-deep); margin-bottom: 8px; }
.service-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
.service-tag {
  position: absolute; top: 16px; right: 16px; font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold);
  background: var(--gold-pale); padding: 3px 10px; border-radius: 12px;
}

/* WHY CHOOSE US */
.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; margin-top: 28px; }
.why-card {
  display: flex; gap: 16px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; transition: all 0.3s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-icon { font-size: 1.5rem; flex-shrink: 0; }
.why-card h3 { font-size: 1rem; color: var(--forest-deep); margin-bottom: 6px; }
.why-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; margin-top: 28px; }
.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: all 0.3s;
}
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 10px; }
.review-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; font-style: italic; margin-bottom: 14px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 0.7rem; font-weight: 700;
}
.review-name { font-size: 0.82rem; font-weight: 600; }
.review-loc { font-size: 0.72rem; color: var(--text-light); }

/* AREAS */
.areas-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.area-tag {
  padding: 8px 16px; background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; font-size: 0.82rem; color: var(--text-mid); text-decoration: none; transition: all 0.2s;
}
.area-tag:hover { background: var(--forest); color: white; border-color: var(--forest); }

/* MAP */
.map-section { background: var(--forest-deep); color: white; }
.map-section h2 { color: white; }
.map-section .section-label { background: rgba(232,160,32,.15); color: #FFD060; }
.map-section .section-sub { color: rgba(255,255,255,.7); }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 28px; align-items: start; }
.map-embed { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-info { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 28px; }
.map-info h3 { color: white; margin-bottom: 20px; }
.map-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.map-detail a { color: #FFD060; text-decoration: none; font-weight: 600; }

/* SCHEDULE */
.schedule { background: var(--cream); }
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 28px; }
.form-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: 20px; color: var(--forest-deep); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); }
.form-group input, .form-group select, .form-group textarea {
  padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.88rem; transition: border 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--forest); outline: none; }
.form-submit {
  width: 100%; padding: 14px; background: var(--gold); color: var(--forest-deep);
  border: none; border-radius: var(--radius-sm); font-family: inherit;
  font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-top: 12px;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,168,48,0.3); }
.form-emergency {
  margin-top: 16px; padding: 12px; background: rgba(192,57,43,0.08);
  border-radius: var(--radius-sm); text-align: center; font-size: 0.85rem; color: #8B1A12;
}
.form-emergency a { color: #A02820; font-weight: 700; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 600; text-align: left; color: var(--text);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--forest); }
.faq-q .arrow { transition: transform 0.3s; font-size: 1.2rem; color: var(--text-light); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 0 20px; font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--forest-deep), var(--forest));
  color: white; text-align: center; padding: 60px 24px;
}
.cta-banner h2 { color: white; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }

/* FOOTER */
.footer { background: var(--forest-deep); color: rgba(255,255,255,0.8); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: white; font-family: 'DM Serif Display', serif; font-size: 1.05rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 12px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item a { color: var(--gold); text-decoration: none; font-weight: 600; }
.footer-licenses { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-license-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.footer-license-item { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.footer-license-item strong { color: rgba(255,255,255,0.8); }
.footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: rgba(255,255,255,0.65);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8);
  text-decoration: none; font-size: 0.85rem; transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--forest-deep); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999; background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner {
  position: absolute; right: 0; top: 0; bottom: 0; width: 300px; background: var(--white);
  padding: 80px 24px 120px; transform: translateX(100%); transition: transform 0.3s;
  overflow-y: scroll; -webkit-overflow-scrolling: touch;
}
.mobile-menu.open .mobile-menu-inner { transform: translateX(0); }
.mobile-menu-close {
  position: absolute; top: 20px; right: 20px; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--text);
}
.mobile-menu a {
  display: block; padding: 14px 0; font-size: 1.05rem; color: var(--text);
  text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--border);
}
.mobile-menu .mobile-cta {
  display: block; text-align: center; margin-top: 20px; background: var(--forest);
  color: white; padding: 14px; border-radius: var(--radius-sm); font-weight: 700;
}

/* FLOATING CTA */
.float-cta { position: fixed; bottom: 20px; right: 20px; z-index: 90; display: flex; gap: 10px; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: all 0.2s;
}
.float-btn:hover { transform: scale(1.1); }
.float-call { background: var(--urgent); color: white; animation: pulse-glow 2s ease-in-out infinite; }
.float-text { background: var(--action-orange); color: white; }

/* ANIMATIONS */
@keyframes pulse-glow { 0%,100% { box-shadow: 0 4px 20px rgba(240,104,32,0.3); } 50% { box-shadow: 0 4px 30px rgba(240,104,32,0.6); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* EMERGENCY BAR */
.emergency-bar {
  background: linear-gradient(90deg, #0C1929, #162D50, #0C1929);
  color: white; text-align: center; padding: 10px 16px;
  font-size: 0.9rem; font-weight: 700; position: relative; z-index: 102;
  animation: emergencyPulse 3s ease-in-out infinite;
}
.emergency-bar a { color: #F0B840; text-decoration: none; font-size: 1.05rem; }
.emergency-bar a:hover { text-decoration: underline; }
@keyframes emergencyPulse {
  0%, 100% { background: linear-gradient(90deg, #0C1929, #162D50, #0C1929); }
  50% { background: linear-gradient(90deg, #1B2E4A, #2A4470, #1B2E4A); }
}

/* INLINE CTA BOX */
.inline-cta {
  background: var(--gold-pale); border: 2px solid var(--urgent);
  border-radius: var(--radius); padding: 20px 24px; margin: 32px 0; text-align: center;
}
.inline-cta p { font-size: 1rem; font-weight: 600; color: var(--forest-deep); margin-bottom: 8px; }
.inline-cta a { display: inline-flex; align-items: center; gap: 8px; font-size: 1.2rem; font-weight: 700; color: var(--forest); text-decoration: none; }
.inline-cta a:hover { text-decoration: underline; }
.inline-cta .sub { font-size: 0.8rem; color: var(--text-mid); margin-top: 6px; }

/* STICKY MOBILE CALL BAR */
.sticky-call {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: linear-gradient(90deg, var(--urgent), var(--urgent-deep)); padding: 12px 20px;
  text-align: center; box-shadow: 0 -4px 20px rgba(15,29,48,0.3);
}
.sticky-call a {
  color: white; font-size: 1.1rem; font-weight: 700;
  text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: block; margin-top: 24px; max-width: 440px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .schedule-grid { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .topbar-scroll { animation: none; }
}
@media (max-width: 600px) {
  .section { padding: 50px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .sticky-call { display: block; }
  .float-cta { bottom: 70px; }
  body { padding-bottom: 56px; }
}

.open > div:last-child { max-height: 1000px !important; }
.skip-link{position:absolute;top:-100%;left:16px;background:var(--forest);color:white;padding:10px 18px;border-radius:0 0 var(--radius-sm) var(--radius-sm);z-index:200;font-size:.88rem;font-weight:600;text-decoration:none;transition:top .2s}.skip-link:focus{top:0}