/* ═══════════════════════════════════════════════════════════════
   VAG ANGAR — Premium Auto Service Website
   Design: Dark Luxury Automotive
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg:       #080c10;
  --clr-bg2:      #0d1117;
  --clr-bg3:      #111820;
  --clr-surface:  #151d27;
  --clr-surface2: #1a2535;
  --clr-border:   rgba(255,255,255,.07);
  --clr-red:      #e63946;
  --clr-red-glow: rgba(230,57,70,.35);
  --clr-red-dim:  rgba(230,57,70,.15);
  --clr-gold:     #f4a261;
  --clr-white:    #f0f4f8;
  --clr-gray:     #8899a6;
  --clr-gray2:    #4d6070;
  --ff-head:      'Montserrat', sans-serif;
  --ff-body:      'Inter', sans-serif;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 8px 32px rgba(0,0,0,.5);
  --shadow-red:   0 8px 40px var(--clr-red-glow);
  --transition:   .35s cubic-bezier(.4,0,.2,1);
}

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

body {
  background: var(--clr-bg);
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-red); border-radius: 3px; }

/* ── UTILITIES ────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-red);
  color: #fff;
  box-shadow: 0 4px 20px var(--clr-red-glow);
}
.btn-primary:hover {
  background: #ff4757;
  box-shadow: 0 6px 30px rgba(230,57,70,.6);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-ghost:hover {
  border-color: var(--clr-red);
  color: var(--clr-red);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ── SECTION HEADER ───────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-red);
  background: var(--clr-red-dim);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--clr-gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── REVEAL ANIMATION ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto; /* release hint after animation */
}

/* ════════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 16px 0;
  transition: var(--transition);
}

.nav-header.scrolled {
  background: rgba(8, 12, 16, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo {
  background: rgba(255,255,255,.93);
  border-radius: 10px;
  padding: 5px 10px;
  transition: var(--transition);
}
.nav-logo:hover { background: #fff; }
.logo-img { height: 38px; width: auto; display: block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: .05em;
  color: rgba(240,244,248,.8);
  transition: var(--transition);
}
.nav-link:hover { color: var(--clr-red); background: var(--clr-red-dim); }

.nav-cta {
  padding: 10px 22px;
  background: var(--clr-red);
  color: #fff !important;
  border-radius: 8px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .05em;
  margin-left: 8px;
  transition: var(--transition);
  box-shadow: 0 3px 15px var(--clr-red-glow);
}
.nav-cta:hover { background: #ff4757; transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg picture {
  display: block;
  width: 100%; height: 100%;
}

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08) translate3d(0,0,0);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,12,16,.95) 0%,
    rgba(8,12,16,.8) 50%,
    rgba(8,12,16,.6) 100%
  );
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: rgba(244,162,97,.12);
  border: 1px solid rgba(244,162,97,.25);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeDown .8s ease .2s both;
}

.hero-title {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 1.0;
  color: var(--clr-white);
  margin-bottom: 24px;
  animation: fadeDown .8s ease .3s both;
}

.hero-accent {
  color: var(--clr-red);
  display: block;
  /* base glow removed — handled per-letter */
}

/* ── Letter interactive effect ─────────────────────────────── */
.hl {
  display: inline-block;
  cursor: default;
  color: var(--clr-red);
  transition:
    transform   .28s cubic-bezier(.34, 1.56, .64, 1),
    text-shadow .28s ease,
    color       .2s  ease;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}

.hl-sp { pointer-events: none; }

/* Active letter — full glow */
.hl.hl-active {
  transform: scale(1.35) translateY(-10px) translateZ(0);
  color: #ff7070;
  text-shadow:
    0  0 12px #e63946,
    0  0 28px #e63946,
    0  0 55px rgba(230, 57, 70, .85),
    0  0 100px rgba(230, 57, 70, .5),
    0  0 160px rgba(230, 57, 70, .25);
}

/* Nearest neighbour — medium glow */
.hl.hl-near {
  transform: scale(1.14) translateY(-5px) translateZ(0);
  color: #f04050;
  text-shadow:
    0 0 10px rgba(230, 57, 70, .8),
    0 0 28px rgba(230, 57, 70, .5),
    0 0 55px rgba(230, 57, 70, .25);
}

/* Second neighbour — subtle glow */
.hl.hl-far {
  transform: scale(1.05) translateY(-2px) translateZ(0);
  color: #e84050;
  text-shadow:
    0 0 8px rgba(230, 57, 70, .5),
    0 0 20px rgba(230, 57, 70, .2);
}

@media (prefers-reduced-motion: reduce) {
  .hl { transition: none !important; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240,244,248,.7);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 28px;
  animation: fadeDown .8s ease .4s both;
}

.hero-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: center;
  margin-bottom: 40px;
  animation: fadeDown .8s ease .5s both;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-gray);
}
.hero-brands .sep { color: var(--clr-red); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeDown .8s ease .6s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-family: var(--ff-head);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-gray2);
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--clr-gray2), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(.7); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 48px 0;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 24px;
}

.stat-num {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--clr-red);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-plus {
  font-size: .6em;
  color: var(--clr-gold);
}

.stat-label {
  font-size: .8rem;
  color: var(--clr-gray);
  font-family: var(--ff-head);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--clr-border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════════ */
.services {
  padding: 100px 0;
  background: var(--clr-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Featured wide card (last in row) */
.service-card--wide {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
}
.service-card--wide .service-card-img {
  width: 380px;
  flex-shrink: 0;
  height: auto;
}
.service-card--wide .service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card--wide h3 { font-size: 1.15rem; }
.service-card--wide p  { font-size: .92rem; }

.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230,57,70,.4);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(230,57,70,.15);
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,16,.9) 0%, transparent 60%);
}

.service-card-body {
  padding: 24px;
}

.service-icon {
  width: 44px; height: 44px;
  background: var(--clr-red-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg {
  width: 22px; height: 22px;
  color: var(--clr-red);
}

.service-card h3 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card p {
  font-size: .88rem;
  color: var(--clr-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-price {
  font-family: var(--ff-head);
  font-size: .82rem;
  color: var(--clr-gray);
  padding-top: 14px;
  border-top: 1px solid var(--clr-border);
}
.service-price strong {
  color: var(--clr-gold);
  font-size: 1rem;
}

/* ════════════════════════════════════════════════════════════════
   PRICES
   ════════════════════════════════════════════════════════════════ */
.prices {
  padding: 100px 0;
  background: var(--clr-bg2);
  position: relative;
}

.prices::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-red), transparent);
}

.prices-wrapper {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.prices-table-container { overflow-x: auto; }

.prices-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.prices-table thead th {
  background: var(--clr-surface2);
  padding: 18px 24px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-gray);
  text-align: left;
  border-bottom: 1px solid var(--clr-border);
}

.prices-table tbody tr {
  border-bottom: 1px solid var(--clr-border);
  transition: background .2s;
}
.prices-table tbody tr:last-child { border-bottom: none; }

.prices-table tbody tr:hover { background: rgba(255,255,255,.03); }

.prices-table td {
  padding: 16px 24px;
  color: var(--clr-white);
  vertical-align: middle;
}

.prices-table td:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-dot {
  width: 6px; height: 6px;
  background: var(--clr-red);
  border-radius: 50%;
  flex-shrink: 0;
}

.prices-table td:nth-child(2) { color: var(--clr-gray); font-size: .85rem; }

.price-val {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--clr-gold) !important;
  white-space: nowrap;
  font-size: .9rem !important;
}

.prices-table tr.highlight { background: rgba(230,57,70,.05); }
.prices-table tr.highlight:hover { background: rgba(230,57,70,.08); }

.prices-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: var(--clr-surface2);
  border-top: 1px solid var(--clr-border);
}
.prices-note svg { width: 18px; height: 18px; color: var(--clr-gold); flex-shrink: 0; margin-top: 2px; }
.prices-note p { font-size: .85rem; color: var(--clr-gray); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

.about-bg-line {
  position: absolute;
  right: -200px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--clr-red-glow) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }

.about-img-decor {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--clr-red);
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  z-index: -1;
}

.about-badge-wrap {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}
.yandex-badge { height: 70px; width: auto; border-radius: 8px; }

.about-content .section-tag { display: inline-block; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }

.about-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.about-content > p {
  color: var(--clr-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--clr-white);
}

.feature-icon {
  width: 28px; height: 28px;
  background: var(--clr-red-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 14px; height: 14px; color: var(--clr-red); }

/* ════════════════════════════════════════════════════════════════
   WHY US
   ════════════════════════════════════════════════════════════════ */
.why {
  padding: 100px 0;
  background: var(--clr-bg2);
  position: relative;
}

.why::before, .why::after {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
}
.why::before { top: 0; }
.why::after  { bottom: 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-gold));
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover { transform: translateY(-4px); border-color: rgba(230,57,70,.3); }
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 56px; height: 56px;
  background: var(--clr-red-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 28px; height: 28px; color: var(--clr-red); }

.why-card h3 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--clr-white);
}

.why-card p { font-size: .88rem; color: var(--clr-gray); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact {
  padding: 100px 0;
  background: var(--clr-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.contact-info { display: flex; }
.contact-card { flex: 1; }

.contact-form-wrap { display: flex; }
.contact-form { flex: 1; }

.contact-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--clr-red-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--clr-red); }

.contact-label {
  font-size: .72rem;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-gray2);
  margin-bottom: 4px;
}

.contact-value {
  display: block;
  font-size: .95rem;
  color: var(--clr-white);
  transition: color .2s;
  line-height: 1.5;
}
a.contact-value:hover { color: var(--clr-red); }
.contact-closed { color: var(--clr-gray2) !important; font-size: .85rem !important; }

.social-links {
  display: flex;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid var(--clr-border);
}

.social-btn {
  width: 44px; height: 44px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gray);
  transition: var(--transition);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { background: var(--clr-red); border-color: var(--clr-red); color: #fff; transform: translateY(-2px); }

/* ── CONTACT FORM ───────────────────────────────────────── */
.contact-form-wrap {}

.contact-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-gold));
}

.contact-form h3 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--clr-white);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 16px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--clr-white);
  font-family: var(--ff-body);
  font-size: .92rem;
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238899a6' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}

.form-group select option { background: #111820; color: var(--clr-white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px var(--clr-red-dim);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--clr-gray2); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  margin-top: 14px;
  font-size: .76rem;
  color: var(--clr-gray2);
  text-align: center;
  line-height: 1.5;
}
.form-note a { color: var(--clr-gray); text-decoration: underline; }
.form-note a:hover { color: var(--clr-red); }

/* Form success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success-icon svg { width: 32px; height: 32px; color: #22c55e; }
.form-success h4 { font-family: var(--ff-head); font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { color: var(--clr-gray); }

/* ════════════════════════════════════════════════════════════════
   MAP
   ════════════════════════════════════════════════════════════════ */
.map-section {
  border-top: 1px solid var(--clr-border);
}

.map-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 32px;
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-border);
}

.map-address {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .93rem;
  color: var(--clr-gray);
}
.map-address svg { width: 18px; height: 18px; color: var(--clr-red); flex-shrink: 0; }

.btn-nav-route {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: .82rem;
}
.btn-nav-route svg { width: 16px; height: 16px; }

.map-section iframe {
  display: block;
  filter: grayscale(20%) brightness(.9);
  transition: filter .4s;
}
.map-section:hover iframe { filter: none; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-brand {}

.footer-logo-wrap {
  display: inline-block;
  background: rgba(255,255,255,.93);
  border-radius: 10px;
  padding: 6px 12px;
  margin-bottom: 18px;
}
.footer-logo { height: 42px; width: auto; display: block; }

.footer-brand p {
  font-size: .87rem;
  color: var(--clr-gray);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gray2);
  margin-bottom: 6px;
}

.footer-col a, .footer-col span {
  font-size: .88rem;
  color: var(--clr-gray);
  transition: color .2s;
  line-height: 1.4;
}
.footer-col a:hover { color: var(--clr-red); }
.footer-addr { font-size: .82rem !important; line-height: 1.6 !important; }

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: var(--clr-gray2);
}

/* ════════════════════════════════════════════════════════════════
   FLOATING BUTTONS (WhatsApp + Telegram)
   ════════════════════════════════════════════════════════════════ */
.float-btns {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.float-wa,
.float-tg {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.float-wa {
  background: #25d366;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  animation: waPulse 3s ease-in-out infinite;
  will-change: transform;
}
.float-wa svg { width: 30px; height: 30px; color: #fff; }
.float-wa:hover { transform: scale(1.12) translateZ(0); animation: none; }

.float-tg {
  background: #0088cc;
  box-shadow: 0 4px 24px rgba(0,136,204,.4);
  will-change: transform;
}
.float-tg svg { width: 30px; height: 30px; color: #fff; }
.float-tg:hover { transform: scale(1.12) translateZ(0); }

/* Transform-only pulse — no box-shadow changes (GPU-friendly) */
@keyframes waPulse {
  0%, 100% { transform: scale(1) translateZ(0); }
  50%       { transform: scale(1.07) translateZ(0); }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 540px; margin: 0 auto; }
  .about-content .section-title { text-align: center; }
  .about-content .section-tag { display: block; text-align: center; }
  .about-content { text-align: center; }
  .about-features li { justify-content: center; text-align: left; }
  .about-content .btn { width: 100%; max-width: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: rgba(8,12,16,.97); backdrop-filter: blur(20px); padding: 24px; gap: 8px; border-bottom: 1px solid var(--clr-border); }
  .nav-menu.open { display: flex; }
  .nav-link, .nav-cta { width: 100%; text-align: center; }
  .nav-cta { margin-left: 0; }
  .nav-burger { display: flex; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-actions { flex-direction: column; }
  .stat-divider { display: none; }
  .stats-container { gap: 16px 0; }
  .stat-item { min-width: 140px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { flex-direction: column; }
  .service-card--wide .service-card-img { width: 100%; height: 200px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .float-btns { bottom: 20px; right: 20px; gap: 10px; }
  .float-wa, .float-tg { width: 52px; height: 52px; }
  .float-wa svg, .float-tg svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 100px 20px 60px; }
  .contact-card, .contact-form { padding: 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .prices-table { font-size: .8rem; }
  .prices-table td { padding: 12px 16px; }
}

/* ════════════════════════════════════════════════════════════════
   PERFORMANCE — section containment
   ════════════════════════════════════════════════════════════════ */
.stats-bar, .services, .prices, .about, .why, .contact {
  contain: layout style;
}

/* ════════════════════════════════════════════════════════════════
   ACCESSIBILITY — disable animations for users who prefer it
   ════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-bg-img { animation: none; }
}
