*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --dark: #0d0d0d; --charcoal: #1a1a2e; --blue: #1e3a8a;
  --accent: #3B82F6; --light: #f8fafc; --gray: #64748b; --radius: 10px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', 'Segoe UI', system-ui, sans-serif; color: #1e293b; background: #fff; }

/* -- NAV -- */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(13,13,13,0.95); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
}
.logo { color: #fff; font-size: 1.3rem; font-weight: 800; text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--accent); }
.logo img { height: 40px; vertical-align: middle; mix-blend-mode: lighten; margin-right: 8px; }
nav ul { list-style: none; display: flex; gap: 32px; }
nav ul a { color: #cbd5e1; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color .2s; }
nav ul a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fff !important; font-weight: 700 !important;
  padding: 9px 20px; border-radius: 6px; text-decoration: none; font-size: 0.9rem; transition: opacity .2s;
}
.nav-cta:hover { opacity: 0.85; }
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }

/* -- HERO (all page types) -- */
.city-hero, #hero, .landing-hero {
  min-height: 100vh; display: flex; align-items: center;
  background: url('metallic1-after1.jpg') center/cover no-repeat;
  position: relative; padding: 100px 5% 60px; overflow: hidden;
}
.city-hero::before, #hero::before, .landing-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.88) 0%, rgba(26,26,46,0.82) 50%, rgba(30,58,138,0.7) 100%);
}
.hero-content { position: relative; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.3);
  color: var(--accent); font-size: 0.8rem; font-weight: 700;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-badge::before { content: '\2605'; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 20px; }
h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: #94a3b8; line-height: 1.7; margin-bottom: 36px; max-width: 560px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #fff; font-weight: 800; font-size: 1rem;
  padding: 15px 32px; border-radius: var(--radius); text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(37,99,235,0.4); display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,99,235,0.5); }
.btn-secondary {
  background: transparent; color: #fff; font-weight: 700; font-size: 1rem;
  padding: 15px 32px; border-radius: var(--radius); text-decoration: none;
  border: 2px solid rgba(255,255,255,0.25); transition: border-color .2s; display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.6); }
.hero-stats { display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap; }
.stat-num { font-size: 1.9rem; font-weight: 900; color: #fff; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.8rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; }

/* -- TRUST BAR -- */
.trust-bar {
  background: var(--accent); padding: 14px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-bar span { font-weight: 700; font-size: 0.9rem; color: #fff; }

/* -- SECTION DEFAULTS -- */
section { padding: 90px 5%; }
.section-tag {
  display: inline-block; color: var(--accent); font-size: 0.78rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.section-intro { color: var(--gray); font-size: 1.05rem; line-height: 1.7; max-width: 600px; margin-bottom: 50px; }

/* -- SERVICES -- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid #e2e8f0; transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.service-icon { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.65; }
.service-cta {
  display: inline-block; margin-top: 16px; font-weight: 700; color: var(--accent);
  font-size: 0.88rem; text-decoration: none; transition: color .2s;
}
.service-cta:hover { color: var(--blue); }

/* -- BA SLIDER -- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.ba-card {
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: #0f172a; border: 1px solid #1e293b;
}
.ba-slider {
  position: relative; overflow: hidden; border-radius: 6px;
  cursor: col-resize; user-select: none; -webkit-user-select: none;
  aspect-ratio: 4/3;
}
.ba-slider img { display: block; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .after-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; }
.ba-slider .after-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; min-width: 100%; }
.ba-slider .slider-handle {
  position: absolute; top: 0; bottom: 0; width: 4px; background: #fff;
  cursor: col-resize; z-index: 2; box-shadow: 0 0 8px rgba(0,0,0,0.5);
}
.ba-slider .slider-handle::after {
  content: '\27E8 \27E9'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: #fff; color: #1e3a8a; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 900; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ba-slider .ba-tag {
  position: absolute; top: 10px; padding: 4px 10px; border-radius: 4px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  z-index: 3; pointer-events: none;
}
.ba-slider .ba-tag.before-tag { left: 10px; background: rgba(0,0,0,0.6); color: #fff; }
.ba-slider .ba-tag.after-tag { right: 10px; background: rgba(37,99,235,0.8); color: #fff; }
.ba-desc { padding: 16px 20px; }
.ba-desc h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.ba-desc p { color: #64748b; font-size: 0.82rem; }

/* -- WHY US -- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), #3b82f6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.why-item h4 { font-weight: 800; margin-bottom: 4px; }
.why-item p { color: var(--gray); font-size: 0.92rem; line-height: 1.6; }
.why-visual {
  background: linear-gradient(135deg, var(--charcoal), var(--blue));
  border-radius: 16px; padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.stat-card {
  background: rgba(255,255,255,0.07); border-radius: 10px; padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-card .big { font-size: 2rem; font-weight: 900; color: var(--accent); }
.stat-card .label { color: #94a3b8; font-size: 0.85rem; margin-top: 2px; }

/* -- PROCESS -- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.step { text-align: center; padding: 32px 20px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 1.2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step h4 { font-weight: 800; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* -- REVIEWS -- */
.reviews-cta { text-align: center; max-width: 600px; margin: 0 auto; }
.reviews-cta .big-stars { font-size: 2.5rem; margin-bottom: 12px; color: var(--accent); }
.reviews-cta .rating-text { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.reviews-cta .rating-sub { color: var(--gray); font-size: 1rem; margin-bottom: 28px; }
.social-row { display: flex; justify-content: center; gap: 20px; margin-top: 24px; }
.social-row a { color: var(--gray); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: color .2s; }
.social-row a:hover { color: var(--accent); }

/* -- CONTACT FORM -- */
#contact {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--blue) 100%);
  padding: 90px 5%;
}
#contact h2, #contact .section-tag { color: #fff; }
#contact .section-intro { color: #94a3b8; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info { color: #cbd5e1; }
.contact-info h3 { color: #fff; font-size: 1.5rem; font-weight: 800; margin-bottom: 16px; }
.contact-info p { line-height: 1.7; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.contact-detail .icon { font-size: 1.2rem; }
.contact-detail a { color: var(--accent); text-decoration: none; font-weight: 700; font-size: 1.05rem; }
form {
  background: #fff; border-radius: 16px; padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
form h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 5px; color: #374151; }
input, select, textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid #e2e8f0;
  border-radius: 8px; font-size: 0.95rem; font-family: inherit;
  transition: border-color .2s; background: #f8fafc; color: #1e293b;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); background: #fff; }
textarea { resize: vertical; min-height: 90px; }
.submit-btn {
  width: 100%; background: var(--accent); color: #fff;
  font-weight: 800; font-size: 1.05rem; padding: 14px;
  border: none; border-radius: 8px; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(37,99,235,0.3);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,99,235,0.45); }
.form-note { text-align: center; font-size: 0.78rem; color: var(--gray); margin-top: 10px; }

/* -- FOOTER -- */
footer {
  background: var(--dark); color: #64748b; padding: 40px 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
footer a { color: var(--accent); text-decoration: none; }
.footer-logo { color: #fff; font-weight: 800; font-size: 1.1rem; }
.footer-logo span { color: var(--accent); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: #94a3b8; text-decoration: none; font-size: 1.2rem; transition: color .2s; }
.footer-social a:hover { color: var(--accent); }

/* -- FLOATING CTA -- */
.float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--accent); color: #fff; font-weight: 800;
  padding: 14px 22px; border-radius: 100px;
  text-decoration: none; font-size: 0.95rem;
  box-shadow: 0 6px 28px rgba(37,99,235,0.5); transition: transform .15s;
}
.float-cta:hover { transform: scale(1.05); }

/* -- LANDING PAGE (get-estimate.html) -- */
.nav-phone { color: #fff; text-decoration: none; font-weight: 700; font-size: 0.95rem; }
.landing-content {
  position: relative; display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%;
}
.landing-text { color: #fff; }
.landing-text h1 { margin-bottom: 16px; }
.landing-text > p { color: #94a3b8; font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px; }
.trust-points { list-style: none; padding: 0; margin-bottom: 32px; }
.trust-points li {
  color: #cbd5e1; font-size: 0.95rem; line-height: 1.8; padding-left: 24px;
  position: relative;
}
.trust-points li::before {
  content: '\2713'; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.social-proof { display: flex; gap: 32px; flex-wrap: wrap; }
.proof-item { text-align: center; }
.proof-item .big { font-size: 1.8rem; font-weight: 900; color: #fff; }
.proof-item .big span { color: var(--accent); }
.proof-item .label { font-size: 0.75rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.form-sub { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px !important; }
.or-call {
  text-align: center; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}
.or-call span { color: var(--gray); font-size: 0.85rem; }
.or-call a { color: var(--accent); font-weight: 800; font-size: 1.1rem; text-decoration: none; margin-left: 8px; }
.gallery-strip {
  background: var(--light); padding: 60px 5%; text-align: center;
}
.gallery-strip h2 { margin-bottom: 30px; }
.strip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1000px; margin: 0 auto;
}
.strip-grid img {
  width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius);
}

/* -- SOCIAL PROOF BANNER -- */
.social-proof-section { padding: 60px 5%; }
.proof-banner {
  background: linear-gradient(135deg, var(--charcoal), var(--blue));
  border-radius: 16px; padding: 50px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.proof-left { max-width: 480px; }
.proof-stars { font-size: 1.6rem; color: #fbbf24; margin-bottom: 12px; letter-spacing: 2px; }
.proof-headline { font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.proof-sub { color: #94a3b8; font-size: 0.95rem; line-height: 1.7; }
.proof-links { display: flex; flex-direction: column; gap: 12px; }
.proof-link {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 28px; border-radius: 10px;
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  transition: transform .15s, box-shadow .15s;
  min-width: 240px;
}
.proof-link:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.proof-link.fb { background: #1877f2; color: #fff; }
.proof-link.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.proof-link.tt { background: #010101; color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.proof-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.15); display: flex;
  align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; flex-shrink: 0;
}
@media (max-width: 768px) {
  .proof-banner { flex-direction: column; padding: 36px 24px; text-align: center; }
  .proof-links { width: 100%; }
  .proof-link { justify-content: center; }
}

/* -- FACEBOOK EMBED -- */
.fb-feed-wrapper {
  max-width: 500px; margin: 0 auto; border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* -- LOCAL EXPERTISE -- */
.local-expertise {
  background: var(--light); padding: 50px 5%; border-bottom: 1px solid #e2e8f0;
}
.local-expertise .expertise-inner {
  max-width: 800px; margin: 0 auto;
}
.local-expertise h3 {
  font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; color: var(--blue);
}
.local-expertise p {
  color: #475569; font-size: 1rem; line-height: 1.7;
}
.local-tip {
  margin-top: 20px; padding: 18px 22px;
  background: rgba(37,99,235,0.06); border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
}
.local-tip strong {
  color: var(--blue); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px;
}
.local-tip p {
  margin-top: 6px; color: #475569; font-size: 0.95rem; line-height: 1.6;
}

/* -- RESPONSIVE -- */
@media (max-width: 768px) {
  nav ul { display: none; }
  .hamburger { display: block; }
  .why-grid, .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .trust-bar { gap: 16px; flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .landing-content { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .social-proof { gap: 20px; }
}
