/* ============================================
   АВТОМОЙКА — Clean Professional Light Theme
   ============================================ */

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

:root {
  --bg: #e4e7eb;
  --bg-alt: #d1d6dc;
  --bg-card: #f8f9fa;
  --accent: #2c3e50;
  --accent-light: #4c6278;
  --accent-subtle: #cbd2d9;
  --text: #303841;
  --text-heading: #151a21;
  --text-muted: #5e6b77;
  --border: #b8c2cc;
  --gradient: linear-gradient(135deg, #1f2c38 0%, #44596e 100%);
  --gradient-text: linear-gradient(135deg, #151a21 0%, #4c6278 100%);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1140px;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* --- Typography --- */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: rgba(44, 62, 80, 0.75);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
}
.btn-primary:hover {
  background: rgba(44, 62, 80, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(44, 62, 80, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(21, 26, 33, 0.85);
  backdrop-filter: blur(16px);
}
.site-header.scrolled {
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  height: 72px;
}
.logo {
  justify-self: start;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img { 
  height: 25px; 
  width: auto; 
  transform: scale(5.5); 
  transform-origin: left center; 
}

.nav { 
  justify-self: center;
  display: flex; 
  align-items: center; 
  gap: 8px; 
}
.nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: 100px;
  transition: all 0.3s;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-actions .btn-primary {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: rgba(44, 62, 80, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.header-actions .btn-primary:hover {
  background: rgba(44, 62, 80, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 16px rgba(44, 62, 80, 0.3);
  transform: translateY(-1px);
}

/* Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: #fff; }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: #fff; }

.mobile-only-btn { display: none !important; }

@media (max-width: 900px) {
  .mobile-only-btn { display: inline-flex !important; margin-top: 16px; width: 200px; justify-content: center; }
  .header-inner {
    display: flex;
    justify-content: space-between;
  }
  .header-actions .btn { display: none; }
  .menu-toggle { display: block; position: relative; z-index: 1001; }
  .logo { position: relative; z-index: 1001; }
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(21, 26, 33, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  .nav.open { opacity: 1; visibility: visible; }
  .nav a {
    font-size: 18px;
    font-weight: 600;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    border-radius: 100px !important;
    padding: 14px 32px !important;
    width: 240px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .nav a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
  }
  .mobile-only-btn {
    margin-top: 16px !important;
    font-size: 18px !important;
    padding: 16px 48px !important;
    background: rgba(44, 62, 80, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2) !important;
    color: #fff !important;
    border-radius: 100px !important;
    width: 240px !important;
    justify-content: center;
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #151a21; /* Dark background to prevent bright flash during image transition */
}
.hero-bg {
  position: absolute;
  inset: -8px;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
  filter: blur(2px) brightness(0.65);
  transform: scale(1.02);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(30,30,30,0.5) 0%,
    rgba(10,10,10,0.7) 50%,
    rgba(21,26,33,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero .section-label { color: rgba(255,255,255,0.85); }
.hero-title {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  max-width: 620px;
}
.hero-title span {
  background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: none;
}
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.hero-actions .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ============================================
   ABOUT
   ============================================ */
.about { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text p {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
}
.about-text strong { color: var(--text-heading); }
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 100px 0; background: var(--bg-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
}
.service-card-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.service-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
}
.service-card-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.service-card-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 14px;
}
.service-card.open .service-card-toggle { transform: rotate(180deg); }
.service-card-toggle svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
}
.service-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.service-card-body-inner {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}
.service-card-body-inner ul { padding-top: 16px; }
.service-card-body-inner li {
  padding: 7px 0;
  font-size: 14px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--bg-alt);
}
.service-card-body-inner li:last-child { border-bottom: none; }
.service-card-body-inner li .price {
  color: var(--text-heading);
  font-weight: 500;
  white-space: nowrap;
  margin-left: 12px;
}
.service-card-body-inner .note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages { padding: 100px 0; }
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* Center orphaned cards in advantages */
.advantages .adv-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.advantages .adv-card {
  width: calc(33.333% - 11px);
  flex-grow: 0;
}
.comfort .adv-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}
.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.2s ease;
}
.adv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.adv-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.adv-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; }
.adv-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.adv-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 900px) { 
  .adv-grid { grid-template-columns: repeat(2, 1fr); } 
  .advantages .adv-card { width: calc(50% - 8px); }
}
@media (max-width: 600px) { 
  .adv-grid { grid-template-columns: 1fr; } 
  .comfort .adv-grid { grid-template-columns: 1fr; }
  .advantages .adv-card { width: 100%; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery { padding: 100px 0; background: var(--bg-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   REVIEWS
   ============================================ */
.reviews { padding: 100px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s ease;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
}
.review-stars { color: #f59e0b; font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.review-name { font-weight: 600; color: var(--text-heading); font-size: 14px; }
.review-car { font-size: 12px; color: var(--text-muted); }

@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 100px 0; background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: #d1d6dc;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 24px;
  border-radius: 16px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; }
.contact-item h4 { font-size: 14px; font-weight: 600; color: var(--text-heading); margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--text-muted); }

.contact-cta {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.contact-cta h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
}
.contact-cta p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact-phone-big {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-phone-big:hover { color: var(--accent); }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 60px 0 40px;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-brand {
  flex: 1 1 300px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 16px;
}
.footer-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-contacts {
  flex: 1 1 200px;
}
.footer-contacts h4 {
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-contacts p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contacts a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}

/* ============================================
   FLOATING PHONE (mobile)
   ============================================ */
.floating-phone { display: none; }
@media (max-width: 900px) {
  .floating-phone {
    display: flex;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: var(--accent);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    align-items: center;
    gap: 8px;
  }
  .floating-phone:hover { color: #fff; }
  .floating-phone svg { width: 16px; height: 16px; }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.scroll-top svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .scroll-top { bottom: 80px; }
}

/* ============================================
   ANIMATIONS (subtle)
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.4s; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: zoom-out;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 10001;
  width: 0%;
  transition: width 0.05s linear;
}

/* ============================================
   MOBILE RESPONSIVE TWEAKS
   ============================================ */
@media (max-width: 768px) {
  /* Reduce global padding */
  .about, .services, .advantages, .gallery, .reviews, .contact, .comfort, .faq {
    padding: 60px 0 !important;
  }
  
  /* Hero adjustments */
  .hero { min-height: auto; }
  .hero-content {
    padding: 120px 0 60px !important;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(22px, 6vw, 28px);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-desc {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    flex-direction: row;
    justify-content: space-around;
    gap: 8px;
    padding: 20px 10px;
    margin-top: 32px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 11px; }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Specific elements */
  .section-title {
    font-size: 26px;
  }
  .contact-cta {
    padding: 24px;
  }
  .adv-card {
    padding: 20px;
  }
  
  /* For dogovor.html */
  .dogovor-hero {
    min-height: auto;
    padding: 120px 0 60px !important;
  }
  .steps { padding: 60px 0 !important; }
  .cta-section { padding: 60px 0 !important; }
  .cta-box { padding: 32px 20px !important; }
  .cta-box h2 { font-size: 22px !important; }
}


/* Phone Modal Animation */
.phone-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  display: flex;
  align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.phone-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.phone-modal-content {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  min-width: 300px;
  transform: scale(0.95) translateY(-20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}
.phone-modal-overlay.active .phone-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}


/* Price Accordion Styles */
li.price-accordion-item {
  display: block !important;
  cursor: pointer;
  padding: 12px 0 !important;
  transition: background 0.3s ease;
}
li.price-accordion-item:hover {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  
}
.price-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.price-accordion-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-main {
  font-weight: 600;
  color: var(--accent);
  font-size: 16px;
  white-space: nowrap;
}
.accordion-chevron {
  transition: transform 0.3s ease;
  color: var(--text-muted);
}
li.price-accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}
.price-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
li.price-accordion-item.open .price-accordion-content {
  max-height: 200px;
  margin-top: 12px;
  opacity: 1;
}
.price-detail {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 12px;
  background: #d1d6dc;
  border-radius: 8px;
  align-items: center;
}
.price-val {
  font-weight: 600;
  color: var(--text-heading, #111827);
  white-space: nowrap;
}
