
:root {
  --primary: #063a5e;
  --primary-dark: #04283f;
  --accent: #22d3ee;
  --accent-dark: #0aa8c2;
  --ink: #12202b;
  --muted: #55707d;
  --bg: #ffffff;
  --bg-alt: #f2fafc;
  --border: #dcedf2;
  --radius: 14px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.2; margin: 0 0 14px; letter-spacing: -0.01em; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }

.promo-bar { background: var(--accent); color: var(--primary-dark); text-align: center; font-weight: 700; font-size: 0.85rem; padding: 9px 16px; }

.topbar { position: sticky; top: 0; background: rgba(255,255,255,0.96); backdrop-filter: blur(6px); border-bottom: 1px solid var(--border); z-index: 20; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; text-decoration: none; color: var(--primary); white-space: nowrap; }
.brand-icon { display: inline-flex; width: 24px; height: 24px; color: var(--accent-dark); }
.nav-links { display: flex; gap: 26px; flex: 1; justify-content: center; align-items: center; }
.nav-links > a { text-decoration: none; font-weight: 600; font-size: 0.92rem; color: var(--muted); transition: color 0.15s; }
.nav-links > a:hover { color: var(--primary); }
.nav-dropdown { position: relative; padding: 10px 0; }
.nav-drop-trigger { display: inline-flex; align-items: center; gap: 5px; text-decoration: none; font-weight: 600; font-size: 0.92rem; color: var(--muted); transition: color 0.15s; }
.nav-drop-trigger:hover { color: var(--primary); }
.nav-chevron { transition: transform 0.15s; flex-shrink: 0; }
.nav-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; top: calc(100% - 6px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 16px 36px rgba(6,58,94,0.16);
  padding: 8px; min-width: 250px; max-height: 360px; overflow-y: auto;
  display: grid; gap: 1px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 40;
}
.nav-dropdown:hover .nav-dropdown-panel, .nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 0.86rem; font-weight: 600; color: var(--ink); text-decoration: none; }
.nav-dropdown-panel a:hover { background: var(--bg-alt); color: var(--primary); }
.call-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: #fff; padding: 11px 20px; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 0.88rem; white-space: nowrap; transition: background 0.15s, transform 0.15s; }
.call-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.header-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-estimate { display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: var(--primary-dark); padding: 11px 18px; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 0.85rem; white-space: nowrap; transition: transform 0.15s, box-shadow 0.15s; }
.btn-estimate:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(6,58,94,0.2); }

.hero { position: relative; background-color: #04283f; background-size: cover; background-position: center; color: #fff; padding: 84px 0 40px; overflow: hidden; }
.hero-video-stage { position: absolute; inset: 0; z-index: 0; background: #04283f; }
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.8s ease; }
.hero-bg-video.active { opacity: 1; }
.hero-video-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(4,40,63,0.88), rgba(6,58,94,0.72) 55%, rgba(4,40,63,0.92)); }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.wave-divider { display: block; width: 100%; height: 54px; position: relative; z-index: 2; margin-top: 30px; }
.wave-flip { transform: scaleY(-1); }
.eyebrow { display: inline-block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); padding: 6px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 700; margin-bottom: 18px; }
.hero h1 { font-size: 2.9rem; max-width: 620px; margin-bottom: 18px; }
.hero-sub { font-size: 1.12rem; opacity: 0.92; max-width: 540px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.btn { padding: 15px 28px; border-radius: 10px; font-weight: 700; text-decoration: none; display: inline-block; font-size: 0.98rem; transition: transform 0.15s, box-shadow 0.15s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--primary-dark); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn-secondary { background: rgba(255,255,255,0.1); color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.88rem; opacity: 0.9; }
.hero-illustration { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.35); position: relative; z-index: 2; }

.section-eyebrow { text-align: center; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; font-weight: 800; color: var(--accent-dark); margin-bottom: 10px; }
.section-eyebrow-light { color: var(--accent); text-align: left; }
.services, .process, .testimonials, .areas, .faq, .results, .work-showcase, .about-grid-section, .team-section { padding: 78px 0; position: relative; }
.services { background: var(--bg); }
.services h2, .process h2, .testimonials h2, .areas h2, .faq h2, .results h2, .work-showcase h2 { text-align: center; font-size: 2rem; }
.section-sub { text-align: center; color: var(--muted); max-width: 620px; margin: 0 auto 44px; }

.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 20px; }
.service-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s; text-decoration: none; color: inherit; display: block; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(6,58,94,0.12); border-color: var(--accent); }
.service-icon { width: 44px; height: 44px; border-radius: 10px; background: color-mix(in srgb, var(--primary) 10%, white); color: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }
.card-link { display: inline-block; margin-top: 10px; font-weight: 700; font-size: 0.85rem; color: var(--primary); }

.results { background: var(--bg-alt); }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 20px; }
.result-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 24px rgba(6,58,94,0.08); transition: transform 0.2s ease; }
.result-card:hover { transform: translateY(-4px); }
.result-label { display: block; padding: 12px 16px; font-weight: 700; font-size: 0.9rem; text-align: center; }
.result-card-inline { max-width: 560px; margin: 28px 0; }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--primary-dark); }
.ba-pane { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.ba-pane img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-tag { position: absolute; top: 10px; left: 10px; padding: 4px 10px; border-radius: 6px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.ba-tag-before { background: rgba(15,23,32,0.78); color: #fff; }
.ba-tag-after { background: var(--accent); color: var(--primary-dark); }
.ba-crop { width: 100%; height: 100%; background-size: 200% 100%; background-repeat: no-repeat; }

.process { background: var(--bg); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin: 40px 0 40px; }
.process-step { text-align: center; }
.step-icon-wrap { position: relative; width: 64px; height: 64px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--primary) 8%, white); border-radius: 50%; color: var(--primary); }
.step-number-badge { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: var(--primary-dark); font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; }
.process-step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.process-step p { color: var(--muted); font-size: 0.88rem; margin: 0; }
.guarantee-badge { width: 110px; height: 110px; margin: 6px auto 30px; display: block; }
.trust-strip { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.badge { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 12px 18px; font-weight: 700; font-size: 0.86rem; }

.testimonials { text-align: center; background: var(--bg-alt); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; margin: 40px 0 30px; text-align: left; }
.testimonial { background: #fff; border-radius: var(--radius); padding: 26px; margin: 0; border-left: 4px solid var(--accent); }
.stars { color: var(--accent-dark); font-size: 0.95rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial p { margin: 0 0 12px; }
.testimonial cite { display: block; font-weight: 700; font-style: normal; color: var(--muted); font-size: 0.88rem; }
.review-link { font-weight: 700; color: var(--primary); text-decoration: none; }
.review-link:hover { text-decoration: underline; }

.areas { background: var(--bg); text-align: center; }
.area-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.area-pill { background: var(--bg-alt); border: 1px solid var(--border); padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 0.86rem; text-decoration: none; color: inherit; transition: transform 0.15s, border-color 0.15s; }
.area-pill:hover { transform: translateY(-2px); border-color: var(--accent); }

.faq-list { max-width: 760px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; }
.faq-item summary { font-weight: 700; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; float: right; font-size: 1.2rem; color: var(--accent-dark); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { color: var(--muted); margin: 12px 0 0; }

.contact { background: var(--primary-dark); color: #fff; padding: 70px 0; }
.contact h2 { text-align: left; }
.contact-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
.lead-form { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.lead-form input, .lead-form textarea { padding: 13px 15px; border-radius: 8px; border: none; font-size: 1rem; font-family: inherit; }
.lead-form button { padding: 15px; border-radius: 8px; border: none; background: var(--accent); color: var(--primary-dark); font-weight: 800; font-size: 1rem; cursor: pointer; transition: filter 0.15s; }
.lead-form button:hover { filter: brightness(1.08); }
.form-status { min-height: 1.2em; font-size: 0.9rem; opacity: 0.9; }
.contact-details p { margin: 0 0 18px; font-size: 0.95rem; }
.contact-details strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.7; margin-bottom: 4px; }
.contact-details a { text-decoration: underline; }
.map-block { display: flex; align-items: center; gap: 10px; margin-top: 8px; font-size: 0.9rem; opacity: 0.9; }
.map-block svg { width: 22px; height: 22px; flex-shrink: 0; }

.footer { padding: 30px 0; background: var(--ink); color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-brand { color: #fff; margin-bottom: 4px; }
.footer p { margin: 0; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; }
.footer-links a { text-decoration: none; opacity: 0.8; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }

.mobile-call-bar { display: none; }

.page-hero { position: relative; background-color: var(--primary-dark); background-size: cover; background-position: center; color: #fff; padding: 46px 0 0; overflow: hidden; }
.page-hero .wrap:not(.location-hero-grid):not(.service-hero-grid) { padding-bottom: 56px; }
.page-hero h1 { font-size: 2.1rem; max-width: 760px; margin-top: 6px; }
.page-hero .hero-sub { color: rgba(255,255,255,0.9); max-width: 640px; }
.breadcrumb { font-size: 0.82rem; opacity: 0.85; margin-bottom: 6px; }
.breadcrumb a { text-decoration: none; opacity: 0.85; }
.breadcrumb a:hover { text-decoration: underline; }
.service-hero-grid, .location-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding-bottom: 40px; }
.service-icon-lg { width: 96px; height: 96px; border-radius: 20px; background: rgba(255,255,255,0.12); color: #fff; display: flex; align-items: center; justify-content: center; }
.city-graphic { width: 220px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 34px rgba(0,0,0,0.3); }
.service-detail { padding: 60px 0 10px; max-width: 900px; margin: 0 auto; }
.service-detail .wrap { max-width: 760px; }
.signs-list { display: grid; gap: 10px; padding: 0; margin: 20px 0 30px; list-style: none; }
.signs-list li { background: var(--bg-alt); border-left: 4px solid var(--accent); border-radius: 8px; padding: 12px 16px; }
.related { padding: 20px 0 70px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 20px; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.illustration-block { border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 32px rgba(6,58,94,0.15); aspect-ratio: 4 / 3; }
.illustration-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.illustration-block.work { max-width: 640px; margin: 30px auto 0; aspect-ratio: 16 / 9; }
.work-showcase { background: var(--bg); text-align: center; }
.legal-content { padding: 60px 0 80px; max-width: 820px; margin: 0 auto; }
.legal-content .wrap { max-width: 820px; }
.legal-content h2 { font-size: 1.3rem; margin-top: 36px; }
.legal-content p { color: #384957; }
.legal-content ul { color: #384957; padding-left: 20px; }
.legal-updated { color: #6b7f8c; }
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px; margin-top: 10px; }
.sitemap-list { list-style: none; padding: 0; margin: 14px 0 0; display: flex; flex-direction: column; gap: 10px; }
.sitemap-list a { color: var(--primary); text-decoration: none; font-weight: 600; }
.sitemap-list a:hover { text-decoration: underline; }
.owner-section { background: var(--bg-alt); padding: 78px 0; }
.owner-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 48px; align-items: center; }
.owner-photo-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: 0 16px 40px rgba(6,58,94,0.18); }
.owner-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 5; }
.owner-title { color: var(--accent-dark); font-weight: 700; margin: -8px 0 16px; font-size: 0.95rem; }
.owner-quote { margin: 22px 0 0; padding: 18px 22px; border-left: 4px solid var(--accent); background: #fff; border-radius: 0 12px 12px 0; font-style: italic; font-size: 1.02rem; }
.owner-quote cite { display: block; margin-top: 10px; font-style: normal; font-weight: 700; font-size: 0.85rem; color: var(--muted); }
.cta-banner { background: var(--accent); position: relative; }
.cta-banner-inner { padding: 56px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-banner h2 { color: var(--primary-dark); font-size: 1.4rem; margin-bottom: 4px; }
.cta-banner p { color: var(--primary-dark); margin: 0; opacity: 0.85; }
.cta-banner .btn-primary { background: var(--primary); color: #fff; box-shadow: none; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* AI chat widget — fixed bottom-right on every page */
.chat-widget { position: fixed; right: 20px; bottom: 20px; z-index: 50; font-family: inherit; }
.chat-toggle { width: 58px; height: 58px; border-radius: 50%; background: var(--accent); color: var(--primary-dark); border: none; box-shadow: 0 10px 28px rgba(6,58,94,0.35); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.15s; }
.chat-toggle:hover { transform: translateY(-2px); }
.chat-toggle .chat-icon-close { display: none; }
.chat-toggle.open .chat-icon-open { display: none; }
.chat-toggle.open .chat-icon-close { display: block; }
.chat-panel { position: absolute; bottom: 74px; right: 0; width: 320px; max-width: calc(100vw - 32px); height: 420px; max-height: 70vh; background: #fff; border-radius: 18px; box-shadow: 0 24px 60px rgba(6,58,94,0.3); display: flex; flex-direction: column; overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s; }
.chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.chat-panel-header { background: var(--primary-dark); color: #fff; padding: 14px 18px; }
.chat-panel-header strong { display: block; font-size: 0.95rem; }
.chat-status { display: block; font-size: 0.72rem; color: #7ce8cf; font-weight: 700; margin-top: 2px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-alt); }
.chat-msg { padding: 9px 13px; border-radius: 14px; font-size: 0.85rem; line-height: 1.45; max-width: 88%; }
.chat-msg-bot { background: #fff; border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg-user { background: var(--primary); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-input-row { display: flex; border-top: 1px solid var(--border); background: #fff; }
.chat-input-row input { flex: 1; border: none; padding: 13px 14px; font-size: 0.85rem; outline: none; font-family: inherit; }
.chat-input-row button { background: var(--accent); color: var(--primary-dark); border: none; width: 50px; cursor: pointer; display: flex; align-items: center; justify-content: center; }

@media (max-width: 860px) {
  .hero-inner, .about-grid, .contact-inner, .service-hero-grid, .location-hero-grid, .owner-grid { grid-template-columns: 1fr; }
  .owner-photo-wrap { max-width: 260px; margin: 0 auto 20px; }
  .nav-dropdown-panel { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; display: none; }
  .hero { padding: 56px 0 30px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero h1 { font-size: 2.1rem; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .nav-links { display: none; }
  .call-btn span { display: none; }
  .btn-estimate span { display: none; }
  .btn-estimate, .call-btn { padding: 10px 12px; }
  .header-ctas { gap: 8px; }
  .service-hero-grid, .location-hero-grid { text-align: center; }
  .service-icon-lg, .city-graphic { margin: 0 auto; }
  .city-graphic { width: 180px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .mobile-call-bar {
    display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 30;
    background: var(--accent); color: var(--primary-dark); text-align: center;
    padding: 14px; font-weight: 800; text-decoration: none; font-size: 0.95rem;
    box-shadow: 0 -4px 14px rgba(0,0,0,0.15);
  }
  body { padding-bottom: 56px; }
  .chat-widget { right: 14px; bottom: 70px; }
  .chat-toggle { width: 52px; height: 52px; }
  .chat-panel { bottom: 66px; right: -6px; width: calc(100vw - 28px); height: 60vh; }
  .sitemap-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
