/* ==========================================================================
   Chrome Car Detailing — Central Coast NSW
   Mobile-first, dark theme, baby blue / silver accents
   ========================================================================== */

:root {
  --black: #0a0c10;
  --black-soft: #12151c;
  --panel: #171b24;
  --panel-2: #1e232e;
  --border: #2a303c;
  --text: #eef2f7;
  --text-muted: #9aa4b2;
  --baby-blue: #8fd3ff;
  --baby-blue-strong: #4fb8f5;
  --silver: #d7dde5;
  --chrome: linear-gradient(135deg, #eef4fa 0%, #b9c4d0 40%, #eef4fa 60%, #9aa6b3 100%);
  --accent-glow: rgba(143, 211, 255, 0.35);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --font: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

section {
  padding: 64px 0;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
}

.section-head p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--baby-blue);
  font-weight: 600;
  margin-bottom: 14px;
}

.chrome-text {
  background: var(--chrome);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--baby-blue) 0%, var(--baby-blue-strong) 100%);
  color: #062033;
  box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--baby-blue);
  color: var(--baby-blue);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 12, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand .logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--chrome);
  display: grid;
  place-items: center;
  color: #0a0c10;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(143, 211, 255, 0.35);
}

/* Logo image (black-background logo blended into dark UI) */
.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: 100%;
  max-width: 340px;
  height: auto;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 20px 40px rgba(79, 184, 245, 0.22));
}

.footer-logo {
  width: 190px;
  max-width: 100%;
  height: auto;
  mix-blend-mode: lighten;
  margin-bottom: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--panel);
}

/* ---------- Nav dropdown ---------- */
.has-dropdown {
  position: relative;
}
.has-dropdown > a::after {
  content: "▾";
  font-size: 0.7rem;
  margin-left: 5px;
  opacity: 0.7;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  list-style: none;
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li {
  list-style: none;
}
.dropdown a {
  display: block;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.dropdown a:hover,
.dropdown a.active {
  background: var(--panel);
  color: var(--baby-blue);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--baby-blue);
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.25s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(1000px 500px at 75% -10%, rgba(79, 184, 245, 0.18), transparent 60%),
    radial-gradient(700px 400px at 10% 20%, rgba(143, 211, 255, 0.08), transparent 55%),
    var(--black);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(143, 211, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 211, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(700px 500px at 70% 0%, #000, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero .rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--silver);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.3rem, 8vw, 4.1rem);
  line-height: 1.05;
}

.hero p.lead {
  color: var(--text-muted);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  margin: 20px 0 32px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #ffcf5c;
  letter-spacing: 2px;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  background: linear-gradient(160deg, var(--panel), var(--black-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 211, 255, 0.5);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(143, 211, 255, 0.12);
  border: 1px solid rgba(143, 211, 255, 0.28);
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.service-card .price-tag {
  margin-top: 16px;
  font-weight: 700;
  color: var(--baby-blue);
}

/* ---------- Before / After ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  user-select: none;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.ba-slider .ba-layer {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  background-size: cover;
  background-position: center;
}

.ba-before {
  background:
    linear-gradient(135deg, #2a2f38, #14171d);
  color: #6b7686;
}

.ba-after {
  background:
    radial-gradient(600px 300px at 50% 20%, rgba(79, 184, 245, 0.3), transparent 60%),
    linear-gradient(135deg, #1a2733, #0c1219);
  color: var(--baby-blue);
  clip-path: inset(0 0 0 var(--split, 50%));
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split, 50%);
  width: 3px;
  background: var(--baby-blue);
  transform: translateX(-50%);
  box-shadow: 0 0 16px var(--accent-glow);
}

.ba-handle::after {
  content: "⟷";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--baby-blue);
  color: #062033;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 900;
}

.ba-tag {
  position: absolute;
  bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(10, 12, 16, 0.7);
  border: 1px solid var(--border);
  z-index: 2;
}
.ba-tag.left { left: 12px; }
.ba-tag.right { right: 12px; color: var(--baby-blue); }

.ba-copy h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.ba-copy p {
  color: var(--text-muted);
  margin-bottom: 14px;
}
.ba-copy ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.ba-copy li {
  display: flex;
  gap: 10px;
  color: var(--silver);
}
.ba-copy li::before {
  content: "✦";
  color: var(--baby-blue);
}

.ba-showcase {
  margin-top: 34px;
  text-align: center;
}
.ba-showcase img {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.ba-showcase figcaption {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 14px;
}

/* ---------- About ---------- */
.about-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.about-copy p:last-child {
  margin-bottom: 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2px 20px;
}
.faq-item summary {
  cursor: pointer;
  padding: 17px 0;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  color: var(--baby-blue);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "\2013";
}
.faq-item p {
  color: var(--text-muted);
  padding: 0 0 18px;
  font-size: 0.97rem;
}

/* ---------- Gallery carousel ---------- */
.carousel {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.carousel-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(10, 12, 16, 0.65);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  z-index: 2;
}
.carousel-btn:hover {
  border-color: var(--baby-blue);
  color: var(--baby-blue);
  background: rgba(10, 12, 16, 0.85);
}
.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }
.carousel-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}
.carousel-dots button.active {
  background: var(--baby-blue);
  width: 22px;
  border-radius: 5px;
}

/* ---------- Reviews ---------- */
.reviews {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(79, 184, 245, 0.08), transparent 60%),
    var(--black-soft);
}

.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
}

.reviews-summary .big-score {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.review-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.review-card .stars {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.review-card p {
  color: var(--silver);
  font-size: 0.96rem;
  margin-bottom: 14px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.review-author .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--chrome);
  color: #0a0c10;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.review-author small {
  color: var(--text-muted);
  display: block;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 50% 120%, rgba(79, 184, 245, 0.25), transparent 60%),
    linear-gradient(135deg, #10161f, #0a0c10);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- Pricing (services page) ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.price-card {
  background: linear-gradient(160deg, var(--panel), var(--black-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(143, 211, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(143, 211, 255, 0.25), var(--shadow);
}

.price-card .badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--baby-blue);
  color: #062033;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.price-card h3 {
  font-size: 1.35rem;
}

.price-card .price {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 12px 0 4px;
}
.price-card .price small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-card .from-note {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: 18px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 24px;
  flex: 1;
}

.price-card li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--silver);
}

.price-card li::before {
  content: "✓";
  color: var(--baby-blue);
  font-weight: 800;
}

.price-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 30px;
}

/* ---------- Service detail pages ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}
.detail-card {
  background: linear-gradient(160deg, var(--panel), var(--black-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.detail-card h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.detail-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.detail-card li {
  display: flex;
  gap: 11px;
  font-size: 0.96rem;
  color: var(--silver);
  line-height: 1.5;
}
.detail-card li::before {
  content: "✓";
  color: var(--baby-blue);
  font-weight: 800;
  flex-shrink: 0;
}
.detail-copy h3 {
  font-size: 1.4rem;
  margin: 4px 0 12px;
}
.detail-copy p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.detail-copy .price-line {
  font-weight: 700;
  color: var(--baby-blue);
  font-size: 1.05rem;
}

.freq-list {
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
}
.freq-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
}
.freq-list li b {
  color: var(--baby-blue);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .detail-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Service areas ---------- */
.areas-hero {
  background:
    radial-gradient(800px 400px at 80% -10%, rgba(79, 184, 245, 0.16), transparent 60%),
    var(--black);
  padding: 72px 0 40px;
}

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

.area-chip {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.18s, transform 0.18s;
}

.area-chip:hover {
  border-color: var(--baby-blue);
  transform: translateY(-2px);
}

.area-chip .pin {
  color: var(--baby-blue);
}

.area-chip strong {
  font-weight: 600;
  font-size: 0.98rem;
}

.areas-note {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 34px;
  text-align: center;
}
.areas-note p { color: var(--text-muted); }

/* ---------- Contact / Form ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.contact-info .info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info .info-item .ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(143, 211, 255, 0.12);
  border: 1px solid rgba(143, 211, 255, 0.28);
  flex-shrink: 0;
}

.contact-info .info-item small {
  color: var(--text-muted);
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info .info-item a,
.contact-info .info-item span {
  font-size: 1.02rem;
  font-weight: 600;
}

.quote-form {
  background: linear-gradient(160deg, var(--panel), var(--black-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}

.quote-form h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.quote-form .form-sub {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--silver);
}

.field label .req {
  color: var(--baby-blue);
}

.field input,
.field select,
.field textarea {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--baby-blue);
  box-shadow: 0 0 0 3px rgba(143, 211, 255, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.field .error-msg {
  color: #ff8a8a;
  font-size: 0.8rem;
  display: none;
}
.field.invalid input,
.field.invalid select {
  border-color: #ff8a8a;
}
.field.invalid .error-msg {
  display: block;
}

.form-success {
  display: none;
  background: rgba(79, 184, 245, 0.12);
  border: 1px solid rgba(143, 211, 255, 0.4);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: var(--baby-blue);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding: 54px 0 26px;
}

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

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--baby-blue);
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 9px;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-brand p {
  margin-top: 12px;
  max-width: 280px;
}

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-areas span {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--silver);
}

.footer-google {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 10px 15px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 6px;
}
.footer-google:hover {
  border-color: var(--baby-blue);
}
.footer-google .stars { font-size: 0.85rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------- Floating call button (mobile) ---------- */
.fab-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--baby-blue), var(--baby-blue-strong));
  color: #062033;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 26px var(--accent-glow);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  70% { box-shadow: 0 0 0 16px rgba(143, 211, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(143, 211, 255, 0); }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 66px 0 30px;
  background:
    radial-gradient(700px 350px at 75% -10%, rgba(79, 184, 245, 0.15), transparent 60%),
    var(--black);
}
.page-hero h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
}
.page-hero p {
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 560px;
  font-size: 1.05rem;
}

/* ==========================================================================
   Responsive — tablet & desktop
   ========================================================================== */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  section { padding: 84px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .ba-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .contact-wrap { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .fab-call { display: none; }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile nav */
@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .nav-links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--black-soft);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px 22px;
    transform: translateY(-140%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 14px; font-size: 1.02rem; }
  .nav-links .btn { margin-top: 8px; }

  /* Dropdown expands inline within the mobile menu */
  .has-dropdown > a::after { display: none; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 6px 12px;
    min-width: 0;
  }
  .dropdown a {
    padding: 11px 14px;
    font-size: 0.96rem;
    border-left: 2px solid var(--border);
  }
  .dropdown a.active { border-left-color: var(--baby-blue); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
