:root {
  --navy: #10233d;
  --navy-dark: #0a1729;
  --gold: #8b95a6;
  --gold-light: #c7d0dc;
  --red: #c0392b;
  --gray-50: #f7f8fa;
  --gray-100: #eef1f5;
  --gray-500: #5b6675;
  --gray-700: #303a47;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(16, 35, 61, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--gray-700);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: anywhere;
  hyphens: auto;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-dark);
  color: #dbe3ee;
  font-size: 0.8rem;
}
.topbar .container {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
@media (min-width: 640px) {
  .topbar {
    font-size: 0.85rem;
  }
  .topbar .container {
    justify-content: space-between;
    text-align: left;
  }
}
.topbar .status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--gold-light);
}
.status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35d07f;
  box-shadow: 0 0 0 3px rgba(53, 208, 127, 0.25);
}
.topbar .top-phone {
  display: none;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ---------- Header ---------- */
header.main {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 35, 61, 0.06);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 6px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--navy);
}
.brand-mark {
  width: 64px;
  height: 64px;
  object-fit: cover;
  flex-shrink: 0;
}
.brand-text .sub {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-links {
  display: none;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
}
.nav-links a:hover {
  color: var(--navy);
}

/* Mobile burger menu */
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  order: 3;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 640px) {
  .nav {
  }
  .brand {
    gap: 12px;
    font-size: 1.15rem;
  }
  .brand-mark {
    width: 56px;
    height: 56px;
  }
  .brand-text .sub {
    font-size: 0.72rem;
    letter-spacing: 0.6px;
  }
}
@media (max-width: 959px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 35, 61, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open {
    display: flex;
    max-height: 400px;
  }
  .nav-links a {
    padding: 14px 20px;
    border-top: 1px solid rgba(16, 35, 61, 0.08);
  }
}
@media (min-width: 960px) {
  .nav-links {
    display: flex;
  }
  .nav-burger {
    display: none;
  }
  .nav-cta {
    display: inline-flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .btn {
    gap: 10px;
    padding: 13px 24px;
    font-size: 0.98rem;
  }
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px rgba(192, 57, 43, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 10px 26px rgba(192, 57, 43, 0.45);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 14px;
}

.icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(
      1100px 600px at 85% -10%,
      rgba(211, 163, 76, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 40px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 60px solid rgba(211, 163, 76, 0.08);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
  position: relative;
}
.badge-row {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
@media (min-width: 960px) {
  .hero {
    padding: 76px 0 84px;
  }
  .hero .container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
  .badge-row {
    display: flex;

    gap: 10px;
    margin-bottom: 22px;
  }
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #eef1f5;
}
.pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35d07f;
}

.hero h1 {
  font-size: clamp(1.7rem, 6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 14px;
}
.hero h1 span {
  color: var(--gold-light);
}
.hero p.lead {
  font-size: 1rem;
  color: #c8d2e0;
  max-width: 520px;
  margin-bottom: 24px;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-ctas .btn {
  width: 100%;
}
.btn-lg {
  padding: 15px 26px;
  font-size: 0.98rem;
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #aeb9c9;
  font-size: 0.85rem;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-card {
  background: #fff;
  color: var(--gray-700);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

@media (min-width: 960px) {
  .hero p.lead {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
  }
  .hero-ctas .btn {
    width: auto;
  }
  .btn-lg {
    padding: 17px 30px;
    font-size: 1.05rem;
  }
  .trust-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 0.88rem;
  }
  .hero-card {
    padding: 30px;
  }
}
.hero-card .price-badge {
  display: inline-block;
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.hero-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.hero-card .call-now {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  border-radius: 14px;
  padding: 16px 18px;
  color: #fff;
  margin-bottom: 16px;
}
.hero-card .call-now .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card .call-now .num {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.hero-card .call-now .lbl {
  font-size: 0.78rem;
  color: #b9c3d3;
}
.hero-card ul.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--gray-700);
  margin-bottom: 9px;
}
.hero-card ul.checklist li svg {
  color: #2ea86f;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---------- Sections generic ---------- */
section {
  padding: 52px 0;
}
.section-head {
  max-width: 660px;
  margin: 0 auto 32px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.5rem, 5vw, 2.3rem);
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--gray-500);
  font-size: 0.96rem;
}

.bg-alt {
  background: var(--gray-50);
}

@media (min-width: 640px) {
  section {
    padding: 76px 0;
  }
  .section-head {
    margin-bottom: 46px;
  }
  .eyebrow {
    font-size: 0.82rem;
    margin-bottom: 12px;
  }
  .section-head h2 {
    margin-bottom: 14px;
  }
  .section-head p {
    font-size: 1.02rem;
  }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 {
  color: var(--navy);
  font-size: 1.12rem;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray-500);
  font-size: 0.94rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .service-card {
    padding: 30px 26px;
  }
}

/* ---------- Why us ---------- */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
.why-wrap img.placeholder-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (min-width: 960px) {
  .why-wrap {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
  }
  .why-list {
    gap: 26px;
  }
}
.why-item {
  display: flex;
  gap: 18px;
}
.why-item .num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h4 {
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.why-item p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.step {
  text-align: center;
  padding: 10px;
  position: relative;
}
@media (min-width: 480px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}
.step .step-num {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.02rem;
}
.step p {
  color: var(--gray-500);
  font-size: 0.88rem;
}

/* ---------- Emergency CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--red), #96281b);
  color: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-banner h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
}
.cta-banner .btn {
  background: #fff;
  color: var(--red);
  width: 100%;
}

@media (min-width: 640px) {
  .cta-banner {
    flex-direction: row;
    text-align: left;
    padding: 44px 44px;
    gap: 30px;
    flex-wrap: wrap;
  }
  .cta-banner h3 {
    font-size: 1.5rem;
  }
  .cta-banner p {
    font-size: 0.98rem;
  }
  .cta-banner .btn {
    width: auto;
  }
}

/* ---------- Service area ---------- */
.area-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-top: 20px;
}
@media (min-width: 960px) {
  .area-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 46px;
  }
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.95rem;
  color: var(--gray-700);
}
.area-list li svg {
  color: var(--red);
  flex-shrink: 0;
}

.map-box {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}
.map-box iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}
.map-box .map-footer {
  background: #fff;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}
.map-box .map-footer .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .map-box iframe {
    height: 360px;
  }
  .map-box .map-footer {
    padding: 18px 22px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .map-box .map-footer .btn {
    width: auto;
  }
}
.map-box .map-footer .addr {
  font-size: 0.92rem;
  color: var(--gray-700);
}
.map-box .map-footer .addr strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 400;
  margin-left: 20px;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  color: var(--gray-500);
  margin-top: 12px;
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
footer {
  background: var(--navy-dark);
  color: #b9c3d3;
  padding: 44px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-grid .brand {
  color: #fff;
  margin-bottom: 14px;
}
.footer-grid p.desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-links li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  font-size: 0.8rem;
  color: #7f8ba0;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
  }
}
@media (min-width: 960px) {
  footer {
    padding: 56px 0 26px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    font-size: 0.82rem;
  }
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--red);
  padding: 14px 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
}
body {
  padding-bottom: 60px;
}

@media (min-width: 640px) {
  .mobile-call-bar {
    display: none;
  }
  .topbar .top-phone {
    display: inline;
  }
  body {
    padding-bottom: 0;
  }
}
