:root {
  --ink: #07111f;
  --muted: #5b6472;
  --line: #e8e9ed;
  --gold: #e6a329;
  --gold-dark: #c98310;
  --navy: #071321;
  --paper: #ffffff;
  --shadow: 0 18px 38px rgba(7, 17, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  padding-top: 142px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
}

.topbar,
.navbar {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

.topbar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #121826;
  font-size: 12.5px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.topbar__right,
.topbar__item,
.review-mini,
.rating-row,
.hero-actions,
.trust-row,
.nav-actions {
  display: flex;
  align-items: center;
}

.topbar__right {
  gap: 34px;
}

.topbar__item,
.review-mini,
.rating-row {
  gap: 8px;
}

.review-mini strong,
.rating-row strong {
  font-weight: 650;
}

.header-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #171717;
}

.header-icon--gold {
  color: var(--gold-dark);
}

.header-phone {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #000;
}

.header-icon svg,
.header-phone svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.navbar {
  min-height: 98px;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.brand img {
  display: block;
  width: 245px;
  max-width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.2vw, 54px);
  font-size: 12.5px;
  font-weight: 520;
  white-space: nowrap;
}

.nav-item {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
}

.nav-item > a,
.nav-link-single {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 6px;
}

.nav-item > a span {
  font-size: 14px;
  transform: translateY(-1px);
}

.dropdown {
  position: absolute;
  left: -14px;
  top: calc(100% - 2px);
  min-width: 246px;
  padding: 9px;
  border: 1px solid #e8e9ed;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(7, 17, 31, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(9px);
  transition: opacity 170ms ease, transform 170ms ease;
}

.dropdown--right {
  right: -14px;
  left: auto;
}

.dropdown a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: #fff6e6;
  color: #a8670f;
  outline: 0;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-actions {
  gap: 9px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-size: 12.5px;
  font-weight: 680;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-gold {
  color: #111827;
  background: linear-gradient(135deg, #efb64d, var(--gold-dark));
  box-shadow: 0 10px 18px rgba(230, 163, 41, 0.23);
}

.btn-outline,
.btn-light {
  color: var(--ink);
  background: #fff;
  border-color: #d4d7de;
}

.btn-light,
.btn-light:visited,
.final-cta .btn-light,
.final-cta .btn-light:visited {
  color: var(--ink) !important;
}

.btn-large {
  min-height: 59px;
  min-width: 240px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: 647px;
  position: relative;
  overflow: visible;
  background: #fff;
}

.hero__content {
  width: min(552px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1258px) / 2));
  padding-top: 85px;
  padding-bottom: 50px;
  position: relative;
  z-index: 10;
}

.pill {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 27px;
  border: 1px solid #e4e6eb;
  border-radius: 999px;
  padding: 10px 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 17, 31, 0.05);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pill span,
.stars,
.eyebrow {
  color: var(--gold-dark);
}

/* Online badge (hero pill replacement) */
.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #16a34a;
  color: #fff;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 27px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.online-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #bbf7d0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* Hero Call Now button — orange background, eye-catching */
.btn-hero-call {
  color: #fff;
  background: linear-gradient(135deg, #ea580c, #c2410c);
  border: none;
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.35);
  font-weight: 800 !important;
  font-size: 15px;
  letter-spacing: 0.5px;
  gap: 12px;
  padding: 0 28px;
}

.btn-hero-call:hover {
  box-shadow: 0 14px 32px rgba(234, 88, 12, 0.45);
  background: linear-gradient(135deg, #f97316, #ea580c);
  transform: translateY(-2px);
}

/* Blinking green phone icon inside Call Now button */
.btn-phone-pulse {
  width: 22px !important;
  height: 22px !important;
  color: #4ade80 !important;
  animation: phone-blink 1.2s ease-in-out infinite;
}

.btn-phone-pulse svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #4ade80 !important;
  stroke-width: 2.8 !important;
  filter: drop-shadow(0 0 4px rgba(74, 222, 128, 0.6));
}

@keyframes phone-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 570px;
  margin-bottom: 17px;
  font-size: clamp(44px, 4.7vw, 64px);
  line-height: 1.12;
  font-weight: 900;
}

h1 span {
  color: var(--gold);
}

.hero__content > p {
  max-width: 465px;
  margin-bottom: 27px;
  color: #273141;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 600;
}

.rating-row {
  margin-bottom: 28px;
  font-size: 15px;
  font-weight: 700;
}

.google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.google-mark svg {
  display: block;
}

.stars {
  color: var(--gold-dark);
  letter-spacing: 2px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 32px;
}

.arrow {
  font-size: 25px;
  line-height: 1;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  color: #131a25;
  font-size: 14px;
  font-weight: 700;
}

.trust-row span {
  white-space: nowrap;
}

.trust-row span::first-letter {
  color: var(--gold-dark);
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 61.85%;
  height: 647px;
  background: #101820;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 215px;
  z-index: 2;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 28%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stats {
  width: min(1258px, calc(100% - 144px));
  min-height: 112px;
  margin: -71px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  border: 1px solid rgba(230, 163, 41, 0.53);
  border-radius: 14px;
  background: var(--navy);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 22px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}

.stat span:not(.stat__icon) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
}

.stat__icon,
.circle-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 55px;
  height: 55px;
  border: 1px solid rgba(230, 163, 41, 0.78);
  border-radius: 999px;
  color: var(--gold);
}

.stat__icon svg,
.circle-icon svg {
  display: block;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.priority {
  width: min(1120px, calc(100% - 48px));
  margin: 38px auto 0;
  padding: 24px 0 31px;
  text-align: center;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow::after {
  content: none;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 3.2vw, 40px);
  line-height: 1.15;
  font-weight: 900;
}

.section-copy {
  max-width: 560px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 30px;
  margin-top: 22px;
}

.service-point {
  min-width: 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto auto;
  column-gap: 13px;
  align-items: center;
  color: var(--ink);
  text-align: left;
}

.service-point .circle-icon {
  grid-row: 1 / span 2;
  width: 45px;
  height: 45px;
  color: #07111f;
  background: #fff;
}

.service-point .circle-icon svg {
  width: 22px;
  height: 22px;
}

.service-point strong,
.service-point span:last-child {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.service-point span:last-child {
  font-weight: 800;
}

.icon {
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: currentColor;
}

.icon-pin::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 11px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 10px 0;
  transform: rotate(-45deg);
}

.icon-pin::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.icon-clock::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-clock::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.icon-phone::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 10px;
  height: 14px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 0 10px;
  transform: rotate(-38deg);
}

.icon-shield::before {
  content: "◇";
  color: currentColor;
  font-size: 29px;
  line-height: 18px;
}

.icon-shield::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 1px;
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
}

.icon-users::before {
  content: "♙";
  color: currentColor;
  font-size: 25px;
}

.icon-star::before {
  content: "☆";
  color: currentColor;
  font-size: 30px;
  line-height: 18px;
}

.icon-doc::before {
  content: "▤";
  color: currentColor;
  font-size: 24px;
}

.icon-badge::before {
  content: "♟";
  color: currentColor;
  font-size: 22px;
}

.icon-dollar::before {
  content: "$";
  color: currentColor;
  font-size: 22px;
  font-weight: 900;
}

.icon-like::before {
  content: "✓";
  color: currentColor;
  font-size: 22px;
  font-weight: 900;
}

.social-dot {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: #d22d33;
  font-size: 12px;
  font-weight: 900;
}

.seo-directory {
  width: min(1120px, calc(100% - 48px));
  padding-top: 8px;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.seo-card {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  text-align: left;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.06);
}

.seo-card span {
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.seo-card strong {
  font-size: 16px;
  line-height: 1.32;
  font-weight: 900;
}

.seo-card small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.4;
}

@media (max-width: 1280px) {
  .topbar,
  .navbar {
    width: min(100% - 44px, 1120px);
  }

  .navbar {
    grid-template-columns: 225px minmax(0, 1fr) auto;
    gap: 24px;
  }

  .brand img {
    width: 225px;
  }

  .nav-links {
    gap: clamp(22px, 2.4vw, 34px);
    font-size: 12px;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .stats,
  .service-strip,
  .seo-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 1080px) {
  .navbar {
    grid-template-columns: 210px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .brand img {
    width: 210px;
  }

  .nav-links {
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .topbar {
    width: min(100% - 32px, 720px);
    min-height: 40px;
    justify-content: center;
    font-size: 12px;
  }

  .topbar__right {
    display: none;
  }

  .navbar {
    width: min(100% - 32px, 720px);
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 220px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links,
  .nav-actions {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
  }

  .nav-links.is-open,
  .nav-actions.is-open {
    display: grid;
  }

  .nav-links {
    gap: 0;
    justify-content: stretch;
    border-top: 1px solid var(--line);
    white-space: normal;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }

  .nav-item,
  .nav-link-single {
    min-height: auto;
    display: block;
  }

  .nav-item > a,
  .nav-link-single {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .dropdown {
    display: none;
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 14px;
    min-width: auto;
  }

  .dropdown.is-open {
    display: block;
  }

  .nav-item > a span {
    display: inline;
    font-size: 12px;
    margin-left: 6px;
  }

  .nav-actions {
    grid-template-columns: 1fr;
    padding-bottom: 16px;
  }

  .nav-actions .btn-outline {
    display: inline-flex;
  }

  .hero {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__content {
    width: min(100% - 36px, 640px);
    margin: 0 auto;
    padding: 48px 0 36px;
  }

  .hero__media {
    position: relative;
    width: 100%;
    height: 430px;
  }

  .hero__media::before {
    display: none;
  }

  .stats {
    width: min(100% - 28px, 600px);
    margin-top: -34px;
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(3) {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .service-strip,
  .seo-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-point {
    align-items: center;
  }

  .service-point .circle-icon {
    align-self: center;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 190px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row {
    gap: 12px 18px;
  }

  .service-strip,
  .seo-card-grid {
    grid-template-columns: 1fr;
    width: min(340px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .card-icon,
  .mini-icon {
    align-self: center;
  }
}

/* System-wide typography and icon rules */
body,
body * {
  font-weight: 400 !important;
}

h1,
h2,
h3,
strong,
b,
.btn,
.pill,
.nav-links,
.dropdown a,
.stat strong,
.service-point strong,
.seo-card strong,
summary,
.trust-row span {
  font-weight: 500 !important;
}

.trust-row {
  font-weight: 700 !important;
}

.header-icon,
.header-phone,
.stat__icon,
.circle-icon,
.icon,
.pill span {
  color: var(--gold) !important;
}

@media (max-width: 860px) {
  body {
    padding-top: 118px;
  }
}

/* Homepage continuation */
.home-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.areas-copy h2,
.final-cta h2 {
  color: var(--ink);
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.areas-copy p,
.final-cta p,
.site-footer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.services-overview {
  padding-top: 104px;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.trust-card,
.review-card {
  border: 1px solid #eceef2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(7, 17, 31, 0.07);
}

.service-card {
  min-height: 430px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
}

.card-icon,
.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(200, 154, 43, 0.36);
  border-radius: 999px;
  color: var(--gold);
  background: #fffaf0;
}

.card-icon svg,
.mini-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.trust-card h3,
.timeline-list h3,
.footer-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.22;
}

.service-card p,
.trust-card p,
.timeline-list p,
.review-card p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 22px;
  color: #273141;
  font-size: 14px;
  line-height: 1.45;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.text-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #9f6510;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.text-link span {
  font-size: 20px;
  line-height: 1;
}

.trust-section,
.brands-section {
  width: 100%;
  max-width: none;
  padding: 92px max(24px, calc((100% - 1180px) / 2));
  background: #f7f8fa;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 24px;
}

.trust-card h3,
.trust-card p {
  grid-column: 2;
}

.trust-card .mini-icon {
  grid-row: 1 / span 2;
}

.areas-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 46px;
  align-items: center;
}

.areas-copy {
  max-width: 540px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.area-tags a,
.area-tags span {
  border: 1px solid #e5e8ef;
  border-radius: 999px;
  padding: 10px 14px;
  color: #1b2534;
  background: #fff;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(7, 17, 31, 0.04);
}

.area-tags a {
  color: #9f6510;
}

.map-card {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e8ebf0;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(10, 22, 40, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10, 22, 40, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 58% 42%, rgba(200, 154, 43, 0.16), transparent 34%),
    #fbfcfd;
  background-size: 38px 38px, 38px 38px, auto, auto;
  box-shadow: 0 24px 50px rgba(7, 17, 31, 0.08);
}

.map-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.map-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.map-ring {
  position: absolute;
  z-index: 2;
  inset: 82px;
  border: 1px solid rgba(200, 154, 43, 0.22);
  border-radius: 999px;
}

.ring-two {
  inset: 128px;
}

.map-pin {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(200, 154, 43, 0.36);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  box-shadow: 0 12px 24px rgba(7, 17, 31, 0.1);
}

.map-pin::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.main-pin {
  left: 42%;
  top: 42%;
  color: #fff;
  background: var(--navy);
}

.pin-a {
  left: 18%;
  top: 22%;
}

.pin-b {
  right: 12%;
  bottom: 26%;
}

.pin-c {
  right: 19%;
  top: 18%;
}

.timeline-section {
  padding-top: 82px;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.timeline-list li {
  position: relative;
  border: 1px solid #eceef2;
  border-radius: 14px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(7, 17, 31, 0.06);
}

.timeline-list li > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--gold);
  background: #fff7e8;
  font-size: 13px;
}

.timeline-list h3 {
  margin-bottom: 10px;
}

.reviews-section {
  width: 100%;
  max-width: none;
  padding: 92px max(24px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
}

.review-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.review-top,
.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-top span:last-child,
.review-card footer span {
  color: var(--muted);
  font-size: 13px;
}

.review-card footer {
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

.review-card footer strong {
  color: var(--ink);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.brand-grid span {
  display: grid;
  place-items: center;
  min-height: 74px;
  border: 1px solid #e5e8ef;
  border-radius: 14px;
  color: #1c2635;
  background: #fff;
  font-size: 15px;
  box-shadow: 0 12px 26px rgba(7, 17, 31, 0.05);
}

.faq-home {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.faq-home .section-heading {
  margin: 0;
  text-align: left;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid #e8ebf0;
  border-radius: 14px;
  padding: 0;
  background: #fff;
  box-shadow: 0 12px 26px rgba(7, 17, 31, 0.045);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: 16px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  padding: 0 22px 22px;
}

.final-cta {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(200, 154, 43, 0.34);
  border-radius: 18px;
  padding: 42px;
  color: #fff;
  background: radial-gradient(circle at 88% 18%, rgba(200, 154, 43, 0.28), transparent 27%), var(--navy);
  box-shadow: 0 24px 56px rgba(7, 17, 31, 0.18);
}

.final-cta h2,
.final-cta .eyebrow {
  color: #fff;
}

.final-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 56px max(24px, calc((100% - 1180px) / 2)) 26px;
  color: rgba(255, 255, 255, 0.76);
  background: #071321;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}

.footer-grid img {
  width: 230px;
  margin-bottom: 20px;
  border-radius: 4px;
  background: #fff;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
}

.footer-grid a,
.footer-phone {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.footer-phone {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.card-icon,
.mini-icon,
.text-link,
.map-pin::before,
.timeline-list li > span,
.footer-phone,
.social-links a {
  color: var(--gold) !important;
}

@media (max-width: 1020px) {
  .service-card-grid,
  .trust-grid,
  .review-card-grid,
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-section,
  .faq-home,
  .final-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .areas-copy,
  .faq-home .section-heading {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
  }

  .map-card {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .home-section,
  .trust-section,
  .reviews-section,
  .brands-section {
    width: min(100% - 28px, 520px);
    padding: 64px 0;
  }

  .service-card-grid,
  .trust-grid,
  .timeline-list,
  .review-card-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    grid-template-columns: 1fr;
  }

  .trust-card h3,
  .trust-card p {
    grid-column: auto;
  }

  .final-cta {
    width: min(100% - 28px, 520px);
    padding: 30px;
  }

  .final-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(230, 163, 41, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: preloader-spin 0.7s linear infinite;
}
@keyframes preloader-spin {
  to { transform: rotate(360deg); }
}

/* ===== Contact Page ===== */
.contact-page {
  padding: 60px 0 80px;
}
.contact-section {
  width: min(1100px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.contact-content .eyebrow {
  margin-bottom: 8px;
}
.contact-content h1 {
  font-size: 36px;
  margin: 0 0 12px;
}
.contact-desc {
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}
.form-group input,
.form-group textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(230, 163, 41, 0.15);
}
.form-success {
  background: #dcfce7;
  color: #166534;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.form-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 48px;
}
.contact-card {
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}
.contact-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-dark);
}
.contact-card p {
  font-size: 14px;
  color: var(--ink);
  margin: 0;
}

.nav-call-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  background: var(--gold);
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-call-link:hover {
  background: var(--gold-dark);
}

.nav-call-icon {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #fff;
}

@media (max-width: 860px) {
  .nav-call-link {
    display: flex;
    justify-content: center;
    padding: 12px 20px;
    font-size: 16px;
    margin: 8px 16px;
    border-radius: 10px;
  }
  .nav-call-icon {
    width: 20px;
    height: 20px;
  }
}
