:root {
  --bg: #05070a;
  --bg-soft: #080b10;
  --bg-softer: #0b0f16;
  --card: #080c12;
  --border: #141b29;
  --accent: #7cff42;
  --accent-soft: rgba(124, 255, 66, 0.18);
  --accent-strong: #b9ff8f;
  --text: #f9fafb;
  --muted: #9ca3af;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.9);
  --shadow-md: 0 18px 60px rgba(0, 0, 0, 0.8);
  --ff: "Inter", "SF Pro Text", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff);
  background: radial-gradient(circle at top, #05070a, #020409 60%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* WordPress wrapper reset */
.site-main,
#site-content,
.entry-content,
.post-inner,
.section-inner,
.wp-block-group,
.wp-block-columns {
  width: 100%;
  max-width: 100% !important;
}

.section-inner,
.entry-header-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 7, 10, 0.97), rgba(5, 7, 10, 0.9));
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

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

.brand img {
  height: 110px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(124, 255, 66, 0.65));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-tagline {
  font-size: 13px;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13px;
  flex-wrap: nowrap;
}

.nav,
.nav a {
  word-break: normal;
  overflow-wrap: normal;
}

.nav a {
  white-space: nowrap;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  border-radius: 999px;
  transition: width 0.16s ease;
}

.nav a:hover {
  color: var(--text);
  text-shadow: 0 0 6px rgba(124, 255, 66, 0.35);
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 6px;
  flex-shrink: 0;
}

.btn-small,
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}

.btn-small {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 8px 14px;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.12), rgba(8, 11, 16, 0.95));
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-small span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(124, 255, 66, 0.9);
}

.nav-toggle {
  display: none;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 7px 10px;
  background: rgba(8, 11, 16, 0.96);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 8px 0 14px;
  font-size: 13px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.nav-mobile a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 0;
}

.nav-mobile-open .nav-mobile {
  display: flex;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile-open .nav-toggle span {
  background: transparent;
}

.nav-mobile-open .nav-toggle span::before {
  transform: translateY(5px) rotate(45deg);
}

.nav-mobile-open .nav-toggle span::after {
  transform: translateY(-5px) rotate(-45deg);
}

/* Typography */
h1,
h2,
h3,
h4 {
  margin: 0 0 0.6em;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 42px;
  font-weight: 800;
}

h2 {
  font-size: 30px;
  font-weight: 700;
}

h3 {
  font-size: 22px;
  font-weight: 700;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p,
li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* Hero */
.hero {
  padding: 40px 0 30px;
}

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

.hero-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 10px;
}

.hero-title {
  max-width: 700px;
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-sub {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 6px 11px;
  font-size: 11px;
  background: radial-gradient(circle at top, rgba(11, 15, 22, 1), rgba(11, 15, 22, 0.92));
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(124, 255, 66, 0.9);
}

.badge strong {
  color: var(--accent-strong);
}

.badge.new {
  color: #64ff6a;
  border-color: #64ff6a;
  background-color: rgba(100, 255, 106, 0.08);
}

.badge.trending {
  color: #ffa64d;
  border-color: #ffa64d;
  background-color: rgba(255, 166, 77, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn-primary {
  border: none;
  border-radius: 999px;
  padding: 13px 21px;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #022c22;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: 0 16px 50px rgba(34, 197, 94, 0.55);
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 0 16px rgba(124, 255, 66, 0.55);
  transform: translateY(-1px);
}

.btn-ghost {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 11px 18px;
  background: rgba(11, 15, 22, 0.96);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-ghost:hover {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(124, 255, 66, 0.25);
  transform: translateY(-1px);
}

.hero-meta {
  font-size: 12px;
  color: var(--muted);
}

.hero-meta strong {
  color: var(--text);
}

.hero-card,
.contact-card,
.service-card,
.review-card,
.blog-item,
.accordion-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.hero-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(124, 255, 66, 0.15), #05070a);
  box-shadow: var(--shadow-lg);
  padding: 16px;
}

.hero-card img {
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}

.hero-tag {
  margin-bottom: 4px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.hero-card p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
}

/* Form */
.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.form-row .field {
  flex: 1 1 0;
}

.field-label {
  margin-bottom: 3px;
  font-size: 11px;
  color: var(--muted);
}

.field-input,
.blog-search input,
input,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  border-radius: 11px !important;
  border: 1px solid rgba(148, 163, 184, 0.6) !important;
  background: rgba(8, 11, 16, 0.96) !important;
  background-color: rgba(8, 11, 16, 0.96) !important;
  padding: 10px 12px !important;
  font-size: 14px !important;
  color: #f9fafb !important;
  -webkit-text-fill-color: #f9fafb !important;
  outline: none;
}

.field-input:focus,
.blog-search input:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(124, 255, 66, 0.35);
}

input,
input[type="text"],
input[type="email"],
input[type="tel"],
select {
  height: 48px !important;
  line-height: 1.2 !important;
}

textarea,
textarea.field-input {
  height: auto !important;
  min-height: 110px !important;
  line-height: 1.5 !important;
  resize: vertical;
}

.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.form-note {
  font-size: 10px;
  color: var(--muted);
}

.form-note span {
  color: var(--accent-strong);
}

.form-error {
  display: none;
  font-size: 11px;
  color: #f97373;
  margin-top: 4px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #f9fafb !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(8, 11, 16, 0.96) inset !important;
  box-shadow: 0 0 0 1000px rgba(8, 11, 16, 0.96) inset !important;
  background-color: rgba(8, 11, 16, 0.96) !important;
  border: 1px solid rgba(148, 163, 184, 0.6) !important;
  caret-color: #f9fafb !important;
}

/* Sections */
.section {
  padding: 16px 0 32px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-sub {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--accent-strong);
  text-decoration: none;
}

/* Service / review / blog grids */
.service-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.review-card,
.blog-item {
  border-radius: var(--radius-md);
  padding: 16px;
}

.service-icon {
  width: 28px;
  height: 28px;
  border-radius: 11px;
  background: rgba(8, 11, 16, 1);
  border: 1px solid rgba(148, 163, 184, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 15px;
}

.service-card h3,
.blog-item h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.service-card p,
.review-card,
.review-body,
.blog-meta,
.contact-card,
.contact-item,
.contact-tag {
  font-size: 14px;
  line-height: 1.6;
}

.service-card p,
.blog-meta,
.review-body {
  color: var(--muted);
}

.service-pill,
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-pill span,
.area-pill {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: #05070a;
  font-size: 11px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.review-name {
  font-weight: 600;
}

.review-stars {
  color: #facc15;
  font-size: 11px;
}

.review-meta {
  font-size: 11px;
  color: var(--muted);
}

/* Split / map / contact */
.split,
.contact-layout,
.featured {
  display: grid;
  gap: 18px;
  align-items: start;
}

.split {
  grid-template-columns: 1.1fr 1fr;
}

.contact-layout {
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
}

.featured {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.contact-card {
  border-radius: var(--radius-lg);
  padding: 20px;
}

.contact-card h1,
.contact-card .hero-title {
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.contact-card h2,
.contact-card .section-title {
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 1.15;
}

.contact-meta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
}

.contact-item strong {
  color: var(--text);
}

.contact-tag {
  margin-top: 8px;
  color: var(--muted);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.map-shell {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Blog / content */
.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.stack > h2 {
  margin: 28px 0 12px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.stack > h3 {
  margin: 22px 0 8px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
}

.stack > p,
.stack > ul,
.stack > ol {
  font-size: 15px;
  line-height: 1.7;
}

.stack > ul,
.stack > ol {
  padding-left: 20px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.blog-search {
  margin: 0 0 20px;
}

.blog-item.hidden,
.no-results {
  display: none !important;
}

.no-results {
  text-align: center;
  padding: 16px 0;
  color: var(--muted);
  font-size: 14px;
}

.blog-item.trending {
  border: 1px solid var(--accent-strong);
  box-shadow: 0 0 14px rgba(124, 255, 66, 0.25);
  transform: translateY(-3px);
  transition: all 0.28s ease;
}

.trending-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: #022c22;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Cities */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.city-grid a {
  display: block;
  padding: 14px 16px;
  background: #0f1720;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.2s ease;
}

.city-grid a:hover {
  background: #1c2a36;
  border-color: #4ade80;
  transform: translateY(-2px);
}

/* Service icon cards */
.service-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.service-icons .service-icon {
  width: auto;
  height: auto;
  display: block;
  margin: 0;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  background: #0f0f0f;
  border: 1px solid #1d1d1d;
  color: #7cff42;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #171717;
}

.accordion-header {
  width: 100%;
  padding: 18px 22px;
  background: #111;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  border: none;
  outline: none;
}

.accordion-header:hover {
  background: #141414;
  box-shadow: inset 0 0 10px rgba(124, 255, 66, 0.15);
}

.acc-icon {
  margin-right: 12px;
  font-size: 20px;
}

.accordion-item.active .accordion-header {
  border-left: 4px solid #7cff42;
  padding-left: 18px;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  opacity: 0;
  background: #0d0d0d;
  color: #ddd;
  line-height: 1.7;
  transition: max-height 0.32s ease, opacity 0.28s ease, padding 0.32s ease;
}

.accordion-body.show {
  max-height: 400px;
  opacity: 1;
  padding: 20px 26px;
}

/* Comparison */
.comparison-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 30px;
  padding: 20px;
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
}

.comparison-column {
  flex: 1;
  min-width: 250px;
}

.comparison-column h3 {
  margin-bottom: 8px;
  color: #b7ff5a;
  font-weight: 700;
}

.comparison-column p {
  margin: 0;
  line-height: 1.5;
  color: #ccc;
}

/* Footer */
.site-footer {
  margin-top: 32px;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  font-size: 11px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
}

/* Tablet */
@media (max-width: 960px) {
  h1,
  .hero-title,
  .contact-card h1,
  .contact-card .hero-title {
    font-size: 38px;
  }

  h2,
  .section-title,
  .stack > h2,
  .contact-card h2,
  .contact-card .section-title {
    font-size: 24px;
  }

  h3,
  .stack > h3,
  .service-card h3,
  .blog-item h3,
  .hero-card h3 {
    font-size: 20px;
  }

  .hero-grid,
  .split,
  .contact-layout,
  .featured {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
    margin-bottom: 10px;
  }

  .service-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand img {
    height: 52px;
  }

  .brand-copy {
    max-width: 170px;
  }

  .brand-name {
    font-size: 12px;
    line-height: 1.1;
    letter-spacing: 0.1em;
  }

  .brand-tagline {
    font-size: 11px;
    line-height: 1.2;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-mobile {
    margin-top: 0;
    padding: 10px 0 16px;
    background: rgba(8, 11, 16, 0.96);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  }

  .hero {
    padding: 24px 0 20px;
  }

  .hero-grid,
  .service-grid,
  .reviews-grid,
  .split,
  .contact-layout,
  .featured,
  .blog-list,
  .city-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  h1,
  .hero-title,
  .contact-card h1,
  .contact-card .hero-title {
    font-size: 32px;
    line-height: 1.12;
  }

  h2,
  .section-title,
  .stack > h2,
  .contact-card h2,
  .contact-card .section-title {
    font-size: 24px;
    line-height: 1.18;
  }

  h3,
  .stack > h3,
  .service-card h3,
  .blog-item h3,
  .hero-card h3,
  .accordion-header {
    font-size: 18px;
    line-height: 1.25;
  }

  p,
  li,
  .hero-sub,
  .section-sub,
  .stack > p,
  .stack > ul,
  .stack > ol,
  .contact-card p,
  .contact-card li,
  .contact-card .contact-item,
  .contact-card .contact-tag {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions,
  .form-row,
  .form-foot {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost,
  .btn-small,
  button {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

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

  .service-card,
  .review-card,
  .contact-card,
  .blog-item {
    padding: 16px;
    border-radius: 16px;
  }

  .site-footer {
    font-size: 13.5px;
    padding: 20px 0 24px;
  }

  .footer-links {
    gap: 12px;
    font-size: 13.5px;
  }
}

@media (max-width: 700px) {
  .city-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== PREMIUM POLISH LAYER ===== */

/* Hero rhythm */
.hero-title {
  margin-bottom: 18px;
}

.hero-sub {
  margin-bottom: 22px;
}

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

.btn-primary,
.btn-ghost {
  min-height: 50px;
}

.btn-primary {
  padding-left: 24px;
  padding-right: 24px;
}

/* Section spacing */
.stack > h2 {
  position: relative;
  padding-bottom: 8px;
  margin-top: 32px;
  margin-bottom: 14px;
}

.stack > h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.stack > h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

/* Cards feel more premium */
.service-card,
.review-card,
.blog-item,
.contact-card,
.hero-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .review-card:hover,
  .blog-item:hover,
  .contact-card:hover,
  .hero-card:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 255, 66, 0.28);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
  }
}

/* Better paragraph rhythm on content pages */
.stack > p + h2,
.stack > ul + h2,
.stack > ol + h2 {
  margin-top: 36px;
}

/* Buttons feel cleaner */
.btn-primary,
.btn-ghost,
.btn-small {
  letter-spacing: 0.12em;
}

.btn-primary {
  box-shadow: 0 14px 38px rgba(34, 197, 94, 0.32);
}

/* Contact form polish */
.field-input,
input,
textarea,
select {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.form-row {
  gap: 12px;
}

.contact-card .btn-primary {
  margin-top: 6px;
}

/* Mobile polish */
@media (max-width: 768px) {
  .hero-title {
    margin-bottom: 14px;
  }

  .hero-sub {
    margin-bottom: 18px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 18px;
  }

  .btn-primary,
  .btn-ghost,
  .btn-small,
  button {
    min-height: 48px;
  }

  .stack > h2 {
    margin-top: 28px;
    margin-bottom: 12px;
    padding-bottom: 6px;
  }

  .stack > h2::after {
    width: 42px;
    margin-top: 8px;
  }
}
.hero-title {
  max-width: 640px;
}
.btn-primary {
  transform: translateY(0);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-ghost {
  opacity: 0.85;
}
.hero::before {
  content: "";
  position: absolute;
  left: -200px;
  top: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,255,66,0.06), transparent 70%);
  z-index: 0;
}

.hero {
  position: relative;
}
.hero-badges {
  margin-bottom: 22px;
}
.hero-card {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(124,255,66,0.15);
}

.hero-card:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.65),
              0 0 25px rgba(124,255,66,0.08);
}
.hero-sub {
  opacity: 0.9;
}

.nav a {
  opacity: 0.9;
}

.nav a:hover {
  opacity: 1;
}
.service-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-icon {
  font-size: 18px;
}
.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0b0f16; /* match your theme */
  border: 1px solid #141b29;
  border-radius: 12px;
  padding: 10px 0;
  display: none;
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #f9fafb;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background: rgba(124, 255, 66, 0.1);
  color: #7cff42;
}

.nav-item:hover .dropdown-menu {
  display: block;
}
.nav-item {
  position: relative;
}
/* MOBILE ONLY */
@media (max-width: 768px) {

  .mobile-submenu {
    display: block; /* 👈 always visible when menu is open */
    padding-left: 16px;
    margin-top: 4px;
    margin-bottom: 10px;
  }

  .mobile-submenu a {
    display: block;
    font-size: 14px;
    opacity: 0.85;
    padding: 6px 0;
  }

}
.mobile-submenu {
  display: none;
  padding-left: 36px;
  margin: 8px 0 20px;
}

.mobile-submenu.is-open {
  display: block;
}

.mobile-submenu a {
  display: block;
  font-size: 16px;
  padding: 8px 0;
  opacity: 0.85;
}

.mobile-services-toggle {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
a.btn-primary,
button.btn-primary,
.btn-primary {
  background: #93ED0B !important;
  color: #05070a !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 14px 26px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

a.btn-primary:hover,
button.btn-primary:hover,
.btn-primary:hover {
  background: #b9ff8f !important;
  color: #05070a !important;
}

a.btn-ghost,
button.btn-ghost,
.btn-ghost {
  background: transparent !important;
  color: #f9fafb !important;
  border: 1px solid #334155 !important;
  border-radius: 999px !important;
  padding: 14px 26px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  cursor: pointer !important;
}
.nav a {
  display: flex;
  align-items: center;
}

.nav > a,
.nav > .dropdown {
  height: 100%;
  display: flex;
  align-items: center;
}