:root {
  --brand-navy: #009fe3;
  --brand-navy-2: #006fa5;
  --brand-orange: #f57e28;
  --brand-orange-dark: #d96718;
  --brand-text: #1d2a3a;
  --brand-muted: #55687b;
  --brand-line: #e5e8f0;
  --brand-soft: #f4f8fc;
  --brand-container: #243342;
  --radius-lg: 1.5rem;
  --shadow-soft: 0 14px 40px rgba(24, 35, 67, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--brand-text);
  background: #fff;
}

.fw-800 {
  font-weight: 800;
}

.section-space {
  padding: 5.5rem 0;
}

.section-soft {
  background: var(--brand-soft);
}

.topbar {
  background: #eef8fd;
  color: var(--brand-navy);
  border-bottom: 1px solid rgba(0, 159, 227, 0.12);
}


body {
  padding-top: 0;
}

.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(8, 30, 47, 0.08);
  border-bottom: 1px solid rgba(0, 159, 227, 0.12);
}

.navbar .nav-link {
  color: var(--brand-text);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--brand-navy);
}

.navbar-toggler {
  background: #eef8fd;
}

.navbar-toggler-icon {
  filter: none;
}

.navbar-brand img {
  height: 70px;
  width: auto;
}

.hero-proof-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.hero-proof-badge strong {
  font-weight: 800;
}

.hero-proof-badge span:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.floating-call-btn {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 1055;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(245, 126, 40, 0.35);
  font-weight: 700;
}

.floating-call-btn:hover,
.floating-call-btn:focus {
  color: #fff;
  background: var(--brand-orange-dark);
}

.floating-call-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1rem;
}

.topbar a {
  text-decoration: none;
}


.btn {
  border-radius: 0.95rem;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
}

.btn-cta {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
  box-shadow: 0 12px 24px rgba(245, 126, 40, 0.28);
}

.btn-cta:hover,
.btn-cta:focus {
  background: var(--brand-orange-dark);
  border-color: var(--brand-orange-dark);
  color: #fff;
}

.btn-outline-brand {
  border: 1px solid rgba(0, 159, 227, 0.22);
  color: var(--brand-navy);
  background: #fff;
}

.btn-outline-brand:hover {
  background: var(--brand-navy);
  color: #fff;
}

.hero-section {
  background: linear-gradient(180deg, #08253c 0%, #0d3b59 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(10, 15, 34, 0.86) 0%, rgba(10, 15, 34, 0.68) 45%, rgba(10, 15, 34, 0.4) 100%), url('../img/hero-service.jpg');
  background-size: cover;
  background-position: center;
}

.eyebrow,
.section-kicker {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-orange);
  font-size: 0.82rem;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.promo-bar {
  display: inline-block;
  background: linear-gradient(90deg, #c72c1e 0%, #f23a29 100%);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
}

.hero-checks li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-checks li::before,
.location-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-navy);
  font-weight: 700;
}

.hero-rating .stars,
.review-top .stars {
  color: #ffce47;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

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

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  color: #fff;
}

.contact-box span,
.contact-panel span,
.contact-panel a {
  font-size: 0.95rem;
}

.contact-box strong,
.contact-panel a,
.contact-panel strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.static-box {
  cursor: default;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
section h2 {
  font-size: clamp(1.85rem, 2.8vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--brand-text);
}

.section-heading p,
section p {
  color: var(--brand-muted);
  line-height: 1.75;
}

.review-card,
.step-card,
.service-card,
.image-card,
.contact-cta,
.map-visual {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.review-card {
  background: #fff;
  border: 1px solid var(--brand-line);
  padding: 1.4rem;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.google-pill {
  background: #edf8fd;
  color: #156287;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.review-author {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}

.review-author span {
  color: #7b869c;
  font-size: 0.88rem;
}

.image-card {
  background: #fff;
  padding: 1rem;
  border: 1px solid var(--brand-line);
}

.image-card-caption {
  margin-top: 1rem;
  color: var(--brand-muted);
  font-size: 0.95rem;
}

.benefits-band {
  position: relative;
  background: linear-gradient(90deg, rgba(7, 32, 49, 0.95) 0%, rgba(11, 57, 84, 0.92) 100%), url('../img/hero-service.jpg');
  background-size: cover;
  background-position: center;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1rem 1rem 1rem 2.6rem;
  position: relative;
  min-height: 100%;
}

.benefit-item::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--brand-navy);
  font-weight: 800;
}

.service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--brand-line);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-card-body {
  padding: 1.25rem;
}

.service-card-body h3,
.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.step-card {
  background: #fff;
  border: 1px solid var(--brand-line);
  padding: 2rem 1.5rem;
  text-align: center;
}

.step-number {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 2px solid rgba(0, 159, 227, 0.22);
  color: var(--brand-navy);
  font-size: 1.4rem;
  font-weight: 800;
}

.location-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.8rem;
}

.contact-panel {
  display: grid;
  gap: 0.6rem;
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  border-radius: 1rem;
  padding: 1.15rem 1.25rem;
}

.contact-panel a {
  color: var(--brand-navy);
  text-decoration: none;
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.contact-section {
  background: linear-gradient(180deg, #0a2b44 0%, #08314b 100%);
}

.contact-cta {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 3rem 1.5rem;
}

.contact-cta h2,
.contact-cta p {
  color: #fff;
}

.site-footer {
  background: #f7f8fb;
  border-top: 1px solid var(--brand-line);
}

.footer-links a {
  color: var(--brand-muted);
  text-decoration: none;
}

.footer-links a:hover,
.topbar a:hover,
.contact-panel a:hover {
  color: var(--brand-navy);
}

.border {
  border-color: var(--brand-line) !important;
}

@media (max-width: 991.98px) {
  .navbar {
    background: rgba(255, 255, 255, 0.98);
  }

  .hero-section .min-vh-100 {
    min-height: auto !important;
  }

  .nav-contact {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 159, 227, 0.12);
  }
}

@media (max-width: 767.98px) {
  .navbar-brand img {
    height: 56px;
  }

  .hero-proof-badge {
    border-radius: 1rem;
    font-size: 0.88rem;
  }

  .section-space {
    padding: 4.25rem 0;
  }

  .hero-section {
    padding-top: 1rem;
  }

  .promo-bar {
    display: block;
  }

  .service-card-img {
    aspect-ratio: 16 / 10;
  }

  .contact-cta {
    padding: 2.25rem 1.25rem;
  }
}


.navbar-brand img, .site-footer img {
  display: block;
}

.review-metric {
  background: linear-gradient(180deg, #f3fbff 0%, #ffffff 100%);
  border-color: rgba(0, 159, 227, 0.18);
}

.contact-box:hover {
  border-color: rgba(0, 159, 227, 0.38);
}


@media (min-width: 992px) {
  .floating-call-btn {
    display: none !important;
  }
}
