:root {
  --navy-950: #061a31;
  --navy-900: #0b2747;
  --navy-800: #12365f;
  --blue-700: #005bbb;
  --blue-600: #006ed6;
  --orange-600: #ff7900;
  --orange-700: #df6400;
  --teal-700: #087f8c;
  --ink: #172033;
  --muted: #5a667a;
  --line: #d9e2ee;
  --line-strong: #b8c7d9;
  --paper: #ffffff;
  --surface: #f5f8fc;
  --surface-strong: #eaf1f9;
  --shadow: 0 18px 48px rgba(18, 54, 95, 0.14);
  --shadow-soft: 0 10px 24px rgba(18, 54, 95, 0.1);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--blue-700);
}

p {
  margin: 0 0 18px;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-950);
  line-height: 1.08;
  font-weight: 850;
}

h1 {
  max-width: 900px;
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 22px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin: 8px 0;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 2000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  background: var(--paper);
  border: 2px solid var(--blue-700);
  border-radius: var(--radius);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name {
  color: var(--blue-700);
  font-size: 22px;
  font-weight: 900;
}

.brand-locksmith {
  color: var(--orange-600);
  font-size: 15px;
  font-weight: 900;
}

.brand-sub {
  margin-top: 3px;
  color: var(--navy-800);
  font-size: 9px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  position: relative;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 760;
  padding: 10px 0;
}

.nav-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--orange-600);
  content: "";
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--navy-900);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 820;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: var(--paper);
  background: var(--orange-600);
  box-shadow: 0 12px 28px rgba(255, 121, 0, 0.24);
}

.btn-primary:hover {
  color: var(--paper);
  background: var(--orange-700);
  box-shadow: 0 14px 32px rgba(255, 121, 0, 0.3);
}

.btn-secondary {
  color: var(--blue-700);
  background: var(--paper);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  color: var(--navy-900);
  border-color: var(--blue-700);
}

.btn-light {
  color: var(--navy-900);
  background: var(--paper);
  border-color: rgba(255, 255, 255, 0.72);
}

.btn-outline-light {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
}

.btn-outline-light:hover {
  color: var(--navy-900);
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 36%, rgba(255, 255, 255, 0.78) 54%, rgba(255, 255, 255, 0.1) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 41%, rgba(255, 255, 255, 0.64) 58%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(234, 241, 249, 0.82), rgba(255, 255, 255, 0.48));
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/hero-light-locksmith-security.png");
  background-position: center right;
  background-size: cover;
}

.hero-inner {
  display: flex;
  min-height: 500px;
  align-items: center;
  padding: 34px 0 42px;
}

.hero-copy {
  max-width: 760px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--orange-700);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 700px;
  margin-top: 18px;
  color: #324057;
  font-size: 18px;
}

.hero-actions,
.cta-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 22px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-chips a {
  padding: 9px 12px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 8px 22px rgba(18, 54, 95, 0.08);
}

.hero-chips a:hover {
  color: var(--blue-700);
  border-color: var(--blue-700);
}

.trust-strip {
  background: var(--navy-900);
}

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

.trust-grid div {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 12px;
  padding: 18px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 760;
}

.trust-grid svg {
  color: var(--orange-600);
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: var(--surface);
}

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

.section-heading h2 + p,
.page-hero h1 + p,
.section-heading p:last-child {
  margin-top: 14px;
  font-size: 18px;
}

.category-grid,
.service-grid,
.area-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.category-panel,
.service-card,
.area-card,
.contact-panel,
.service-aside,
.related-panel,
.faq-item {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.category-panel,
.service-card,
.area-card,
.contact-panel,
.service-aside,
.related-panel {
  padding: 24px;
}

.category-panel h3,
.service-card h3,
.area-card h3,
.contact-panel h2 {
  margin: 16px 0 10px;
}

.contact-form-panel h2 {
  margin-top: 0;
}

.contact-form {
  margin-top: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0, 91, 187, 0.18);
  border-color: var(--blue-700);
}

.form-full,
.form-actions {
  grid-column: 1 / -1;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 760;
}

.form-status[data-state="success"] {
  color: var(--teal-700);
}

.form-status[data-state="error"] {
  color: #b42318;
}

.contact-form [disabled] {
  cursor: wait;
  opacity: 0.72;
}

.card-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue-700), var(--navy-800));
  border-radius: var(--radius);
  box-shadow: 0 10px 20px rgba(0, 91, 187, 0.18);
}

.category-panel:nth-child(2) .card-icon,
.service-card:nth-child(5n + 2) .card-icon {
  background: linear-gradient(135deg, var(--teal-700), var(--blue-700));
}

.category-panel:nth-child(3) .card-icon,
.service-card:nth-child(5n + 3) .card-icon {
  background: linear-gradient(135deg, var(--orange-600), var(--orange-700));
}

.mini-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.mini-links a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-700);
  font-weight: 820;
}

.text-link svg {
  width: 17px;
  height: 17px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.split h2 + p {
  margin-top: 18px;
  font-size: 18px;
}

.image-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.feature-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--navy-900);
  font-weight: 760;
}

.feature-list svg {
  color: var(--orange-600);
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.cta-band {
  padding: 58px 0;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(0, 91, 187, 0.92), rgba(18, 54, 95, 0.98)),
    var(--navy-900);
}

.cta-band-soft {
  background:
    linear-gradient(135deg, rgba(18, 54, 95, 0.98), rgba(8, 127, 140, 0.88)),
    var(--navy-900);
}

.cta-band h2,
.cta-band p,
.site-footer h2,
.site-footer p,
.site-footer a:not(.btn),
.footer-bottom,
.cta-band .section-kicker {
  color: var(--paper);
}

.cta-band .section-kicker {
  opacity: 0.86;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band-inner > div:first-child {
  max-width: 650px;
}

.page-hero {
  padding: 78px 0 76px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(234, 241, 249, 0.88)),
    var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 740px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  padding-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--blue-700);
  font-weight: 760;
}

.crumb-separator {
  color: var(--line-strong);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.service-aside h2,
.related-panel h2 {
  margin-bottom: 12px;
  font-size: 20px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
  align-items: start;
}

.page-content {
  color: var(--ink);
}

.page-content section + section,
.page-content h2 + p,
.page-content h2 + ul {
  margin-top: 18px;
}

.page-content section {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.page-content section:last-child {
  border-bottom: 0;
}

.page-content a {
  color: var(--blue-700);
  font-weight: 760;
}

.related-panel {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.related-panel h2 + ul {
  margin-bottom: 22px;
}

.all-services {
  grid-template-columns: repeat(3, 1fr);
}

.all-areas {
  grid-template-columns: repeat(4, 1fr);
}

.split-faq {
  align-items: start;
}

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

.faq-item {
  padding: 0;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--navy-950);
  font-weight: 820;
  cursor: pointer;
}

.faq-item summary::after {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--blue-700);
  content: "+";
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 20px 18px;
}

.narrow {
  max-width: 820px;
}

.contact-panel .btn + .btn {
  margin-top: 12px;
}

.contact-panel .btn {
  width: 100%;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.sitemap-grid section {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.site-footer {
  padding: 64px 0 28px;
  color: var(--paper);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-sub,
.footer-brand .brand-name,
.footer-brand .brand-locksmith {
  color: var(--paper);
}

.site-footer ul {
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 9px 0;
}

.site-footer a:not(.btn) {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--orange-600);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-size: 18px;
}

.footer-note {
  margin-top: 16px;
  font-size: 14px;
}

.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.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.mobile-call-bar {
  display: none;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  .category-grid,
  .area-grid,
  .all-areas {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid,
  .all-services,
  .contact-grid,
  .contact-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-panel {
    grid-column: 1 / -1;
  }

  .contact-side {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  body {
    padding-bottom: 64px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-locksmith {
    font-size: 15px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: none;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .main-nav.is-open {
    display: grid;
  }

  .nav-link,
  .nav-call {
    width: 100%;
  }

  .nav-link {
    padding: 12px;
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    min-height: auto;
    background: var(--surface);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9) 58%, rgba(255, 255, 255, 0.58)),
      linear-gradient(180deg, rgba(234, 241, 249, 0.72), rgba(255, 255, 255, 0.68));
  }

  .hero-media {
    position: absolute;
    inset: 0;
    height: auto;
    opacity: 0.2;
    background-position: center right;
  }

  .hero-inner {
    min-height: 590px;
    padding: 42px 0 46px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .trust-grid,
  .category-grid,
  .service-grid,
  .area-grid,
  .all-services,
  .all-areas,
  .contact-grid,
  .contact-layout,
  .split,
  .service-hero-grid,
  .content-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

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

  .page-hero {
    padding: 54px 0 58px;
  }

  .service-aside,
  .related-panel {
    position: static;
  }

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions,
  .hero-actions {
    width: 100%;
  }

  .cta-actions .btn,
  .hero-actions .btn {
    flex: 1 1 210px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .mobile-call-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: 1fr 0.58fr;
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(18, 54, 95, 0.14);
  }

  .mobile-call-bar a {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--paper);
    background: var(--orange-600);
    font-weight: 850;
  }

  .mobile-call-bar a + a {
    color: var(--navy-900);
    background: var(--paper);
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-locksmith {
    font-size: 11px;
  }

  .brand-sub {
    font-size: 6.5px;
    margin-top: 1px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-inner {
    min-height: 520px;
    padding-bottom: 32px;
  }

  .hero-inner {
    padding-top: 34px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-chips {
    margin-top: 14px;
  }

  .hero-chips a {
    display: none;
  }

  .hero-chips a:nth-child(-n + 2) {
    display: inline-flex;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .category-panel,
  .service-card,
  .area-card,
  .contact-panel,
  .service-aside,
  .related-panel,
  .sitemap-grid section {
    padding: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Navigation Dropdowns */
.nav-item {
  position: relative;
}

.has-drop .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.drop-icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

@media (min-width: 801px) {
  .has-drop:hover .drop-icon svg {
    transform: rotate(180deg);
  }
}

.nav-drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 8px;
  list-style: none;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 100;
  pointer-events: none;
}

@media (min-width: 801px) {
  .has-drop:hover .nav-drop {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
}

.nav-drop::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-drop-link {
  display: block;
  padding: 10px 14px;
  color: var(--navy-800);
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.nav-drop-link:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.nav-drop-link.see-all {
  margin-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--blue-600);
  font-weight: 700;
  padding-top: 12px;
  border-radius: 0 0 4px 4px;
}

.nav-drop-link.see-all:hover {
  background: transparent;
  color: var(--blue-800);
}

@media (max-width: 800px) {
  .nav-drop {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 14px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 100%;
    margin-top: 8px;
    display: none;
  }
  
  .has-drop.is-expanded .nav-drop {
    display: block;
  }

  .has-drop.is-expanded .drop-icon svg {
    transform: rotate(180deg);
  }
  
  .has-drop .nav-link {
    justify-content: space-between;
  }
  
  .nav-drop-link {
    padding: 8px 10px;
  }
}


/* --- Aesthetic Image Updates --- */
.has-bg {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.has-bg p, .has-bg h1, .has-bg h2, .has-bg h3, .has-bg .section-kicker {
  color: #ffffff !important;
}

.has-bg .service-aside,
.has-bg .service-aside h2,
.has-bg .service-aside p,
.has-bg .service-aside li {
  color: var(--ink) !important;
  text-shadow: none !important;
}

.has-bg .section-kicker {
  color: #60a5fa !important;
}

.service-card.has-image, .area-card.has-image {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--surface-strong);
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card.has-image:hover .card-image-wrap img,
.area-card.has-image:hover .card-image-wrap img {
  transform: scale(1.05);
}

.card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  margin-top: 0 !important;
}

.card-content p {
  flex-grow: 1;
}

.card-content .text-link {
  margin-top: auto;
}

.page-hero.has-bg {
  border-bottom: none;
}
