:root {
  --brand: #e61f2b;
  --brand-dark: #bc1420;
  --teal: #079da3;
  --ink: #101820;
  --muted: #69727d;
  --line: #e7eaee;
  --soft: #f4f7fa;
}
* {
  box-sizing: border-box;
}
body {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  overflow-x: clip;
}
a {
  text-decoration: none;
}
.top-strip {
  background: #202020;
  color: #fff;
  font-size: 13px;
  padding: 9px 0;
}
.top-strip a,
.top-strip span {
  color: #fff;
}
.top-strip i {
  color: #ffad00;
  margin-right: 7px;
}
.main-nav {
  background: #fff;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.nav-shadow {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
}
.brand:hover {
  color: var(--ink);
}
.brand-logo img {
  display: block;
  height: 52px;
  max-width: 190px;
  object-fit: contain;
  width: auto;
}
.footer-brand.brand-logo img {
  /* filter: brightness(0) invert(1); */
  background: white;
  height: 58px;
  margin-bottom: 18px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 3px solid var(--teal);
  color: var(--teal);
  font-weight: 800;
  font-size: 25px;
  display: grid;
  place-items: center;
  line-height: 1;
}
.brand b {
  display: block;
  color: var(--teal);
  font-size: 24px;
  line-height: 1;
}
.brand small {
  display: block;
  font-size: 11px;
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
}
.nav-link {
  font-weight: 600;
  color: #17212b !important;
}
.dropdown-menu {
  border-radius: 0;
  border: 1px solid var(--line);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}
.resources-menu {
  min-width: 460px;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.resources-col {
  padding: 20px 22px;
}
.resources-col + .resources-col {
  border-left: 1px solid var(--line);
}
.resources-title {
  color: var(--teal);
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.resources-menu .dropdown-item {
  border-radius: 6px;
  font-weight: 700;
  margin-bottom: 4px;
  padding: 10px 12px;
}
.resources-menu .dropdown-item:last-child {
  margin-bottom: 0;
}
.resources-menu .dropdown-item:hover,
.resources-menu .dropdown-item:focus {
  background: #eef7f8;
  color: var(--ink);
}
.breadcrumb-bar {
  background: #f7fafc;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.breadcrumb-bar .breadcrumb-item,
.breadcrumb-bar a {
  color: #5f6f82;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.breadcrumb-bar .breadcrumb-item.active {
  color: var(--ink);
}
.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 800;
  border-radius: 4px;
}
.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}
.btn-dark {
  border-radius: 4px;
  font-weight: 800;
}
.hero {
  position: relative;
  min-height: 700px;
  background: linear-gradient(135deg, #101820 0%, #123c43 58%, #079da3 100%) center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      105deg,
      rgba(16, 24, 32, 0.96) 0%,
      rgba(18, 61, 67, 0.9) 44%,
      rgba(7, 157, 163, 0.64) 100%
    ),
    radial-gradient(circle at 18% 35%, rgba(230, 31, 43, 0.36), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(7, 157, 163, 0.32), transparent 34%);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  background: var(--brand);
  padding: 13px 22px;
  border-radius: 30px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  margin: 24px 0 18px;
}
.hero h1 span {
  color: #ffc107;
}
.hero p {
  max-width: 650px;
  color: #f4f4f4;
  font-size: 17px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0;
}
.hero-points div {
  font-weight: 800;
}
.hero-points i {
  color: #ffc107;
  margin-right: 10px;
  font-size: 22px;
}
.quote-box {
  background: #fff;
  color: var(--ink);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}
.quote-box h3 {
  text-align: center;
  background: var(--teal);
  color: #fff;
  margin: -30px -30px 28px;
  padding: 20px;
  border-radius: 20px 20px 0 0;
  font-weight: 900;
  text-transform: uppercase;
}
.quote-box .form-control,
.quote-box .form-select {
  border: 1px solid #dfe4ea;
  border-radius: 5px;
}
.quote-box .secure {
  text-align: center;
  color: #69727d;
  font-size: 13px;
  margin: 16px 0 0;
}
.quote-box.light {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.09);
  border-radius: 8px;
}
.quote-box.light h3 {
  background: var(--teal);
  border-radius: 8px 8px 0 0;
}
.section-pad {
  padding: 78px 0;
}
.section-soft {
  background: var(--soft);
}
.eyebrow {
  color: var(--teal);
  font-weight: 800;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
}
.underline {
  width: 70px;
  height: 3px;
  background: var(--teal);
  margin: 12px auto 0;
}
.text-left .underline {
  margin-left: 0;
}
.quick-tabs {
  background: #eaf4f4;
}
.quick-tab {
  min-height: 110px;
  border-right: 1px solid #fff;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 18px;
}
.quick-tab i {
  display: block;
  color: var(--teal);
  font-size: 30px;
  margin-bottom: 8px;
}
.card-service {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: 0.25s;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
}
.home-animate-card {
  position: relative;
}
.home-animate-card:after {
  background: linear-gradient(135deg, rgba(7, 157, 163, 0.14), rgba(230, 31, 43, 0.1));
  border-radius: 999px;
  content: "";
  height: 96px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: -44px;
  top: -46px;
  transform: scale(0.72);
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: 96px;
  z-index: 0;
}
.home-animate-card:hover:after {
  opacity: 1;
  transform: scale(1.35);
}
.home-animate-card > * {
  position: relative;
  z-index: 1;
}
.home-animate-card:hover {
  border-color: rgba(7, 157, 163, 0.45);
  box-shadow: 0 20px 46px rgba(7, 157, 163, 0.13);
  transform: translateY(-5px);
}
.card-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
}
.card-media {
  height: 185px;
  background: #e7eeee center/cover no-repeat;
  display: grid;
  place-items: center;
}
.card-media i {
  font-size: 54px;
  color: var(--teal);
}
.card-service .body {
  padding: 22px;
}
.price-chip {
  display: inline-block;
  background: #fff1f1;
  color: var(--brand);
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}
.process-card {
  border: 1px solid transparent;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  transition: 0.25s ease;
}
.process-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #eef1f1;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  color: var(--teal);
  font-size: 36px;
  transition: 0.25s ease;
}
.process-card:hover .process-icon {
  background: var(--teal);
  color: #fff;
  transform: rotate(-4deg) scale(1.06);
}
.process-card h4 {
  font-size: 17px;
  font-weight: 900;
}
.process-card p {
  color: var(--muted);
  margin: 0;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.07);
}
.table-responsive {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pricing-table th {
  min-width: 180px;
  background: #2c3b80;
  color: #fff;
  padding: 22px;
  text-align: center;
}
.pricing-table td {
  padding: 20px;
  border: 1px solid #aeb3bd;
  text-align: center;
}
.pricing-table tr:nth-child(odd) td {
  background: #e0e3ee;
}
.pricing-table tbody tr {
  transition: background 0.2s ease, transform 0.2s ease;
}
.pricing-table tbody tr:hover td {
  background: #eefafa;
}
.pricing-table tbody tr:hover {
  transform: scale(1.005);
}
.review-card {
  background: #fff;
  color: #000;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}
a.review-card:hover,
.review-card.home-animate-card:hover {
  border-color: rgba(7, 157, 163, 0.45);
  box-shadow: 0 18px 42px rgba(7, 157, 163, 0.12);
  transform: translateY(-5px);
}
.home-blog-img {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}
.stars {
  color: #ffad00;
}
.seo-content {
  font-size: 16px;
  color: #4c5661;
}
.seo-content h2,
.seo-content h3 {
  color: var(--ink);
  font-weight: 800;
  margin-top: 26px;
}
.seo-content table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
}
.seo-content td,
.seo-content th {
  border: 1px solid #ccd1d8;
  padding: 12px;
}
.page-hero {
  background: linear-gradient(135deg, #101820 0%, #182d35 52%, #0f575b 100%);
  color: #fff;
  padding: 86px 0;
}
.page-hero h1 {
  font-weight: 900;
}
.contact-hero-card {
  background: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .18);
  color: var(--ink);
  padding: 28px;
}
.contact-hero-card h2 {
  color: var(--ink);
}
.contact-hero-card p {
  align-items: center;
  color: #334155;
  display: flex;
  gap: 10px;
  line-height: 1.45;
}
.contact-hero-card a {
  color: var(--ink);
  text-decoration: none;
}
.listing-card img,
.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.content-wrap img {
  max-width: 100%;
  height: auto;
}
.faq .accordion-button {
  font-weight: 800;
}
.footer {
  background: #101820;
  color: #cbd5df;
  padding: 60px 0 20px;
}
.footer h5 {
  color: #fff;
  font-weight: 900;
}
.footer a {
  display: block;
  color: #cbd5df;
  margin: 7px 0;
}
.footer a:hover {
  color: #fff;
}
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-contact-line i {
  flex: 0 0 18px;
  line-height: 1.7;
  margin-right: 0;
}
.footer-contact-line a,
.footer-contact-line span {
  line-height: 1.6;
}
.contact-phone-list {
  display: grid;
  gap: 6px;
}
.quote-modal .modal-content {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(15, 23, 32, .28);
  overflow: hidden;
}
.quote-modal .modal-dialog {
  max-width: 560px;
}
.quote-modal-close {
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
}
.quote-modal-info {
  background: linear-gradient(150deg, #101820, #0f575b);
  color: #fff;
  padding: 42px 34px;
}
.quote-modal-info h2 {
  font-weight: 900;
  margin: 10px 0 14px;
}
.quote-modal-info ul {
  margin: 22px 0 0;
  padding-left: 18px;
}
.quote-modal-info li {
  margin-bottom: 10px;
}
.quote-modal-form {
  background: #fff;
  padding: 30px;
}
.quote-modal-form .quote-box {
  box-shadow: none;
  padding: 0;
}
.quote-modal-form .quote-box h3 {
  border-radius: 10px 10px 0 0;
  margin: -30px -30px 26px;
}
.branch-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 38px rgba(15,23,32,.07);
  height: 100%;
  padding: 26px;
}
.branch-icon {
  align-items: center;
  background: #e8f8f9;
  border-radius: 12px;
  color: var(--teal);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 16px;
  width: 48px;
}
.branch-card h3 {
  font-size: 20px;
  font-weight: 900;
}
.branch-card p {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.branch-card p i {
  color: var(--teal);
  flex: 0 0 18px;
  line-height: 1.7;
}
.branch-card a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.footer-brand {
  margin-bottom: 20px;
}
.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8793a0;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 10px 24px;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 20px;
}
.footer-bottom a {
  color: #e8fbff;
  font-weight: 800;
}
.float-actions {
  position: fixed;
  left: 18px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}
.float-actions a,
.scroll-top {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  border: 0;
}
.float-actions .wa {
  background: #20c76a;
}
.float-actions .call {
  background: var(--brand);
}
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 28px;
  background: var(--teal);
  z-index: 20;
}
.sticky-side {
  align-self: flex-start;
  position: sticky;
  top: 112px;
}
.sticky-content-row .sticky-aside {
  align-self: flex-start;
  position: sticky;
  top: 112px;
}
.sticky-content-row .sticky-aside .sticky-side {
  position: static;
  top: auto;
}
.contact-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 45px rgba(15, 23, 32, .08);
  height: 100%;
  padding: 28px;
}
.contact-info-card i {
  align-items: center;
  background: #e8f8f9;
  border-radius: 10px;
  color: var(--teal);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 12px;
  width: 44px;
}
.contact-info-card a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
@media (max-width: 1199px) {
  .main-nav .btn {
    margin-top: 10px;
    width: 100%;
  }
  .main-nav .navbar-collapse {
    max-height: calc(100vh - 155px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 14px 0 18px;
  }
  .main-nav .navbar-nav {
    gap: 4px;
  }
  .main-nav .dropdown-menu {
    max-height: 260px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 8px 0;
  }
  .main-nav .nav-resources .dropdown-menu {
    min-width: 100%;
  }
  .resources-grid {
    grid-template-columns: 1fr;
  }
  .resources-col {
    padding: 14px 16px;
  }
  .resources-col + .resources-col {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .main-nav .dropdown-item {
    white-space: normal;
    line-height: 1.35;
    padding: 10px 16px;
  }
  .sticky-side {
    max-height: none;
    overflow: visible;
    position: static;
    padding-bottom: 0;
  }
  
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 60px 0;
  }
  .hero-points {
    grid-template-columns: 1fr;
  }
  .sticky-content-row .sticky-aside {
    position: static;
  }
}

@media (max-width: 767.98px){
  .card-media{
    height: 210px;
  }
}

@media (max-width: 575px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }
  .quick-tab {
    min-height: 82px;
    font-size: 14px;
  }
  .section-pad {
    padding: 52px 0;
  }
  .pricing-table {
    font-size: 13px;
    min-width: 640px;
  }
  .pricing-table th{
    min-width: 125px;
  }
  .pricing-table th,
  .pricing-table td {
    padding: 11px;
  }
  .brand b {
    font-size: 19px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
}

.about-hero {
  position: relative;
  background: linear-gradient(135deg, #101820 0%, #182d35 52%, #0f575b 100%);
  color: #fff;
  padding: 88px 0;
  overflow: hidden;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(230, 31, 43, 0.25),
      transparent 28%
    ),
    radial-gradient(circle at 85% 10%, rgba(7, 157, 163, 0.35), transparent 28%);
}
.about-hero .container {
  position: relative;
  z-index: 1;
}
.about-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  margin: 22px 0;
}
.about-hero p {
  color: #dbe7ea;
  font-size: 18px;
  max-width: 780px;
}
.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.about-metrics div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 18px;
}
.about-metrics strong {
  display: block;
  color: #fff;
  font-size: 30px;
}
.about-metrics span {
  color: #bdd0d4;
  font-size: 13px;
  font-weight: 700;
}
.about-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  padding: 34px;
}
.about-panel i {
  width: 76px;
  height: 76px;
  background: var(--teal);
  border-radius: 8px;
  color: #fff;
  display: grid;
  font-size: 34px;
  margin-bottom: 22px;
  place-items: center;
}
.about-panel h2,
.about-checklist h2 {
  font-weight: 900;
}
.about-checklist {
  background: #101820;
  border-radius: 8px;
  color: #fff;
  padding: 34px;
  position: sticky;
  top: 110px;
}
.about-checklist p {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #dce7eb;
  margin: 0;
  padding: 12px 0;
}
.about-checklist i {
  color: #31d178;
  margin-right: 8px;
}
.seo-link-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  color: var(--ink);
  display: flex;
  font-weight: 800;
  gap: 12px;
  height: 100%;
  min-height: 78px;
  padding: 16px 18px;
  transition: 0.2s;
}
.seo-link-card:hover {
  border-color: var(--teal);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  color: var(--teal);
  transform: translateY(-3px);
}
.seo-link-card i {
  background: #eaf4f4;
  border-radius: 8px;
  color: var(--teal);
  display: grid;
  flex: 0 0 auto;
  height: 38px;
  place-items: center;
  width: 38px;
}
.service-hero-media {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  max-width: 520px;
  overflow: hidden;
}
.service-hero-media img {
  display: block;
  object-fit: cover;
  width: 100%;
}
.form-success-toast {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  color: #065f46;
  font-weight: 800;
  margin-bottom: 16px;
  padding: 14px 16px;
}
.form-alert-toast {
  border-radius: 10px;
  font-weight: 800;
  margin-bottom: 16px;
  padding: 14px 16px;
}
.form-alert-danger {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}
.captcha-panel {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: space-between;
  border-top: 1px solid rgba(199, 199, 199, 0.603);
  padding-top: 5px;
}
.captcha-copy {
  flex: 0 0 auto;
}
.captcha-copy strong {
  color: var(--ink);
  display: block;
  font-size: 16px;
  font-weight: 900;
  margin: 0;
}

.captcha-input-wrap {
  flex: 1 1 150px;
  max-width: 190px;
  min-width: 130px;
}
.captcha-trap {
  height: 0 !important;
  left: -9999px !important;
  opacity: 0 !important;
  padding: 0 !important;
  position: absolute !important;
  width: 0 !important;
}
.btn-loading {
  opacity: 0.78;
  pointer-events: none;
}
.btn-loading:after {
  animation: spin 0.8s linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 16px;
  margin-left: 8px;
  vertical-align: -3px;
  width: 16px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.route-mini-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  color: var(--ink);
  display: block;
  height: 100%;
  padding: 18px;
  transition: 0.2s;
}
.route-mini-card:hover {
  border-color: var(--teal);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  color: var(--ink);
  transform: translateY(-3px);
}
.route-mini-card small {
  color: #718096;
  display: block;
  font-size: 12px;
}
.route-mini-card strong {
  display: block;
  font-size: 17px;
  margin: 4px 0;
}
.route-mini-card span {
  color: #16a34a;
  font-size: 13px;
  font-weight: 800;
}
.city-compact-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  color: var(--ink);
  display: flex;
  gap: 14px;
  min-height: 92px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.city-compact-card:before {
  background: linear-gradient(135deg, rgba(7, 157, 163, 0.14), rgba(230, 31, 43, 0.1));
  border-radius: 999px;
  content: "";
  height: 92px;
  position: absolute;
  right: -34px;
  top: -44px;
  transition: transform 0.28s ease;
  width: 92px;
}
.city-compact-card:hover {
  border-color: rgba(7, 157, 163, 0.45);
  box-shadow: 0 18px 42px rgba(7, 157, 163, 0.14);
  color: var(--ink);
  transform: translateY(-5px);
}
.city-compact-card:hover:before {
  transform: scale(1.45);
}
.city-compact-icon {
  align-items: center;
  background: #eaf8f8;
  border-radius: 10px;
  color: var(--teal);
  display: flex;
  flex: 0 0 48px;
  font-size: 20px;
  height: 48px;
  justify-content: center;
  transition: 0.24s ease;
  width: 48px;
}
.city-compact-card:hover .city-compact-icon {
  background: var(--teal);
  color: #fff;
  transform: rotate(-4deg) scale(1.06);
}
.city-compact-copy {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.city-compact-copy small {
  color: #718096;
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.city-compact-copy strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}
.city-compact-arrow {
  color: var(--brand);
  position: relative;
  transform: translateX(-4px);
  transition: transform 0.24s ease;
  z-index: 1;
}
.city-compact-card:hover .city-compact-arrow {
  transform: translateX(3px);
}
.review-score {
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  margin-top: 12px;
}
.review-score span {
  color: #718096;
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.review-pro-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  height: 100%;
  padding: 24px;
}
.review-pro-card p {
  font-style: italic;
  color: #425263;
}
.review-person {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.review-person span {
  background: var(--brand);
  border-radius: 50%;
  color: #fff;
  display: grid;
  font-weight: 900;
  height: 42px;
  place-items: center;
  width: 42px;
}
.review-person small {
  color: #718096;
  display: block;
}
.review-submit-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
  padding: 26px;
}
.review-submit-box h3 {
  font-weight: 900;
}
.blog-detail-media {
  border-radius: 12px;
  overflow: hidden;
}
.blog-detail-media img {
  display: block;
  max-height: 430px;
  object-fit: cover;
  width: 100%;
}
.seo-content.content-wrap > h2,
.seo-content > h2 {
  background: linear-gradient(135deg, #f8fbfc, #eef8f9);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  margin-top: 34px;
  padding: 18px 20px;
}
.seo-content.content-wrap > h3,
.seo-content > h3 {
  border-bottom: 1px solid var(--line);
  margin-top: 28px;
  padding-bottom: 8px;
}
.seo-content.content-wrap > ul,
.seo-content.content-wrap > ol,
.seo-content > ul,
.seo-content > ol {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
  margin: 18px 0 26px;
  padding: 20px 24px 20px 42px;
}
.seo-content.content-wrap > p:nth-of-type(4n),
.seo-content > p:nth-of-type(4n) {
  background: #f8fafc;
  border-left: 3px solid var(--brand);
  border-radius: 8px;
  padding: 16px 18px;
}
.faq-group-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  height: 100%;
  padding: 24px;
}
.footer-pro {
  background: linear-gradient(135deg, #0f1720, #101820 58%, #07383b);
}
.footer-pro .brand-mark {
  background: transparent;
}
.footer-pro h5 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 10px;
}
.footer-pro a {
  line-height: 1.55;
}
.footer-pro p i {
  color: #6ee7ee;
  margin-right: 6px;
}
.footer-pro .footer-contact-line {
  align-items: center;
  display: flex;
  gap: 10px;
}
.footer-pro .footer-contact-line i {
  flex: 0 0 18px;
  line-height: 1.7;
  margin-right: 0;
}
.footer-pro .footer-contact-line a,
.footer-pro .footer-contact-line span {
  line-height: 1.6;
}

.calculator-hero {
  background: linear-gradient(135deg, #101820 0%, #123c43 58%, #079da3 100%);
  color: #fff;
  padding: 72px 0;
}
.calculator-hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
}
.calculator-hero h1 span {
  color: #ffc107;
}
.calculator-hero p {
  color: #dce9ec;
  font-size: 18px;
  margin: 0 auto;
  max-width: 760px;
}
.calc-section {
  background: #f8fafc;
}
.calc-trust-card,
.calc-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(15, 23, 32, 0.07);
}
.calc-trust-card {
  padding: 28px;
  position: sticky;
  top: 112px;
}
.calc-trust-card h2,
.calc-trust-card h3 {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .04em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.calc-trust-card h2 span {
  background: var(--teal);
  border-radius: 999px;
  display: inline-block;
  height: 9px;
  margin-right: 8px;
  width: 9px;
}
.calc-stats {
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 26px;
  padding: 16px;
  text-align: center;
}
.calc-stats b {
  font-size: 24px;
  font-weight: 900;
}
.calc-stats small {
  color: #8794a8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.calc-trust-card ul,
.calc-trust-card ol {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0 0 26px;
  padding: 16px 0 0;
}
.calc-trust-card li {
  margin-bottom: 14px;
}
.calc-trust-card ul li:before {
  background: #d9fbef;
  border-radius: 999px;
  color: #08a66d;
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  padding: 5px;
}
.calc-trust-card ol {
  counter-reset: calcStep;
}
.calc-trust-card ol li {
  counter-increment: calcStep;
  display: grid;
  gap: 2px;
}
.calc-trust-card ol li:before {
  background: #eef2ff;
  border-radius: 9px;
  content: counter(calcStep);
  display: grid;
  font-weight: 900;
  height: 34px;
  place-items: center;
  width: 34px;
}
.calc-trust-card ol span {
  color: #7c8ba1;
  display: block;
  font-size: 13px;
}
.calc-panel {
  min-height: 620px;
  overflow: hidden;
  padding: 34px;
}
.calc-progress {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
  padding-bottom: 18px;
}
.calc-progress button {
  background: transparent;
  border: 0;
  color: #8a97aa;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.calc-progress span {
  background: #fff;
  border: 1px solid #dbe3ec;
  border-radius: 50%;
  display: grid;
  height: 34px;
  margin: 0 auto 8px;
  place-items: center;
  width: 34px;
}
.calc-progress button.active,
.calc-progress button.done {
  color: #4f46e5;
}
.calc-progress button.active span {
  background: #4f46e5;
  border-color: #4f46e5;
  color: #fff;
}
.calc-progress button.done span {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}
.calc-step {
  animation: calcIn .34s ease;
  display: none;
}
.calc-step.active {
  display: block;
}
@keyframes calcIn {
  from { opacity: 0; transform: translateY(14px) scale(.99); }
  to { opacity: 1; transform: none; }
}
.calc-step h2 {
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.calc-step > p {
  color: #8190a4;
  font-size: 13px;
  margin-bottom: 24px;
  text-align: center;
}
.calc-panel label,
.calc-label {
  color: #61708a;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.calc-next,
.calc-actions .btn,
.calc-step .btn-brand {
  border-radius: 10px;
  font-weight: 900;
  margin-top: 16px;
  min-height: 48px;
  width: 100%;
}
.calc-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: 150px 1fr;
}
.move-type-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 18px;
}
.move-type {
  background: #fff;
  border: 1px solid #dbe3ec;
  border-radius: 10px;
  font-weight: 900;
  min-height: 76px;
  transition: .22s ease;
}
.move-type span {
  display: block;
  font-size: 22px;
}
.move-type.active,
.move-type:hover,
.calc-tabs button.active,
.calc-item.active {
  background: #4f46e5;
  border-color: #4f46e5;
  color: #fff;
  transform: translateY(-2px);
}
.item-picker,
.addon-box {
  background: #f8fafc;
  border: 1px solid #e3e9f1;
  border-radius: 14px;
  margin-top: 18px;
  padding: 18px;
}
.calc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.calc-tabs button {
  background: #fff;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
}
.calc-items,
#addonOptions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}
.calc-item,
.addon-option {
  align-items: center;
  background: #fff;
  border: 1px solid #dbe3ec;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  min-height: 58px;
  padding: 10px;
  text-align: left;
  transition: .22s ease;
}
.calc-item strong,
.addon-option strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}
.calc-item small,
.addon-option small {
  color: #65758c;
  display: block;
  font-size: 11px;
}
.custom-item-box,
.selected-items {
  background: #fff;
  border: 1px dashed #dbe3ec;
  border-radius: 10px;
  margin-top: 14px;
  padding: 12px;
}
.selected-row {
  align-items: center;
  border-bottom: 1px solid #eef2f7;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto auto;
  padding: 10px 0;
}
.qty-control {
  align-items: center;
  background: #f3f6fb;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  padding: 4px 8px;
}
.qty-control button,
.remove-item {
  background: transparent;
  border: 0;
  font-weight: 900;
}
.estimate-result {
  padding: 32px;
}
.estimate-result h2 {
  font-weight: 900;
}
.estimate-price {
  color: var(--brand);
  font-size: 44px;
  font-weight: 900;
}
.estimate-breakdown {
  background: #f8fafc;
  border-radius: 12px;
  margin: 18px 0;
  padding: 18px;
}
.estimate-breakdown div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
}

@media (max-width: 991px) {
  .calc-trust-card {
    position: static;
  }
}
@media (max-width: 767px) {
  .calc-panel {
    padding: 22px;
  }
  .calc-progress,
  .move-type-grid,
  .calc-items,
  #addonOptions {
    grid-template-columns: 1fr;
  }
  .calc-actions {
    grid-template-columns: 1fr;
  }
  .custom-item-box .d-flex {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .about-metrics {
    grid-template-columns: 1fr;
  }
  .about-hero {
    padding: 58px 0;
  }
  .about-checklist {
    position: static;
  }
}
