:root {
  --navy: #0d1b3e;
  --navy-2: #11285a;
  --cyan: #00aaef;
  --white: #ffffff;
  --ink: #111827;
  --muted: #5b6579;
  --line: #d9e2f2;
  --bg: #f3f8ff;
  --shadow: 0 16px 40px rgba(13, 27, 62, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 62, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body {
  padding-top: 78px;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.brand-logo {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-top {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: #00AAEF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-menu {
  position: fixed;
  top: 78px;
  right: 0;
  width: min(320px, 88vw);
  height: calc(100vh - 78px);
  background: var(--navy);
  transform: translateX(110%);
  transition: transform 0.26s ease;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-menu.active {
  transform: translateX(0);
}

.nav-menu a {
  color: var(--white);
  font-weight: 700;
  padding: 0.8rem 0.65rem;
  border-radius: 10px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.nav-cta {
  margin-top: 0.6rem;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  background: rgba(0, 170, 239, 0.12);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(0, 170, 239, 0.28);
  border-color: #00AAEF;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 52px;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0.72rem 1.05rem;
  font-weight: 800;
  letter-spacing: 0.1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 170, 239, 0.35);
}

.btn-primary:hover {
  background: #0097d6;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-secondary.dark {
  border-color: var(--navy);
  color: var(--navy);
}

.hero {
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 170, 239, 0.24), transparent 35%),
    linear-gradient(145deg, #0d1b3e 0%, #0a1734 65%, #122f67 100%);
  color: var(--white);
  padding: 4.4rem 0 3.6rem;
}

.pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #dff5ff;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.95rem, 5.8vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.3px;
  max-width: 12.8ch;
}

.hero h1 .accent {
  color: #6de7ff;
}

.hero p {
  color: #d2def8;
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.trust-panel {
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  border-radius: 16px;
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: var(--shadow);
  max-width: 420px;
}

.stars {
  color: #f8ba00;
  font-size: 1.02rem;
  letter-spacing: 0.6px;
}

.trust-panel h3 {
  margin: 0.4rem 0 0.2rem;
  font-size: 1.35rem;
}

.trust-panel p {
  margin: 0;
  color: #2f4168;
}

.badge-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.badges {
  padding: 0.95rem 0;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.badges span {
  background: var(--bg);
  border: 1px solid #d5e0f4;
  color: #27406f;
  text-align: center;
  border-radius: 999px;
  padding: 0.52rem 0.6rem;
  font-weight: 700;
  font-size: 0.86rem;
}

.section {
  padding: 4rem 0;
}

.section h2 {
  margin: 0 0 0.6rem;
  color: var(--navy);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
}

.section-intro {
  color: var(--muted);
  max-width: 68ch;
  margin: 0 0 1.7rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

a.card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card {
  background: var(--white);
  border: 1px solid #d9e4f6;
  border-radius: 15px;
  padding: 1.12rem;
  box-shadow: 0 8px 24px rgba(13, 27, 62, 0.08);
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 12px 32px rgba(13, 27, 62, 0.16);
  transform: translateY(-2px);
}

.card h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
}

.card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #e8f8ff;
  border-radius: 12px;
  color: #0076a8;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  color: var(--navy);
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.gallery-pair {
  border: 1px solid #dbe5f7;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(13, 27, 62, 0.1);
  padding: 0.8rem;
}

.comparison-slider {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  user-select: none;
  background: #0d1b3e;
  --pos: 50%;
}

.img-before,
.img-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.img-after {
  clip-path: inset(0 0 0 calc(100% - var(--pos)));
}

.cs-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 8px rgba(13, 27, 62, 0.4);
  z-index: 3;
}

.cs-handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0d1b3e;
  border: 2px solid rgba(255, 255, 255, 0.94);
  color: #fff;
  font-size: 1rem;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 4;
  box-shadow: 0 4px 16px rgba(13, 27, 62, 0.5);
}

.cs-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
  z-index: 5;
  -webkit-appearance: none;
}

.comparison-label {
  position: absolute;
  top: 0.75rem;
  z-index: 3;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(13, 27, 62, 0.76);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.before-label {
  left: 0.75rem;
}

.after-label {
  right: 0.75rem;
}

.gallery-title {
  margin-top: 0.82rem;
  padding: 0 0.2rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
}

.reviews {
  background: var(--bg);
}

.review-card {
  background: var(--white);
  border: 1px solid #d6e2f8;
  border-radius: 15px;
  padding: 1.1rem;
  box-shadow: 0 8px 24px rgba(13, 27, 62, 0.08);
}

.review-card h3 {
  margin: 0.42rem 0;
  color: var(--navy);
  font-size: 1rem;
}

.review-card p {
  margin: 0;
  color: #475472;
}

.review-quote {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.75rem !important;
}

.reviewer {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan) !important;
  margin-top: 0.5rem !important;
}

.about-panel {
  display: grid;
  gap: 1rem;
  background: #f8fbff;
  border: 1px solid #d9e3f7;
  border-radius: 16px;
  padding: 1.2rem;
}

.about-founder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.founder-photo img {
  max-height: 520px;
  object-fit: cover;
  object-position: top;
}

.founder-story h2 {
  margin-top: 0;
}

.founder-story em {
  display: block;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin: 1rem 0;
  color: var(--navy);
}

@media (min-width: 768px) {
  .about-founder {
    grid-template-columns: 380px 1fr;
  }
}

.highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.highlight-list li {
  color: #2c4269;
  font-weight: 700;
  padding-left: 1.4rem;
  position: relative;
}

.highlight-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  position: absolute;
  left: 0.2rem;
  top: 0.45rem;
}

.contact-wrap {
  display: grid;
  gap: 1rem;
}

.contact-box,
.form-box {
  border: 1px solid #d8e3f5;
  border-radius: 16px;
  padding: 1.15rem;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(13, 27, 62, 0.08);
}

.contact-box h3,
.form-box h3 {
  margin-top: 0;
  color: var(--navy);
}

.contact-box p {
  margin: 0.4rem 0;
  color: var(--muted);
}

.big-phone {
  font-size: clamp(1.3rem, 4.7vw, 2rem);
  font-weight: 900;
  color: var(--navy);
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

label {
  display: block;
  font-weight: 700;
  color: #24406e;
  margin-bottom: 0.25rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c4d4ef;
  border-radius: 10px;
  padding: 0.72rem 0.75rem;
  font: inherit;
  color: var(--ink);
  background: #fbfdff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 170, 239, 0.32);
  border-color: #7fd8ff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.page-hero {
  background: linear-gradient(150deg, #0d1b3e 0%, #12306a 100%);
  color: var(--white);
  padding: 3.7rem 0 2.8rem;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.95rem, 5.4vw, 3rem);
}

.page-hero p {
  margin: 0.6rem 0 0;
  max-width: 60ch;
  color: #d3def8;
}

.neighborhood-copy p {
  margin: 0 0 1rem;
  color: #34496f;
}

.neighborhood-copy p:last-child {
  margin-bottom: 0;
}

.cta-dark {
  background: linear-gradient(145deg, #0d1b3e 0%, #0a1734 65%, #122f67 100%);
  color: #ffffff;
}

.cta-dark h2 {
  color: #ffffff;
}

.cta-dark p {
  color: #d3def8;
  max-width: 62ch;
  margin: 0 0 1rem;
}

.areas-serve {
  background: #f8fbff;
  border-top: 1px solid #d9e4f6;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.area-links a {
  background: #eaf6ff;
  border: 1px solid #c6dcfa;
  color: #214172;
  border-radius: 999px;
  padding: 0.52rem 0.9rem;
  font-weight: 700;
}

.area-links a:hover,
.area-links a:focus-visible {
  background: #d6efff;
  border-color: #9fcaf6;
}

.article-shell {
  padding: 2.2rem 0 1.5rem;
}

.article-meta {
  margin-top: 0.8rem;
  color: #d3def8;
  font-size: 0.95rem;
  font-weight: 600;
}

.article-content {
  max-width: 860px;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.article-content h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.45rem;
  color: #14346e;
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
}

.article-content p,
.article-content li {
  color: #2f4062;
}

.article-content ul {
  padding-left: 1.2rem;
}

.article-content a {
  color: #006e9c;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content .article-cta-text {
  margin-top: 1.8rem;
  font-weight: 700;
  color: #17396d;
}

.related-posts-wrap {
  background: var(--bg);
  border-top: 1px solid #dbe5f5;
  border-bottom: 1px solid #dbe5f5;
}

.related-posts-grid {
  display: grid;
  gap: 1rem;
}

.related-card {
  background: var(--white);
  border: 1px solid #d9e4f6;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(13, 27, 62, 0.08);
}

.related-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.03rem;
  color: var(--navy);
}

.related-card p {
  margin: 0;
  color: var(--muted);
}

.related-card a {
  color: #006e9c;
  text-decoration: underline;
}

.blog-cta {
  margin-top: 0;
  background: linear-gradient(150deg, #0d1b3e 0%, #102a5b 100%);
  color: var(--white);
  padding: 3.1rem 0;
}

.blog-cta h2 {
  margin: 0;
  color: var(--white);
}

.blog-cta p {
  color: #d7e4ff;
  margin: 0.6rem 0 0;
}

.site-footer {
  margin-top: 2rem;
  background: #09142d;
  color: #d8e5ff;
  padding: 2.2rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  gap: 1.15rem;
}

.footer-logo {
  height: 80px;
  width: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-links a:hover {
  color: #9ceaff;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1rem;
  padding-top: 0.9rem;
  font-size: 0.9rem;
  color: #b9cbef;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-wrap {
    grid-template-columns: 1fr 1.35fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    align-items: start;
  }

  .related-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
  }

  .nav-menu a {
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
  }

  .nav-cta {
    margin: 0 0 0 0.4rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 2.3rem;
  }

  .badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-page .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-panel {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.3rem;
    padding: 1.5rem;
  }

  .related-posts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.faq-section .faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,170,239,0.2); padding: 1.25rem 0; }
.faq-item h3 { color: #00AAEF; font-size: 1.05rem; margin-bottom: 0.5rem; }
.faq-item p { color: #cdd8e3; line-height: 1.7; margin: 0; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }
.areas-grid a { background: rgba(0,170,239,0.1); border: 1px solid rgba(0,170,239,0.3); color: #00AAEF; padding: 0.5rem 1rem; border-radius: 4px; text-decoration: none; font-size: 0.9rem; transition: background 0.2s; }
.areas-grid a:hover { background: rgba(0,170,239,0.25); }

.near-me { font-size: 1rem; color: #a0b4c8; margin-top: 0.5rem; }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
