﻿:root {
  --bg: var(--theme-bg, #f4f7ff);
  --surface: var(--theme-surface, #ffffff);
  --surface-2: var(--theme-surface-2, #eaf0fb);
  --text: var(--theme-text, #0c223e);
  --muted: var(--theme-muted, #4c617d);
  --line: var(--theme-line, #cdd9ea);
  --primary: var(--theme-primary, #0057ff);
  --primary-dark: var(--theme-primary-dark, #0039a9);
  --accent: var(--theme-accent, #ff7a00);
  --radius: 20px;
  --shadow: var(--theme-shadow, 0 20px 60px rgba(7, 31, 67, 0.12));

  --service-card-base: var(--theme-service-card-base, #0b2650);
  --service-overlay-top: var(--theme-service-overlay-top, rgba(6, 35, 74, 0.08));
  --service-overlay-bottom: var(--theme-service-overlay-bottom, rgba(6, 35, 74, 0.9));
  --service-info-top: var(--theme-service-info-top, rgba(9, 38, 84, 0.38));
  --service-info-mid: var(--theme-service-info-mid, rgba(8, 33, 74, 0.96));
  --service-info-bottom: var(--theme-service-info-bottom, rgba(8, 33, 74, 1));
  --service-price-visual-bg: var(--theme-service-price-visual-bg, #082a58);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: Manrope, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  animation: page-enter 0.55s ease both;
}

a {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(#193258 0.4px, transparent 0.4px);
  background-size: 6px 6px;
  z-index: -3;
}

.bg-orb {
  display: none;
}

.orb-a {
  top: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.36), rgba(0, 87, 255, 0));
}

.orb-b {
  top: 22%;
  right: -120px;
  background: radial-gradient(circle, rgba(73, 143, 255, 0.28), rgba(73, 143, 255, 0));
  animation-delay: -5s;
}

.orb-c {
  bottom: -120px;
  left: 34%;
  background: radial-gradient(circle, rgba(56, 146, 255, 0.24), rgba(56, 146, 255, 0));
  animation-delay: -8s;
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -20px, 0) scale(1.08);
  }
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 3rem);
  backdrop-filter: blur(10px);
  background: rgba(244, 247, 255, 0.86);
  border-bottom: 1px solid rgba(14, 35, 63, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.brand > div {
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.brand-top {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a:not(.btn) {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  transition: color 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

.main-nav a:not(.btn):hover,
.main-nav a:not(.btn):focus-visible {
  color: var(--primary-dark);
  transform: translateY(-1px) scale(1.01);
  background-color: rgba(255, 255, 255, 0.72);
}

.main-nav a.active:not(.btn) {
  color: var(--primary-dark);
  background: rgba(222, 236, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(0, 87, 255, 0.18);
}

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

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.call-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 32;
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 54px;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0e233f, #0b53d5);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 18px 40px rgba(7, 31, 69, 0.26);
}

.call-fab:hover,
.call-fab:focus-visible {
  color: #fff;
}

main {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.page-hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1.4rem, 3vw, 2rem);
}

.hero {
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem) 0;
}

.hero-content {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(234, 242, 255, 0.82));
  border: 1px solid #cfe0fb;
  border-radius: 24px;
  padding: clamp(1.8rem, 3.6vw, 2.9rem);
  box-shadow: 0 16px 32px rgba(10, 48, 110, 0.1);
}

.hero-content h1 {
  font-size: clamp(3.2rem, 6.4vw, 6.1rem);
  line-height: 0.98;
  margin-bottom: 0.8rem;
  text-wrap: balance;
}

.hero-lead {
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  color: #173c70;
  margin-top: 0.2rem;
}

.home-logos {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.home-logos img {
  max-height: 58px;
  width: auto;
  border-radius: 0;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.75rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", sans-serif;
  margin: 0 0 0.6rem;
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.7rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: 1.6rem;
}

p {
  margin: 0 0 1rem;
}

.btn {
  border: 0;
  background: linear-gradient(90deg, var(--primary), #1d73ff);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 10px 20px rgba(0, 87, 255, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
}

.hero-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.22s ease;
  transform-style: preserve-3d;
}

.hero-visual img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  max-height: 540px;
  object-fit: cover;
  object-position: center 34%;
  box-shadow: var(--shadow);
  border-radius: 24px;
}

.hero-card {
  position: static;
  max-width: 100%;
  background: #071f43;
  color: #fff;
  padding: 1.05rem 1.1rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: block;
  font-size: 1.3rem;
  font-family: "Barlow Condensed", sans-serif;
}

.hero-cta {
  margin-top: 0.35rem;
}

.float {
  animation: float 3.5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.section {
  padding: clamp(2.2rem, 6vw, 4.5rem) 0;
}


.section-head {
  margin-bottom: 1.4rem;
}

.section-link {
  margin-top: 1rem;
  font-weight: 700;
}

.funding-strip {
  padding-top: 0.2rem;
}

.funding-strip p {
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-style: italic;
}

.funding-row {
  display: grid;
  gap: 1rem;
}

.funding-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.funding-item p {
  margin-bottom: 0.8rem;
}

.funding-item img {
  max-height: 56px;
  width: auto;
  margin-inline: auto;
  border-radius: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin: 0.5rem 0 1rem;
}

.stats article {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}

.stats h2 {
  margin: 0;
  color: var(--primary);
}

.stats p {
  margin: 0;
  color: var(--muted);
}

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

.card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.2rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 26px rgba(10, 53, 118, 0.12);
}

.glow-card {
  position: relative;
  overflow: hidden;
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(0, 87, 255, 0), rgba(0, 87, 255, 0.28), rgba(56, 146, 255, 0));
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.glow-card:hover::before {
  transform: translateX(120%);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.gallery img:first-child {
  grid-column: 1 / -1;
}

.service-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  perspective: 900px;
}

.service-showcase {
  align-items: start;
}

.service-copy {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(239, 246, 255, 0.7));
  border: 1px solid #c9dbf8;
  border-radius: 20px;
  padding: clamp(0.95rem, 2vw, 1.35rem);
}

.service-copy h2 {
  margin-bottom: 0.55rem;
}

.service-copy .check-list {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.48rem;
}

.service-copy .check-list li {
  position: relative;
  font-size: 1rem;
  line-height: 1.35;
  padding: 0.56rem 0.75rem 0.56rem 2rem;
  border: 1px solid #c7daf7;
  border-radius: 12px;
  border-bottom: 1px solid #c7daf7;
  background: #f3f8ff;
}

.service-copy .check-list li::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 50%;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 38% 38%, #d7e7ff 12%, #4f86e8 70%);
  box-shadow: 0 0 0 2px rgba(79, 134, 232, 0.2);
}

.service-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.service-pills span {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(120deg, #edf4ff, #dfeeff);
  border: 1px solid #c7daf7;
  color: #17345d;
  border-radius: 999px;
  padding: 0.44rem 0.62rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.service-tile {
  --service-info-space: 86px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  min-height: 260px;
  background: var(--service-card-base);
  box-shadow: 0 18px 34px rgba(8, 34, 79, 0.22);
  isolation: isolate;
  transform: translateY(18px);
  opacity: 0;
  animation: service-tile-in 0.7s cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
}

.service-tile:nth-child(1) {
  animation-delay: 90ms;
}

.service-tile:nth-child(2) {
  animation-delay: 180ms;
}

.service-tile:nth-child(3) {
  animation-delay: 270ms;
}

.service-tile:nth-child(4) {
  animation-delay: 360ms;
}

.service-tile img {
  position: absolute;
  inset: 0 0 var(--service-info-space) 0;
  width: 100%;
  height: calc(100% - var(--service-info-space));
  min-height: 0;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 0;
  z-index: 0;
  transform: scale(1.1);
  transition: transform 0.55s ease;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, var(--service-overlay-top) 28%, var(--service-overlay-bottom) 100%);
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 255, 255, 0.27), rgba(255, 255, 255, 0) 46%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-tile-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  min-height: var(--service-info-space);
  padding: 0.9rem 1rem 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, var(--service-info-top) 0%, var(--service-info-mid) 70%, var(--service-info-bottom) 100%);
  color: #fff;
}

.service-tile-info h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.service-tile-info p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.service-tile:hover {
  transform: translateY(-5px) rotateX(2deg);
  box-shadow: 0 22px 42px rgba(7, 31, 69, 0.3);
}

.service-tile:hover::after {
  opacity: 1;
}

.service-tile:hover img {
  transform: scale(1.16);
}

.service-tile--wifi img {
  object-position: center 10%;
  transform: scale(1.2);
}

.service-tile--wifi:hover img {
  transform: scale(1.26);
}

.service-tile--showers img {
  object-fit: contain;
  object-position: center;
  padding: 0.85rem;
  background: linear-gradient(180deg, #0b4dc5, #164bb2);
  transform: scale(1.02);
}

.service-tile--showers:hover img {
  transform: scale(1.05);
}

.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.service-photo-divider {
  height: 1px;
  margin: 1.8rem 0 1.5rem;
  background: linear-gradient(90deg, rgba(158, 186, 228, 0), rgba(158, 186, 228, 0.95) 18%, rgba(158, 186, 228, 0.95) 82%, rgba(158, 186, 228, 0));
}

.section-head-services {
  margin-bottom: 1rem;
}

.section-head-services h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
}

.service-photo-card {
  margin: 0;
  align-self: start;
  overflow: hidden;
  border-radius: 18px;
  background: var(--surface);
}

.service-photo-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.65s ease, filter 0.45s ease;
}

.service-photo-card figcaption {
  padding: 0.9rem 1rem 1rem;
  font-weight: 700;
  color: var(--text);
}

.service-photo-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.04);
}

.service-photo-card--showers {
  background: var(--surface);
}

.service-photo-card--showers img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 58%;
  padding: 0;
  background: none;
}

.service-photo-card--showers:hover img {
  transform: scale(1.06);
}

@keyframes service-tile-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.check-list,
.contact-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.check-list li,
.contact-list li {
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
}

.contact-form {
  display: grid;
  gap: 0.72rem;
  max-width: 760px;
}

.contact-form label {
  font-weight: 800;
  color: #17345f;
  letter-spacing: 0.2px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.82rem 0.92rem;
  font: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(0, 87, 255, 0.2);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.parking-form {
  position: relative;
  border: 1px solid #b8cff1;
  border-radius: 20px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 255, 0.9)),
    radial-gradient(circle at 14% 8%, rgba(255, 224, 115, 0.2), rgba(255, 224, 115, 0) 32%),
    radial-gradient(circle at 90% 0%, rgba(40, 117, 230, 0.15), rgba(40, 117, 230, 0) 42%);
  box-shadow: 0 16px 36px rgba(8, 41, 95, 0.13);
}

.parking-form::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 9px;
  pointer-events: none;
  border-radius: 20px 20px 0 0;
  background: repeating-linear-gradient(
    45deg,
    #0f3d80 0 16px,
    #0f3d80 16px 24px,
    #f7c948 24px 40px
  );
  transform: none;
  transition: none;
}

.parking-form.glow-card:hover::before {
  transform: none;
}

.parking-form .btn {
  width: 100%;
  margin-top: 0.35rem;
  min-height: 50px;
}

.parking-form textarea {
  min-height: 130px;
  resize: vertical;
}

.field-help {
  margin: -0.1rem 0 0.35rem;
  font-size: 0.86rem;
  color: #3f5f8c;
}

.phone-row {
  display: grid;
  grid-template-columns: minmax(210px, 0.48fr) 1fr;
  gap: 0.55rem;
  align-items: stretch;
}

.phone-row .intl-code-select,
.phone-row .intl-phone-number {
  min-height: 48px;
}

.phone-row .intl-code-select {
  font-weight: 700;
  background: linear-gradient(180deg, #fff, #f5f9ff);
}

.reviews-toolbar {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.google-note {
  background: #f2f7ff;
  border: 1px solid #cfe0ff;
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.review-stars {
  color: #f4b400;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 0.55rem;
  line-height: 1;
}

.review-text {
  margin: 0 0 0.95rem;
}

.review-author-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.55rem;
  border-top: 1px dashed #c8d8f1;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid #c6d8f6;
}

.review-avatar--initials {
  display: grid;
  place-items: center;
  color: #0f3f82;
  font-weight: 800;
  font-size: 0.86rem;
  background: linear-gradient(140deg, #edf4ff, #d9e9ff);
}

.review-author-meta {
  min-width: 0;
}

.review-author-meta strong {
  display: block;
  line-height: 1.15;
}

.review-author-meta small {
  color: var(--muted);
}

.review-empty {
  grid-column: 1 / -1;
}

.review-empty p {
  margin: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.location-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.location-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
}

.location-card h3,
.location-card p {
  padding-inline: 1rem;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.2rem;
}

.price-card-visual {
  position: relative;
  isolation: isolate;
  margin: -1.2rem -1.2rem 0.95rem;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #dbe7ff;
  background: var(--service-price-visual-bg);
}

.price-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(165deg, rgba(10, 47, 104, 0.26), rgba(11, 83, 213, 0.12)),
    radial-gradient(circle at 22% 12%, rgba(143, 194, 255, 0.2), rgba(143, 194, 255, 0) 62%);
  mix-blend-mode: normal;
}

.price-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 40, 90, 0) 0%, rgba(8, 40, 90, 0.14) 100%);
}

.price-card-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 8.8;
  display: block;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.92) contrast(1.03) brightness(0.98);
  transition: transform 0.45s ease;
}

.price-card:hover .price-card-visual img {
  transform: scale(1.07);
}

.price-card-visual--empty::before,
.price-card-visual--empty::after {
  display: none;
}

.vehicle-upload-slot {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  display: grid;
  place-items: center;
  padding: 0.8rem;
  text-align: center;
  color: #d8e9ff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.7px;
  background:
    linear-gradient(160deg, rgba(9, 43, 97, 0.9), rgba(14, 85, 201, 0.78)),
    radial-gradient(circle at 20% 15%, rgba(145, 195, 255, 0.34), rgba(145, 195, 255, 0) 62%);
  border: 2px dashed rgba(154, 197, 255, 0.58);
  border-radius: 0;
}

.vehicle-img-a {
  object-position: 52% 48%;
}

.vehicle-img-b {
  object-position: 50% 53%;
}

.vehicle-img-c {
  object-position: 52% 52%;
}

.price-tag {
  margin-top: 1rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  color: var(--primary-dark);
}

.price-edit {
  font-size: 1.2rem;
  background: #edf4ff;
  border: 1px dashed #8eb7ff;
  border-radius: 8px;
  padding: 0.15rem 0.5rem;
}

.price-calculator {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.9)),
    radial-gradient(circle at 8% 0%, rgba(255, 206, 92, 0.22), rgba(255, 206, 92, 0) 30%),
    radial-gradient(circle at 92% 0%, rgba(0, 87, 255, 0.18), rgba(0, 87, 255, 0) 40%);
  border: 1px solid #bfd4f4;
  border-radius: 20px;
  padding: 1.15rem;
  box-shadow: 0 18px 35px rgba(10, 52, 119, 0.12);
}

.price-calculator.glow-card::before,
.price-calculator.glow-card:hover::before {
  opacity: 0;
  transform: none;
}

.price-calculator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 9px;
  z-index: 2;
  pointer-events: none;
  border-radius: 20px 20px 0 0;
  background: repeating-linear-gradient(
    45deg,
    #0f3d80 0 16px,
    #0f3d80 16px 24px,
    #f7c948 24px 40px
  );
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.calc-grid label {
  font-weight: 800;
  color: #21446f;
  margin: 0;
}

.calc-grid input {
  width: 100%;
  border: 1px solid #bfd3f3;
  border-radius: 10px;
  padding: 0.68rem 0.75rem;
  font: inherit;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.calc-grid input:focus {
  outline: 2px solid #90bbff;
  border-color: #4f86e8;
  box-shadow: 0 0 0 3px rgba(79, 134, 232, 0.16);
}

.calc-results {
  margin-top: 0.95rem;
  padding: 0.88rem 0.95rem;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #eff6ff, #e4f0ff),
    linear-gradient(120deg, rgba(246, 199, 76, 0.08), rgba(246, 199, 76, 0));
  border: 1px solid #c3d8fb;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.calc-results p {
  margin: 0;
  color: #173a6d;
}

.calc-results strong {
  color: #0f4aa2;
  font-size: 1.1rem;
}

#price-calculator .hero-cta {
  margin-top: 1rem;
  justify-content: center;
}

#calc-to-form {
  min-height: 50px;
  line-height: 1.2;
  padding-inline: 1.55rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
}

.price-table caption {
  text-align: left;
  font-weight: 700;
  color: var(--muted);
  padding: 0.9rem;
}

.price-table th,
.price-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem;
  text-align: left;
}

.price-table th {
  background: #edf3ff;
  font-weight: 800;
}

.editable {
  font-weight: 800;
  color: #0f4aa2;
}

.table-note {
  margin-top: 0.8rem;
  color: var(--muted);
}

.legal-content {
  max-width: 900px;
}

.legal-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.4vw, 1.8rem);
}

.legal-box h2 {
  margin-top: 1.3rem;
}

.legal-box h2:first-child {
  margin-top: 0;
}

.legal-box ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.2rem;
}

.legal-note {
  background: #eef6ff;
  border: 1px solid #c8dcff;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: #153a73;
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.cta {
  text-align: center;
  background: linear-gradient(120deg, #0e233f, #0b53d5);
  color: #fff;
  border-radius: 28px;
  padding-inline: 1rem;
}

.cta .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.site-footer {
  width: min(1200px, 92vw);
  margin: 1rem auto 2rem;
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--muted);
  margin-left: 0.9rem;
}

.translate-widget {
  position: fixed;
  right: 1rem;
  top: 7.2rem;
  bottom: auto;
  z-index: 24;
}

.translate-btn {
  border: 0;
  background: linear-gradient(90deg, #0e233f, #1d73ff);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.translate-panel {
  margin-top: 0.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem;
  min-width: 220px;
  box-shadow: var(--shadow);
}

.translate-title {
  margin: 0 0 0.45rem;
  font-weight: 800;
  color: var(--text);
}

.translate-option {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  text-align: left;
  margin-bottom: 0.4rem;
  cursor: pointer;
  font: inherit;
}

.translate-option:last-child {
  margin-bottom: 0;
}

.translate-option:hover,
.translate-option.active {
  border-color: var(--primary);
  background: #eef4ff;
}

#google_translate_element {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

body {
  top: 0 !important;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(24px) scale(0.978);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.65, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible,
.reveal.reveal-pending.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (max-width: 980px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .stats,
  .service-grid,
  .service-photo-grid,
  .reviews-grid,
  .price-grid,
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-results {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-top: 0;
  }

  .hero-visual img {
    aspect-ratio: 16 / 11;
    max-height: none;
    object-position: center 32%;
  }

}

@media (max-width: 740px) {
  body.has-call-fab {
    padding-bottom: 5.8rem;
  }

  .site-header {
    gap: 0.7rem;
    padding: 0.7rem 0.9rem;
  }

  .brand {
    gap: 0.6rem;
    flex: 1 1 auto;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .brand-top {
    font-size: 1.05rem;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-sub {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0.9rem;
    left: 0.9rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0.9rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav a:not(.btn) {
    width: 100%;
    padding: 0.65rem 0.2rem;
  }

  .main-nav .btn {
    width: 100%;
    justify-content: center;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .stats,
  .service-grid,
  .reviews-grid,
  .gallery,
  .service-gallery,
  .service-photo-grid,
  .price-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .service-copy .check-list li {
    font-size: 0.97rem;
    padding: 0.52rem 0.68rem 0.52rem 1.9rem;
  }

  .service-pills {
    grid-template-columns: 1fr;
  }

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

  #calc-to-form {
    width: 100%;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .service-tile {
    --service-info-space: 94px;
    min-height: 246px;
  }

  .service-tile img {
    min-height: 0;
  }

  .hero-content {
    padding: 1rem;
    border-radius: 18px;
  }

  .site-footer a {
    margin-left: 0;
    margin-right: 0.8rem;
  }

  .translate-widget {
    right: 0.8rem;
    top: 7rem;
    bottom: auto;
  }

  .call-fab {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

