:root {
  --accent:        #4FC3F7;
  --accent-bright: #82d8ff;
  --accent-dim:    #1e6fa8;
  --bg:            #080c14;
  --bg-card:       #0d1321;
  --bg-card2:      #111927;
  --text:          #e8edf5;
  --text-muted:    #7a8fa8;
  --text-faint:    #374357;
  --border:        rgba(79, 195, 247, 0.15);
  --border-strong: rgba(79, 195, 247, 0.3);
  --radius:        8px;
  --font-display:  'Cormorant Garamond', serif;
  --font-body:     'Montserrat', sans-serif;
  --nav-h:         76px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #080c14; }
body {
  background: #080c14;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }

/* SECTION TITLES */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 60px;
  color: var(--text);
}
.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 2px;
  background: var(--accent);
  margin-top: 14px;
  border-radius: 2px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #080c14; }
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(79, 195, 247, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 11px 24px;
  font-size: 0.7rem;
  width: 100%;
}
.btn-outline:hover { background: var(--accent); color: #080c14; }
.btn-large { padding: 18px 52px; font-size: 0.82rem; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 44px;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(8, 12, 20, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img {
  height: 44px; width: 44px;
  border-radius: 50%; object-fit: cover;
  border: 1px solid var(--border-strong);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  letter-spacing: 0.08em; color: var(--text);
}
.dot { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent) !important;
  color: #080c14 !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.7rem !important;
}
.nav-cta:hover { background: var(--accent-bright) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  justify-content: center; text-align: center;
  overflow: hidden; background: #080c14;
}
.hero-bg { position: absolute; inset: 0; background: #080c14; }
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, #060a12 0%, #080c14 100%);
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 55%,
    rgba(79, 195, 247, 0.1) 0%, transparent 70%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px; opacity: 0.5; pointer-events: none;
}
.hero-gradient {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 220px; background: linear-gradient(transparent, #080c14);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 800px; padding: 0 24px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-logo-wrap { margin-bottom: 32px; display: flex; justify-content: center; }
.hero-logo {
  width: 140px; height: 140px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border-strong);
  box-shadow: 0 0 60px rgba(79, 195, 247, 0.25),
              0 0 120px rgba(79, 195, 247, 0.1);
}
.hero-eyebrow {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: 0.03em; margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  font-family: var(--font-display); font-style: italic;
  color: var(--text-muted); margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: var(--text-faint); font-size: 1.3rem;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* SERVICES */
.services { background: #080c14; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 48px;
}
.service-card {
  background: #0d1321;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.service-card-header { display: flex; align-items: center; gap: 14px; }
.service-icon { font-size: 1.6rem; line-height: 1; }
.service-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400;
  color: var(--text); line-height: 1.2;
}
.price-table { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.price-table-head {
  display: flex; justify-content: space-between;
  padding: 8px 14px;
  background: rgba(79, 195, 247, 0.08);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: #0d1321;
}
.price-vehicle { font-size: 0.75rem; color: var(--text-muted); }
.price-amount {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--accent);
}
.service-includes { flex: 1; }
.includes-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 10px;
}
.service-list li {
  font-size: 0.76rem; color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex; gap: 8px; align-items: baseline;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '✦'; color: var(--accent-dim); font-size: 0.5rem; flex-shrink: 0; }

/* ADD-ONS */
.addons-section {
  background: #111927;
  border: 1px solid var(--border); border-radius: var(--radius); padding: 44px;
}
.addons-header { margin-bottom: 28px; }
.addons-title { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--text); margin-bottom: 6px; }
.addons-sub { font-size: 0.78rem; color: var(--text-muted); }
.addons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 14px; }
.addon-card {
  background: rgba(79, 195, 247, 0.04);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 16px 20px; display: flex; flex-direction: column; gap: 6px;
  transition: border-color var(--transition), background var(--transition);
}
.addon-card:hover { border-color: var(--border-strong); background: rgba(79, 195, 247, 0.08); }
.addon-name { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.addon-price { font-size: 0.73rem; color: var(--accent); line-height: 1.5; }

/* SERVICE AREA */
.service-area { background: #0d1321; }
.area-map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); margin-bottom: 24px;
}
.area-map img {
  width: 100%; height: auto; display: block;
}
.area-contact { border-top: 1px solid var(--border); padding-top: 36px; }
.area-question { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 28px; line-height: 1.8; }
.area-phones { display: flex; gap: 48px; flex-wrap: wrap; }
.phone-block { display: flex; flex-direction: column; gap: 5px; }
.phone-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }
.phone-number { font-family: var(--font-display); font-size: 1.5rem; color: var(--accent); transition: color var(--transition); }
.phone-number:hover { color: var(--accent-bright); }

/* MAP LEGEND */
.map-legend {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-bottom: 24px; padding: 20px 24px;
  background: rgba(79, 195, 247, 0.04);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.legend-item { display: flex; align-items: center; gap: 10px; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.legend-dot.free  { background: #48C78E; box-shadow: 0 0 8px rgba(72,199,142,0.5); }
.legend-dot.paid  { background: #4FC3F7; box-shadow: 0 0 8px rgba(79,195,247,0.5); }
.legend-dot.call  { background: rgba(255,100,50,0.9); box-shadow: 0 0 8px rgba(255,100,50,0.4); }
.legend-label { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* BEFORE & AFTER */
.before-after { background: #080c14; }
.ba-wrapper { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.ba-slider-container {
  position: relative; width: 100%; max-width: 720px;
  aspect-ratio: 5/3; border-radius: var(--radius);
  overflow: hidden; cursor: ew-resize; user-select: none;
  border: 1px solid var(--border); background: #0d1321;
}
.ba-image { position: absolute; inset: 0; }
.ba-image.ba-before { clip-path: inset(0 50% 0 0); }
.ba-image svg { width: 100%; height: 100%; display: block; }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 2px; background: var(--accent);
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px; background: var(--accent);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(79, 195, 247, 0.5);
}
.ba-labels {
  position: absolute; bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: space-between;
  padding: 0 20px; pointer-events: none;
}
.ba-label {
  background: rgba(0,0,0,0.65); color: var(--text-muted);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 3px;
}
.ba-hint { font-size: 0.7rem; color: var(--text-faint); letter-spacing: 0.08em; }

/* TESTIMONIALS */
.testimonials { background: #0d1321; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.testimonial-card {
  background: #080c14;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 16px;
  transition: border-color var(--transition), transform var(--transition);
}
.testimonial-card:hover { border-color: var(--accent-dim); transform: translateY(-3px); }
.stars { color: var(--accent); font-size: 0.88rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.81rem; color: var(--text-muted); line-height: 1.85; flex: 1; font-style: italic; }
.testimonial-author { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }

/* CTA */
.cta { background: #080c14; }
.cta-card {
  background: linear-gradient(135deg, rgba(79,195,247,0.08) 0%, rgba(79,195,247,0.02) 100%);
  border: 1px solid rgba(79,195,247,0.22);
  border-radius: var(--radius); padding: 80px 52px; text-align: center;
}
.cta-title { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 300; margin-bottom: 28px; }
.cta-promises { display: flex; flex-wrap: wrap; gap: 12px 36px; justify-content: center; margin-bottom: 44px; }
.cta-promises span { font-size: 0.74rem; color: var(--text-muted); letter-spacing: 0.06em; }

/* FOOTER */
.footer { background: #040810; border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 56px; }
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.footer-logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.footer-logo-text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.06em; }
.footer-tagline { font-size: 0.76rem; color: var(--text-faint); font-style: italic; }
.footer-col h4 { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.footer-col p, .footer-col a { font-size: 0.8rem; color: var(--text-muted); line-height: 2; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-col ul li { margin-bottom: 4px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; text-align: center; }
.footer-bottom p { font-size: 0.66rem; color: var(--text-faint); letter-spacing: 0.08em; }

/* SOCIAL ICONS */
.social-icons { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--text-muted);
  transition: var(--transition);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(79, 195, 247, 0.08); transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1000px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .navbar { padding: 0 20px; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(8,12,20,0.98);
    flex-direction: column; align-items: center;
    justify-content: center; gap: 32px; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1001; }
  .section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-card { padding: 48px 20px; }
  .addons-section { padding: 28px 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .addons-grid { grid-template-columns: 1fr; }
  .area-phones { flex-direction: column; gap: 24px; }
  .btn-large { padding: 16px 24px; font-size: 0.75rem; width: 100%; }
  .map-legend { flex-direction: column; gap: 14px; }
}