/* ==========================================================================
   ARS DETAILING STUDIO - FLAGSHIP LUXURY AUTOMOTIVE DESIGN SYSTEM
   Bishkek, Kyrgyzstan • ул. Курманжан датка, 381
   Desktop (1920px, 1440px) & Mobile (375px, 320px) Pixel-Perfect Specification
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Color Palette
   -------------------------------------------------------------------------- */
:root {
  /* Deep Premium Obsidian & Graphite */
  --ars-obsidian: #0d0e12;
  --ars-dark: #121418;
  --ars-dark-elevated: #161920;
  --ars-card-bg: #1a1d24;
  --ars-card-border: rgba(255, 255, 255, 0.08);
  --ars-card-border-hover: rgba(229, 32, 55, 0.4);

  /* Electric Crimson Accents */
  --ars-primary: #e52037;
  --ars-primary-hover: #ff2a44;
  --ars-primary-glow: rgba(229, 32, 55, 0.35);
  --ars-primary-glow-strong: rgba(229, 32, 55, 0.6);

  /* High-Contrast Luxury Typography */
  --ars-text-primary: #ffffff;
  --ars-text-secondary: #cfd4dc;
  --ars-text-muted: #9fa6b2;

  /* Brand Accents */
  --ars-2gis: #30ad00;
  --ars-2gis-hover: #38c402;
  --ars-wa: #25d366;
  --ars-wa-hover: #22bf5b;
  --ars-gold: #ffc107;

  /* Touch Targets & Radii */
  --ars-touch-target: 44px;
  --ars-radius-sm: 8px;
  --ars-radius-md: 12px;
  --ars-radius-lg: 16px;
  --ars-radius-xl: 24px;
}

/* --------------------------------------------------------------------------
   2. Global Typography, Smooth Scrolling & Reset
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body, .ars-body {
  background-color: var(--ars-obsidian) !important;
  color: var(--ars-text-secondary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

/* Container specification for 1920px, 1440px and mobile */
.container {
  width: 100% !important;
  max-width: 1360px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}
@media (min-width: 1600px) {
  .container {
    max-width: 1480px !important;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1560px !important;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (max-width: 340px) {
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* Zero-Overflow Global Reset */
*, *::before, *::after {
  box-sizing: border-box !important;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hero-slider-section,
.promo-swiper,
.swiper {
  overflow: hidden !important;
  max-width: 100% !important;
}

/* Hero slide must have explicit height for absolute-positioned bg to work */
.promo-swiper .swiper-slide.hero-slide {
  min-height: 75vh;
  display: flex;
  align-items: center;
}


header.header .header__top > .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
::-webkit-scrollbar-track {
  background: var(--ars-obsidian);
}
::-webkit-scrollbar-thumb {
  background: #232731;
  border-radius: 6px;
  border: 2px solid var(--ars-obsidian);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ars-primary);
}

::selection {
  background-color: var(--ars-primary);
  color: #fff;
}

/* Background scroll lock when modals or mobile drawers are open */
body.no-scroll {
  overflow: hidden !important;
  touch-action: none;
}

/* --------------------------------------------------------------------------
   3. Brand Logo Hierarchy
   -------------------------------------------------------------------------- */
.ars-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.ars-logo:hover {
  transform: translateY(-1px);
}
.ars-logo-badge {
  background: linear-gradient(135deg, #e52037 0%, #9e101f 100%);
  color: #fff;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 2px;
  padding: 7px 13px;
  border-radius: var(--ars-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(229, 32, 55, 0.45);
  font-family: 'Comfortaa', 'Inter', sans-serif;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.ars-logo:hover .ars-logo-badge {
  box-shadow: 0 6px 22px rgba(229, 32, 55, 0.7);
  transform: scale(1.03);
}
.ars-logo-text {
  display: flex;
  flex-direction: column;
}
.ars-logo-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  white-space: nowrap;
}
.ars-logo-sub {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ars-primary);
  font-weight: 700;
  margin-top: 2px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   4. Desktop Sticky Header & Blur Darkening
   -------------------------------------------------------------------------- */
header.header {
  min-height: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  z-index: 9990;
  display: block !important;
}
header.header .service-header__bg,
header.header .header__mask {
  display: none !important;
}
header.header .header__content {
  position: relative;
  width: 100%;
  padding-top: 0 !important;
}

/* Sticky glassmorphism header bar */
.blur {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9990 !important;
  background: rgba(13, 14, 18, 0.82) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Darkened luxury obsidian state on scroll */
.blur.blackk {
  background: rgba(9, 10, 13, 0.96) !important;
  backdrop-filter: blur(26px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(26px) saturate(200%) !important;
  border-bottom: 1px solid rgba(229, 32, 55, 0.28) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75) !important;
}

header.header .header__top > .row {
  min-height: 76px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: min-height 0.3s ease !important;
}
.blur.blackk header.header .header__top > .row,
.blur.blackk .header__top > .row {
  min-height: 64px !important;
}

/* 2GIS Rating Widget in Header */
.header-2gis {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 7px 14px;
  border-radius: var(--ars-radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  min-height: var(--ars-touch-target);
  flex-shrink: 0;
}
.header-2gis:hover {
  background: rgba(48, 173, 0, 0.15);
  border-color: rgba(48, 173, 0, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(48, 173, 0, 0.25);
}
.header-2gis__icon {
  width: 30px;
  height: 30px;
  background: var(--ars-2gis);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
  box-shadow: 0 2px 8px rgba(48, 173, 0, 0.4);
  flex-shrink: 0;
}
.header-2gis__info {
  display: flex;
  flex-direction: column;
}
.header-2gis__top {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.header-2gis__star {
  color: var(--ars-gold);
  font-size: 12px;
  letter-spacing: 1px;
}
.header-2gis__bottom {
  font-size: 11px;
  color: #9fa6b2;
  white-space: nowrap;
}

/* Header Contact action buttons */
.header-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--ars-radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
  text-decoration: none;
  min-height: var(--ars-touch-target);
}
.header-contact-btn--phone {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.header-contact-btn--phone:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-1px);
}
.header-contact-btn--wa {
  background: var(--ars-wa);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.header-contact-btn--wa:hover {
  background: var(--ars-wa-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}
.header-contact-btn--inst {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(214, 36, 159, 0.3);
}
.header-contact-btn--inst:hover {
  opacity: 0.92;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 36, 159, 0.45);
}

.header-phone-box a {
  transition: color 0.2s ease;
}
.header-phone-box a:hover {
  color: var(--ars-primary) !important;
}

.callform-btn {
  background: linear-gradient(135deg, #e52037 0%, #b81223 100%) !important;
  color: #fff !important;
  border: none !important;
  padding: 11px 22px !important;
  border-radius: var(--ars-radius-sm) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(229, 32, 55, 0.4) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  min-height: var(--ars-touch-target) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap;
}
.callform-btn:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 24px rgba(229, 32, 55, 0.6) !important;
}

/* --------------------------------------------------------------------------
   5. Desktop Primary Navigation & Mega Dropdown «Услуги детейлинга»
   -------------------------------------------------------------------------- */
.primary-menu {
  background: rgba(16, 18, 23, 0.95) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.header-menu {
  display: flex !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 28px !important;
  align-items: center !important;
}
.header-menu li a {
  color: #cfd4dc !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  text-decoration: none !important;
  padding: 14px 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  position: relative !important;
  transition: color 0.25s ease !important;
}
.header-menu li a:hover {
  color: #fff !important;
}
.header-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ars-primary);
  box-shadow: 0 0 8px var(--ars-primary);
  transition: width 0.25s ease;
}
.header-menu li a:hover::after {
  width: 100%;
}

/* Mega Menu Item */
.header-menu__item {
  position: relative;
}
.header-menu__item .dropdown-chevron {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header-menu__item:hover .dropdown-chevron,
.header-menu__item.active .dropdown-chevron {
  transform: rotate(180deg);
}

/* Mega Menu Dropdown Box */
.header-menu__item .dropdown-menu {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 820px;
  background: #14171e;
  background: rgba(18, 21, 28, 0.98);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ars-radius-md);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.88), 0 0 35px rgba(229, 32, 55, 0.12);
  padding: 32px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s;
  pointer-events: none;
}
.header-menu__item:hover .dropdown-menu,
.header-menu__item.active .dropdown-menu,
.header-menu__item .dropdown-menu.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
.dropdown-menu h4 {
  color: var(--ars-primary) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  margin-bottom: 14px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.dropdown-menu ul {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.dropdown-menu ul li a {
  color: #a2aab8 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  padding: 4px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.2s ease !important;
}
.dropdown-menu ul li a::before {
  content: '›';
  color: var(--ars-primary);
  font-size: 16px;
  font-weight: 900;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}
.dropdown-menu ul li a:hover {
  color: #fff !important;
  transform: translateX(4px) !important;
}
.dropdown-menu ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.dropdown-menu ul li a::after {
  display: none !important;
}

/* --------------------------------------------------------------------------
   6. Mobile Header, Touch Targets & Burger Menu
   -------------------------------------------------------------------------- */
.mobile-quick-call {
  display: none;
  width: 44px;
  height: 44px;
  min-width: var(--ars-touch-target);
  min-height: var(--ars-touch-target);
  border-radius: var(--ars-radius-sm);
  background: rgba(229, 32, 55, 0.15);
  border: 1px solid rgba(229, 32, 55, 0.35);
  color: #fff;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}
.mobile-quick-call:hover {
  background: var(--ars-primary);
  color: #fff;
}

.mobile-menu-button {
  width: 46px;
  height: 46px;
  min-width: var(--ars-touch-target);
  min-height: var(--ars-touch-target);
  border-radius: var(--ars-radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.mobile-menu-button:hover {
  background: rgba(229, 32, 55, 0.15);
  border-color: rgba(229, 32, 55, 0.4);
}
.mobile-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-button.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-button.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.mobile-menu-button.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer (Шторка) */
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  height: 100dvh !important;
  background: #0d0e12 !important;
  background: linear-gradient(180deg, #13161c 0%, #0a0b0e 100%) !important;
  z-index: 10000 !important;
  padding: 24px 20px 40px 20px !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  transform: translateX(100%) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.35s !important;
}
.mobile-menu:not(.active) {
  display: none !important;
}
.mobile-menu.active {
  transform: translateX(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
.mobile-menu__close {
  width: 44px;
  height: 44px;
  min-width: var(--ars-touch-target);
  min-height: var(--ars-touch-target);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s ease;
}
.mobile-menu__close:hover {
  background: rgba(229, 32, 55, 0.25);
  border-color: var(--ars-primary);
  color: #fff;
}
.mobile-menu ul li a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--ars-radius-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #d2d6df;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mobile-menu ul li a:hover,
.mobile-menu ul li a:active {
  background: rgba(229, 32, 55, 0.12);
  color: #fff !important;
  transform: translateX(5px);
}

/* --------------------------------------------------------------------------
   7. Hero Promo Slider & Stats Bar Grid
   -------------------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  background-color: var(--ars-obsidian);
  padding: 175px 0 90px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Per-slide background images */
.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right 25% center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.02);
  transition: transform 6s ease-out;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1);
}

/* Lightened ambient gradient overlay so the cars are bright, clear and prominent */
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(
      90deg,
      rgba(9, 11, 16, 0.76) 0%,
      rgba(9, 11, 16, 0.40) 45%,
      rgba(9, 11, 16, 0.05) 100%
    ),
    linear-gradient(
      0deg,
      rgba(9, 11, 16, 0.65) 0%,
      transparent 22%
    );
}

.hero-slide-bg-1 {
  background-image: url('../images/hero_car_1.jpg');
}
.hero-slide-bg-2 {
  background-image: url('../images/hero_car_2.jpg');
}
.hero-slide-bg-3 {
  background-image: url('../images/hero_car_3.jpg');
}

/* Compact Glassmorphism content card - keeps text legible without darkening the cars */
.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  background: rgba(13, 16, 22, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 34px 38px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.hero-slide-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 38px !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  margin: 0 0 10px 0 !important;
  letter-spacing: -0.5px !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6) !important;
}

.hero-slide-subtitle {
  font-size: 14.5px;
  font-weight: 700;
  color: #ff5266;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.hero-slide-desc {
  font-size: 14.5px !important;
  line-height: 1.6 !important;
  color: #cdd3de !important;
  margin-bottom: 24px !important;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 32, 55, 0.15);
  border: 1px solid rgba(229, 32, 55, 0.4);
  color: #ff5266;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ars-primary);
  box-shadow: 0 0 10px var(--ars-primary);
  animation: badgePulse 2s infinite ease-in-out;
}
@keyframes badgePulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.hero-slider-section h1,
.hero-slider-section h2 {
  font-family: 'Montserrat', sans-serif !important;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.85);
  letter-spacing: 0.5px;
}

.btn-hero-calc {
  background: linear-gradient(135deg, #e52037 0%, #b81223 100%) !important;
  color: #fff !important;
  padding: 16px 36px !important;
  border-radius: var(--ars-radius-sm) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 25px rgba(229, 32, 55, 0.45) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  min-height: var(--ars-touch-target);
}
.btn-hero-calc:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 12px 32px rgba(229, 32, 55, 0.65) !important;
}

.btn-hero-callback {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  padding: 16px 32px !important;
  border-radius: var(--ars-radius-sm) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  min-height: var(--ars-touch-target);
}
.btn-hero-callback:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-2px) !important;
}

/* Stats Bar */
.hero-stats-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}
.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--ars-radius-md);
  padding: 16px 20px;
  transition: all 0.25s ease;
}
.hero-stat-card:hover {
  border-color: rgba(229, 32, 55, 0.35);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.hero-stat-number {
  font-size: 38px;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  flex-shrink: 0;
}
.hero-stat-desc {
  font-size: 13px;
  color: #bbb;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   8. Key Services Overview Cards Grid
   -------------------------------------------------------------------------- */
.services-overview {
  background: #14171d !important;
  padding: 90px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.services-overview-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}
.service-overview-card {
  background: #171a22 !important;
  border-radius: var(--ars-radius-lg) !important;
  padding: 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.service-overview-card:hover {
  transform: translateY(-8px) !important;
  border-color: var(--ars-card-border-hover) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(229, 32, 55, 0.15) !important;
}
.service-overview-card h3 {
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  margin-bottom: 12px !important;
  font-family: 'Montserrat', sans-serif !important;
}
.service-overview-card p {
  color: var(--ars-text-muted) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
}
.service-overview-price {
  font-size: 22px !important;
  font-weight: 900 !important;
  color: var(--ars-primary) !important;
  font-family: 'Montserrat', sans-serif !important;
  margin-bottom: 16px !important;
}
.service-overview-btn {
  display: block !important;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  padding: 13px !important;
  border-radius: var(--ars-radius-sm) !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  transition: all 0.25s ease !important;
  min-height: var(--ars-touch-target) !important;
}
.service-overview-btn:hover {
  background: var(--ars-primary) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(229, 32, 55, 0.5) !important;
}

/* --------------------------------------------------------------------------
   9. Interactive Before & After Comparison Slider Grid
   -------------------------------------------------------------------------- */
.before-after-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
}
.before-after-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--ars-radius-md);
  height: 380px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  background: #121418;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.before-after-card:hover {
  border-color: rgba(229, 32, 55, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 22px rgba(229, 32, 55, 0.18);
}
.before-after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.before-after-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid #e52037;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.7);
}
.before-after-overlay .before-after-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--card-w, 100%);
  max-width: none;
  object-fit: cover;
}
.before-after-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #0d0e12;
  border: 3px solid #e52037;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(229, 32, 55, 0.65), 0 4px 15px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  cursor: ew-resize;
  color: #fff;
  z-index: 10;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.before-after-card:hover .before-after-slider-handle {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 28px rgba(229, 32, 55, 0.85), 0 6px 22px rgba(0, 0, 0, 0.9);
}
.before-after-label {
  position: absolute;
  top: 18px;
  padding: 6px 14px;
  border-radius: var(--ars-radius-sm);
  background: rgba(13, 14, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 5;
}
.before-after-label--before {
  left: 18px;
  border-left: 3px solid #e52037;
}
.before-after-label--after {
  right: 18px;
  border-right: 3px solid var(--ars-2gis);
}

/* --------------------------------------------------------------------------
   10. Interactive Detailing Calculator Form & UI
   -------------------------------------------------------------------------- */
.calc-section {
  background: #13161c !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.calc-form-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.calc-form-header__item {
  background: #171a22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ars-radius-md);
  padding: 16px 20px;
  transition: border-color 0.25s ease;
}
.calc-form-header__item:focus-within {
  border-color: var(--ars-primary);
  box-shadow: 0 0 15px rgba(229, 32, 55, 0.2);
}
.calc-form-header__item > div {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ars-primary);
  margin-bottom: 8px;
}
.calc-form-header select {
  width: 100%;
  height: 48px;
  background: #101217;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--ars-radius-sm);
  color: #fff;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}
.calc-form-header select:focus {
  border-color: var(--ars-primary);
}

.calc-form-no-results {
  border-radius: var(--ars-radius-md);
  background: #171a22;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: #a0a6b2;
  padding: 30px 24px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.calc-form-content {
  display: none;
  gap: 36px;
}
.calc-form-content.show {
  display: flex;
  animation: calcFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes calcFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #cfd4dc;
  font-size: 15px;
  padding: 14px 18px;
  border-radius: var(--ars-radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.25s ease;
  min-height: 52px;
  user-select: none;
}
.calc-service-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateX(4px);
}
.calc-service-item.checked {
  background: rgba(229, 32, 55, 0.09);
  border-color: rgba(229, 32, 55, 0.4);
  color: #fff;
}
.calc-service-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: #111317;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  margin: 0;
  position: relative;
}
.calc-service-item input[type="checkbox"]:checked {
  background: var(--ars-primary);
  border-color: var(--ars-primary);
  box-shadow: 0 0 12px rgba(229, 32, 55, 0.5);
}
.calc-service-item input[type="checkbox"]:checked::after {
  content: '✓';
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.calc-price-som {
  font-size: 30px;
  font-weight: 900;
  color: var(--ars-primary);
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 0 20px rgba(229, 32, 55, 0.3);
}
.calc-discount-badge {
  background: var(--ars-primary);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 8px;
}

/* --------------------------------------------------------------------------
   11. Reviews 2GIS Slider Equal Heights
   -------------------------------------------------------------------------- */
.review-swiper .swiper-slide {
  height: auto !important;
  display: flex !important;
}
.review-swiper .swiper-slide > div {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  width: 100% !important;
}

/* --------------------------------------------------------------------------
   12. Modal Popup Dialog System
   -------------------------------------------------------------------------- */
.modal-tr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.modal-tr._show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-tr-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 9, 12, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.modal-tr-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  background: #171a22 !important;
  background: linear-gradient(145deg, #191c25 0%, #12141a 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--ars-radius-lg) !important;
  padding: 38px 32px !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(229, 32, 55, 0.12) !important;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-tr._show .modal-tr-content {
  transform: scale(1) translateY(0);
}
.modal-tr-content__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  min-width: var(--ars-touch-target);
  min-height: var(--ars-touch-target);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: all 0.25s ease;
}
.modal-tr-content__close:hover {
  background: rgba(229, 32, 55, 0.25);
  border-color: var(--ars-primary);
  color: #fff;
  transform: rotate(90deg);
}

/* --------------------------------------------------------------------------
   13. Floating Contacts & Speed Dial
   -------------------------------------------------------------------------- */
.floating-contacts {
  position: fixed;
  right: 24px;
  bottom: max(30px, env(safe-area-inset-bottom) + 16px);
  z-index: 990;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.floating-btn {
  width: 54px;
  height: 54px;
  min-width: var(--ars-touch-target);
  min-height: var(--ars-touch-target);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}
.floating-btn:hover {
  transform: scale(1.12);
  color: #fff;
}
.floating-btn--wa {
  background: var(--ars-wa);
  animation: pulse-wa 2.2s infinite;
}
.floating-btn--phone {
  background: #007bff;
}
.floating-btn--2gis {
  background: var(--ars-2gis);
}
.floating-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --------------------------------------------------------------------------
   14. Bishkek 2GIS Map Card
   -------------------------------------------------------------------------- */
.map-bishkek-section {
  background: #101216;
  padding: 90px 0;
  position: relative;
}
.map-card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 30px;
  background: #171a21;
  border-radius: var(--ars-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.map-info-pane {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-info-pane h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.map-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}
.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #ddd;
}
.map-info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--ars-primary);
  margin-top: 2px;
}
.map-info-label {
  font-size: 12px;
  color: var(--ars-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}
.map-info-val {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
.map-info-val a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.map-info-val a:hover {
  color: var(--ars-primary);
}
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-2gis {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ars-2gis);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--ars-radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(48, 173, 0, 0.35);
  min-height: var(--ars-touch-target);
}
.btn-2gis:hover {
  background: var(--ars-2gis-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(48, 173, 0, 0.5);
}
.btn-route {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--ars-radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  min-height: var(--ars-touch-target);
}
.btn-route:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-2px);
}
.map-embed-pane {
  min-height: 420px;
  position: relative;
}
.map-embed-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 420px;
}

/* --------------------------------------------------------------------------
   15. Responsive Breakpoints: Tablet, 375px & 320px
   -------------------------------------------------------------------------- */
@media (max-width: 1280px) {
  .services-overview-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 1199px) {
  .header-menu {
    gap: 18px !important;
  }
  .header-menu li a {
    font-size: 12px !important;
  }
  .header-menu__item .dropdown-menu {
    width: 720px;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 991px) {
  .primary-menu {
    display: none !important;
  }
  header.header .header__top .mobile-menu-button,
  .mobile-menu-button {
    display: flex !important;
    position: static !important;
    margin-left: auto !important;
    margin-right: 18px !important;
    transform: translateX(-12px) !important;
  }
  .mobile-quick-call {
    display: none !important;
  }
  .header_info {
    display: none !important;
  }
  .header-phone-box {
    display: none !important;
  }
  .header_blok_right .callform-btn {
    display: none !important;
  }
  .header_blok_right {
    gap: 0 !important;
  }

  /* Mobile Hero Slider — Car photo visible on top, compact card at bottom */
  .hero-slider-section {
    padding: 85px 0 30px 0 !important;
    min-height: auto;
    background-color: var(--ars-obsidian);
  }
  .promo-swiper .swiper-slide.hero-slide {
    min-height: 82vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding-bottom: 24px !important;
  }
  .hero-slide-bg {
    background-position: center 15% !important;
    background-size: cover !important;
  }
  .hero-slide-bg::after {
    background: linear-gradient(
      180deg,
      rgba(9, 11, 16, 0.05) 0%,
      rgba(9, 11, 16, 0.15) 30%,
      rgba(9, 11, 16, 0.72) 62%,
      rgba(9, 11, 16, 0.96) 100%
    ) !important;
  }
  .hero-slide-content {
    max-width: 100% !important;
    padding: 16px 18px !important;
    border-radius: 16px !important;
    margin: 0 !important;
    background: rgba(13, 16, 22, 0.82) !important;
  }
  .hero-slide-title {
    font-size: 21px !important;
    line-height: 1.2 !important;
    margin-bottom: 4px !important;
  }
  .hero-slide-subtitle {
    font-size: 12.5px !important;
    margin-bottom: 6px !important;
  }
  .hero-slide-desc {
    display: none !important; /* On mobile phones, hide paragraph so car photo is fully visible on top */
  }
  .hero-cta-group {
    display: flex !important;
    gap: 8px !important;
    margin-top: 10px !important;
  }
  .btn-hero-calc,
  .btn-hero-callback {
    flex: 1 1 45% !important;
    padding: 12px 14px !important;
    font-size: 12px !important;
    text-align: center !important;
    min-height: 42px !important;
  }

  .before-after-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  }
  .calc-form-content.show {
    flex-direction: column;
  }
  .calc-form-content__right > div {
    position: static !important;
  }

  .map-card-wrapper {
    grid-template-columns: 1fr;
  }
  .map-embed-pane {
    height: 350px;
  }
  .floating-contacts {
    right: 16px;
    bottom: 20px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 680px) {
  .services-overview-grid {
    grid-template-columns: 1fr !important;
  }
  .before-after-grid {
    grid-template-columns: 1fr !important;
  }
  .before-after-card {
    height: 320px;
  }
}

/* Mobile 375px and 320px specific polish */
@media (max-width: 520px) {
  .header-2gis__bottom {
    display: none;
  }
  .header-2gis {
    padding: 6px 10px;
  }
  .header_info_wrapper {
    gap: 8px !important;
  }
  .header_blok_right {
    gap: 10px !important;
  }
  .callform-btn {
    padding: 8px 14px !important;
    font-size: 11px !important;
    letter-spacing: 0.8px !important;
  }
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-top: 40px !important;
    padding-top: 24px !important;
  }
  .hero-stat-card {
    padding: 12px 14px !important;
    gap: 10px !important;
  }
  .hero-stat-number {
    font-size: 28px !important;
  }
  .hero-stat-desc {
    font-size: 11px !important;
  }
  .calc-service-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 12px 14px !important;
  }
  .calc-service-item > strong {
    align-self: flex-end !important;
    font-size: 15px !important;
    color: var(--ars-primary) !important;
  }
  .map-info-pane {
    padding: 24px 18px !important;
  }
  .map-actions {
    flex-direction: column !important;
  }
  .map-actions .btn-2gis,
  .map-actions .btn-route {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* 375px & 320px iPhone SE viewports */
@media (max-width: 380px) {
  .ars-logo {
    gap: 8px !important;
  }
  .ars-logo-badge {
    font-size: 16px !important;
    padding: 5px 8px !important;
  }
  .ars-logo-title {
    font-size: 15px !important;
  }
  .ars-logo-sub {
    display: none !important;
  }
  .header-2gis__info {
    display: none !important;
  }
  .header-2gis {
    padding: 4px !important;
    border-radius: 6px !important;
  }
  .header-2gis__icon {
    width: 26px !important;
    height: 26px !important;
    font-size: 9px !important;
  }
  .callform-btn {
    padding: 7px 10px !important;
    font-size: 10px !important;
  }
  .mobile-menu-button {
    width: 40px !important;
    height: 40px !important;
  }
  .mobile-quick-call {
    width: 40px !important;
    height: 40px !important;
  }
  .hero-slider-section h1 {
    font-size: 23px !important;
    line-height: 1.25 !important;
  }
  .hero-slider-section h2 {
    font-size: 21px !important;
    line-height: 1.25 !important;
  }
  .hero-badge {
    font-size: 10px !important;
    padding: 5px 12px !important;
    letter-spacing: 0.6px !important;
  }
  .btn-hero-calc,
  .btn-hero-callback {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 13px !important;
  }
  .before-after-card {
    height: 260px !important;
  }
  .before-after-label {
    top: 12px !important;
    padding: 4px 8px !important;
    font-size: 9px !important;
    letter-spacing: 1px !important;
  }
  .before-after-label--before {
    left: 12px !important;
  }
  .before-after-label--after {
    right: 12px !important;
  }
  .before-after-slider-handle {
    width: 42px !important;
    height: 42px !important;
  }
  .modal-tr-content {
    padding: 24px 16px !important;
  }
}

/* ==========================================================================
   UNIVERSAL MOBILE RESILIENCE & ZERO-OVERFLOW (320px - 768px)
   ========================================================================== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }
  
  section {
    max-width: 100vw !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  /* Universal typography wrapping */
  h1, section h1, .hero-slider-section h1 {
    font-size: 26px !important;
    line-height: 1.25 !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  h2, section h2, .calc-form__title h2 {
    font-size: 22px !important;
    line-height: 1.25 !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  h3, section h3 {
    font-size: 18px !important;
    line-height: 1.3 !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
  p, section p {
    font-size: 14px !important;
    line-height: 1.55 !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }
}

@media (max-width: 480px) {
  .hero-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  h1, section h1, .hero-slider-section h1 {
    font-size: 22px !important;
    line-height: 1.25 !important;
  }
  h2, section h2, .calc-form__title h2 {
    font-size: 20px !important;
    line-height: 1.25 !important;
  }

  .calc-service-item strong {
    font-size: 14px !important;
  }
  
  .table-responsive, table {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

/* ==========================================================================
   PREMIUM PROMO SECTION — Glassmorphism Autumn Cards
   ========================================================================== */

/* Section wrapper */
.promo-section-premium {
  position: relative;
  background: #090b10;
  padding: 100px 0 80px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Ambient background glow blobs */
.promo-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.18;
  z-index: 0;
}
.promo-bg-glow--red   { width: 500px; height: 500px; background: #e52037; top: -100px; left: -100px; }
.promo-bg-glow--amber { width: 400px; height: 400px; background: #ff9800; top: 100px;  right: -80px; opacity: 0.14; }
.promo-bg-glow--blue  { width: 350px; height: 350px; background: #2979ff; bottom: -50px; left: 40%;  opacity: 0.12; }

/* Section header */
.promo-header {
  text-align: center;
  margin-bottom: 64px;
}
.promo-header__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 18px 0 16px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.promo-header__accent {
  background: linear-gradient(135deg, #ff9800 0%, #e52037 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.promo-header__sub {
  color: #8a92a3;
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* Cards grid */
.promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* Base card */
.pcard {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease;
}
.pcard:hover {
  transform: translateY(-8px);
}

/* Glow element behind card */
.pcard__glow {
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.pcard:hover .pcard__glow { opacity: 1; }

/* Color variants — border gradient + hover glow */
.pcard--red {
  box-shadow: 0 0 0 1.5px rgba(229,32,55,0.3), 0 20px 60px rgba(0,0,0,0.6);
  background: linear-gradient(160deg, rgba(229,32,55,0.08) 0%, rgba(14,16,21,0.97) 40%);
}
.pcard--red:hover {
  box-shadow: 0 0 0 1.5px rgba(229,32,55,0.7), 0 30px 70px rgba(229,32,55,0.2);
}
.pcard--red .pcard__glow {
  background: linear-gradient(135deg, rgba(229,32,55,0.25), transparent 60%);
}

.pcard--amber {
  box-shadow: 0 0 0 1.5px rgba(255,152,0,0.35), 0 20px 60px rgba(0,0,0,0.6);
  background: linear-gradient(160deg, rgba(255,152,0,0.1) 0%, rgba(14,16,21,0.97) 40%);
}
.pcard--amber:hover {
  box-shadow: 0 0 0 1.5px rgba(255,152,0,0.8), 0 30px 70px rgba(255,152,0,0.22);
}
.pcard--amber .pcard__glow {
  background: linear-gradient(135deg, rgba(255,152,0,0.28), transparent 60%);
}

.pcard--blue {
  box-shadow: 0 0 0 1.5px rgba(41,121,255,0.3), 0 20px 60px rgba(0,0,0,0.6);
  background: linear-gradient(160deg, rgba(41,121,255,0.08) 0%, rgba(14,16,21,0.97) 40%);
}
.pcard--blue:hover {
  box-shadow: 0 0 0 1.5px rgba(41,121,255,0.7), 0 30px 70px rgba(41,121,255,0.18);
}
.pcard--blue .pcard__glow {
  background: linear-gradient(135deg, rgba(41,121,255,0.22), transparent 60%);
}

/* Featured (middle) card — slightly scaled up */
.pcard--featured {
  transform: scale(1.03);
  z-index: 2;
}
.pcard--featured:hover {
  transform: scale(1.03) translateY(-8px);
}

/* Featured ribbon at top */
.pcard__featured-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #ff9800, #e55a00);
  color: #000;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 0;
  z-index: 3;
}

/* Inner padding */
.pcard__inner {
  position: relative;
  z-index: 2;
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pcard--featured .pcard__inner { padding-top: 46px; }

/* Top badge pill */
.pcard__top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  width: fit-content;
}
.pcard__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: badgePulse 2s infinite ease-in-out;
  flex-shrink: 0;
}
.pcard__top-badge--red   { background: rgba(229,32,55,0.15);   color: #ff6b7a; border: 1px solid rgba(229,32,55,0.35); }
.pcard__top-badge--red   .pcard__badge-dot { background: #e52037; box-shadow: 0 0 8px #e52037; }
.pcard__top-badge--amber { background: rgba(255,152,0,0.13);   color: #ffb840; border: 1px solid rgba(255,152,0,0.35); }
.pcard__top-badge--amber .pcard__badge-dot { background: #ff9800; box-shadow: 0 0 8px #ff9800; }
.pcard__top-badge--blue  { background: rgba(41,121,255,0.13);  color: #6fa3ff; border: 1px solid rgba(41,121,255,0.35); }
.pcard__top-badge--blue  .pcard__badge-dot { background: #2979ff; box-shadow: 0 0 8px #2979ff; }

/* Emoji icon */
.pcard__icon {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

/* Title */
.pcard__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}

/* Subtitle */
.pcard__subtitle {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.pcard__subtitle--red   { color: #e52037; }
.pcard__subtitle--amber { color: #ff9800; }
.pcard__subtitle--blue  { color: #4d94ff; }

/* Description */
.pcard__desc {
  font-size: 14px;
  color: #8a92a3;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* Checklist */
.pcard__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
}
.pcard__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #c8cdd8;
  line-height: 1.45;
}
.pcard__check {
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pcard__check--red   { background: rgba(229,32,55,0.18);  color: #e52037; }
.pcard__check--amber { background: rgba(255,152,0,0.18);  color: #ff9800; }
.pcard__check--blue  { background: rgba(41,121,255,0.18); color: #4d94ff; }

/* Gift row */
.pcard__gift {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  line-height: 1.4;
}
.pcard__gift--red   { background: rgba(229,32,55,0.12);  border: 1px solid rgba(229,32,55,0.2); }
.pcard__gift--amber { background: rgba(255,152,0,0.12);  border: 1px solid rgba(255,152,0,0.2); }
.pcard__gift--blue  { background: rgba(41,121,255,0.12); border: 1px solid rgba(41,121,255,0.2); }
.pcard__gift span:first-child { font-size: 18px; flex-shrink: 0; }

/* Price block */
.pcard__price-block {
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.06);
}
.pcard__price-block--red   { background: rgba(229,32,55,0.08); }
.pcard__price-block--amber { background: rgba(255,152,0,0.08); }
.pcard__price-block--blue  { background: rgba(41,121,255,0.08); }

.pcard__price-compare {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.pcard__price-label {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.pcard__price-old {
  font-size: 14px;
  color: #666;
  text-decoration: line-through;
  font-weight: 600;
}
.pcard__price-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.pcard__price-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}
.pcard__price-currency {
  font-size: 18px;
  font-weight: 700;
  color: #9fa6b2;
}
.pcard__price-saving {
  font-size: 11.5px;
  font-weight: 700;
  color: #30c060;
  letter-spacing: 0.3px;
}

/* CTA Button */
.pcard__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  min-height: 52px;
}
.pcard__btn--red   { background: linear-gradient(135deg,#e52037,#b81223); color:#fff; box-shadow: 0 8px 28px rgba(229,32,55,0.4); }
.pcard__btn--red:hover   { box-shadow: 0 12px 36px rgba(229,32,55,0.6); transform: translateY(-2px); color:#fff; }
.pcard__btn--amber { background: linear-gradient(135deg,#ff9800,#e55a00); color:#000; box-shadow: 0 8px 28px rgba(255,152,0,0.4); }
.pcard__btn--amber:hover { box-shadow: 0 12px 36px rgba(255,152,0,0.6); transform: translateY(-2px); color:#000; }
.pcard__btn--blue  { background: linear-gradient(135deg,#2979ff,#1247cc); color:#fff; box-shadow: 0 8px 28px rgba(41,121,255,0.4); }
.pcard__btn--blue:hover  { box-shadow: 0 12px 36px rgba(41,121,255,0.6); transform: translateY(-2px); color:#fff; }
.pcard__btn svg { transition: transform 0.25s ease; }
.pcard__btn:hover svg { transform: translateX(4px); }

/* Trust line at the bottom */
.promo-trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 700;
  color: #636b7a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.promo-trust-line span { transition: color 0.2s; }
.promo-trust-line span:hover { color: #c8cdd8; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .promo-cards-grid { gap: 20px; }
  .pcard__price-num { font-size: 36px; }
  .promo-header__title { font-size: 38px; }
}

@media (max-width: 900px) {
  .promo-cards-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .pcard--featured { transform: none; }
  .pcard--featured:hover { transform: translateY(-8px); }
  .promo-header__title { font-size: 32px; }
}

@media (max-width: 520px) {
  .promo-section-premium { padding: 70px 0 60px; }
  .promo-header { margin-bottom: 40px; }
  .promo-header__title { font-size: 26px; }
  .pcard__inner { padding: 22px 18px; }
  .pcard__title { font-size: 22px; }
  .pcard__price-num { font-size: 32px; }
  .promo-trust-line { gap: 16px; font-size: 11px; margin-top: 36px; }
}

/* ==========================================================================
   FAQ SECTION — Force correct text colors (prevent dark-on-dark issue)
   ========================================================================== */
.faq-card {
  background: #1a1d24 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
}
.faq-card:hover {
  border-color: rgba(229,32,55,0.4) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4) !important;
}
.faq-visible {
  padding: 20px 26px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  cursor: pointer !important;
  gap: 16px !important;
}
.faq-visible h3,
.faq-visible h3 * {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  flex: 1 !important;
}
.faq-card-open-btn-down {
  color: #e52037 !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  width: 28px !important;
  height: 28px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(229,32,55,0.12) !important;
  border-radius: 50% !important;
  transition: transform 0.3s ease, background 0.2s ease !important;
}
.faq-card.active .faq-card-open-btn-down {
  transform: rotate(45deg) !important;
  background: rgba(229,32,55,0.25) !important;
}
.faq-invisible {
  background: #13151b !important;
  padding: 0 26px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  width: 100% !important;
  padding-left: 26px !important;
  padding-right: 26px !important;
  padding-bottom: 0 !important;
  position: static !important;
}
.faq-invisible div,
.faq-invisible p {
  color: #b8bfcc !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
}

@media (max-width: 600px) {
  .faq-visible {
    padding: 16px 18px !important;
    min-height: auto !important;
  }
  .faq-visible h3 {
    font-size: 14.5px !important;
    line-height: 1.4 !important;
    word-break: normal !important;
  }
  .faq-invisible {
    padding: 0 18px !important;
    margin-top: 0 !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   MOBILE HEADER & LOGO ENFORCEMENT
   Ensures ARS Logo is 100% visible on the top-left on all mobile devices
   Hides phone quick-call button to prevent overlapping the burger menu
   ========================================================================== */
.mobile-quick-call {
  display: none !important;
}

.header__logo {
  position: static !important;
  left: auto !important;
  display: flex !important;
  align-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 100 !important;
}

.header__logo a,
.header__logo .ars-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: auto !important;
  text-decoration: none !important;
}

.header__logo span,
.ars-logo span,
.ars-logo-badge,
.ars-logo-text,
.ars-logo-title,
.ars-logo-sub {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.ars-logo-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #e52037 0%, #9e101f 100%) !important;
  color: #fff !important;
  font-weight: 900 !important;
  border-radius: 8px !important;
}

.ars-logo-text {
  display: flex !important;
  flex-direction: column !important;
}

.ars-logo-title {
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
}

.ars-logo-sub {
  color: #ff4d61 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* ==========================================================================
   PRICING TABLES & WHITE/LIGHT SECTIONS TYPOGRAPHY
   Fixes ugly black-and-white zebra striping and white text in light sections
   ========================================================================== */

/* 1. Eliminate harsh black-and-white zebra striping on all tables */
table,
.service-table .pricing-table,
.pricing-table {
  border-collapse: collapse !important;
  background-color: transparent !important;
  border: none !important;
}

table tr,
.service-table .pricing-table tr,
.pricing-table tr {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: background-color 0.2s ease !important;
}

table tr:nth-child(even),
table tr:nth-child(even) td,
.service-table .pricing-table tr:nth-child(even),
.service-table .pricing-table tr:nth-child(even) td,
.pricing-table tr:nth-child(even),
.pricing-table tr:nth-child(even) td {
  background-color: transparent !important;
}

table tr:hover,
.service-table .pricing-table tr:hover,
.pricing-table tr:hover {
  background-color: rgba(255, 255, 255, 0.04) !important;
}

table th,
.service-table .pricing-table th,
.pricing-table th {
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #8a94a6 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  padding: 12px 16px !important;
  background-color: transparent !important;
}

table td,
.service-table .pricing-table td,
.pricing-table td {
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 16px 14px !important;
  background-color: transparent !important;
  font-size: 15px !important;
  color: #c8d0dc !important;
}

/* Service titles in tables */
table td:first-child,
.service-table .pricing-table td:first-child,
.pricing-table td:first-child {
  color: #ffffff !important;
  font-weight: 600 !important;
}

/* Prices in tables */
table td:last-child,
.service-table .pricing-table td:last-child,
.pricing-table td:last-child {
  color: #e52037 !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  white-space: nowrap !important;
}

/* 2. In any genuinely white or light section, force black/dark text */
.service-description,
.service-description *,
.service-brands,
.service-brands *,
.service-top .item__description,
.service-top .item__description *,
.bg-white,
.bg-white *,
.light-section,
.light-section *,
[style*="background:#fff"]:not(a):not(button),
[style*="background: #fff"]:not(a):not(button),
[style*="background:white"]:not(a):not(button),
[style*="background: white"]:not(a):not(button),
[style*="background-color:#fff"]:not(a):not(button),
[style*="background-color: #fff"]:not(a):not(button),
[style*="background:#efefef"]:not(a):not(button),
[style*="background-color:#efefef"]:not(a):not(button),
[style*="background:#F5F5F5"]:not(a):not(button),
[style*="background-color:#F5F5F5"]:not(a):not(button) {
  color: #111827 !important;
}

/* Headings in light sections */
.service-description h1, .service-description h2, .service-description h3, .service-description h4,
.service-top h1, .service-top h2, .service-top h3, .service-top h4,
.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4,
[style*="background:#fff"] h1, [style*="background:#fff"] h2, [style*="background:#fff"] h3,
[style*="background: #fff"] h1, [style*="background: #fff"] h2, [style*="background: #fff"] h3 {
  color: #000000 !important;
  font-weight: 900 !important;
}

/* Maintain proper button text colors */
a[style*="background:#e52037"],
button[style*="background:#e52037"],
a[style*="background:#25d366"],
button[style*="background:#25d366"],
.btn-hero-calc,
.hero-badge {
  color: #ffffff !important;
}

/* Subpage mobile header responsiveness */
@media (max-width: 768px) {
  header > .container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
  }
  header a.ars-logo {
    margin-right: auto !important;
  }
  header .container > div:last-child {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
  }
  header .header-contact-btn {
    padding: 6px 12px !important;
    font-size: 11px !important;
  }
}

/* ==========================================================================
   SPECIAL EV & CHINESE CARS DETAILING SECTION
   Li Auto, Zeekr, BYD, Voyah, Avatr
   ========================================================================== */
.ev-section {
  position: relative;
  background: 
    radial-gradient(ellipse at 80% 20%, rgba(229, 32, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 210, 255, 0.05) 0%, transparent 50%),
    #0b0d12;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.ev-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 55px auto;
}

.ev-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 38px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  margin: 16px 0 !important;
  letter-spacing: -0.5px !important;
}

.ev-title-accent {
  background: linear-gradient(135deg, #ff4d61 0%, #ff9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ev-subtitle {
  font-size: 16px !important;
  line-height: 1.65 !important;
  color: #9fa6b2 !important;
  margin: 0 auto !important;
}

.ev-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.ev-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
}

.ev-img-box {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.ev-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.ev-visual:hover .ev-img {
  transform: scale(1.03);
}

.ev-visual-badges {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 2;
}

.ev-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(13, 16, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.ev-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e5ff;
  box-shadow: 0 0 8px #00e5ff;
  animation: badgePulse 2s infinite ease-in-out;
}
.ev-dot--red {
  background: #e52037;
  box-shadow: 0 0 8px #e52037;
}

.ev-cards-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ev-card {
  background: #141720;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ev-card:hover {
  border-color: rgba(229, 32, 55, 0.45);
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.ev-card__icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.ev-card__content {
  flex: 1;
}

.ev-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.ev-card__title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.ev-card__price {
  color: #e52037 !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  white-space: nowrap !important;
}

.ev-card__text {
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  color: #9fa6b2 !important;
  margin: 0 !important;
}

.ev-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.ev-actions .pcard__btn {
  padding: 14px 24px !important;
  font-size: 14px !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  text-align: center !important;
}

@media (max-width: 991px) {
  .ev-section {
    padding: 70px 0;
  }
  .ev-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ev-title {
    font-size: 26px !important;
  }
  .ev-subtitle {
    font-size: 14px !important;
  }
  .ev-card {
    padding: 14px 16px;
    gap: 12px;
  }
  .ev-card__title {
    font-size: 15px !important;
  }
  .ev-card__text {
    font-size: 13px !important;
  }
  .ev-actions .pcard__btn {
    width: 100% !important;
  }
}

/* Cookie banner button fix */
.js-cookie-message-confirm {
  background: var(--ars-primary, #e52037) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(229, 32, 55, 0.4) !important;
  transition: all 0.2s ease !important;
}
.js-cookie-message-confirm:hover {
  background: #c01224 !important;
  transform: translateY(-2px) !important;
}

/* ==========================================================================
   6. NEW ADVANTAGE SECTIONS: INSTALLMENT, GIFT CARD, WARRANTY, SERVICE, NEW CAR
   ========================================================================== */

/* --- 6.1 Installments (Рассрочка банков КР) --- */
.installment-section {
  background: linear-gradient(180deg, #101217 0%, #161922 100%);
  padding: 85px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.bank-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.bank-card {
  background: #1b1e28;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.bank-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}
.bank-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.bank-card--mbank:hover::before { background: #00d2c4; }
.bank-card--optima:hover::before { background: #e52037; }
.bank-card--bakai:hover::before { background: #3b82f6; }
.bank-card--demir:hover::before { background: #ea580c; }

.bank-logo-wrap {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.bank-logo-wrap img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
}
.bank-card__term {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.bank-card__desc {
  font-size: 12px;
  color: #9ba3af;
  line-height: 1.5;
  margin: 0;
}
.installment-example-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 28px;
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* --- 6.2 Gift Card Section (Подарочные сертификаты) --- */
.gift-card-section {
  background: #0d0e12;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.gift-card-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.gift-card-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(229, 32, 55, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.gift-card-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.gift-card-visual:hover .gift-card-img {
  transform: scale(1.03);
}
.gift-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(13, 14, 18, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: #ffd700;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.gift-nominals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.gift-nominal-item {
  background: #171a22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.gift-nominal-item:hover {
  border-color: #ffd700;
  transform: translateY(-2px);
  background: #1c202a;
}
.gift-nominal-price {
  font-size: 18px;
  font-weight: 900;
  color: #ffd700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 4px;
}
.gift-nominal-sub {
  font-size: 11px;
  color: #8f98a6;
  text-transform: uppercase;
}
.gift-perks-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gift-perks-list li {
  color: #cfd4dc;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gift-perks-list li svg {
  color: #e52037;
  flex-shrink: 0;
}

/* --- 6.3 Warranty & 14-Day Check (Гарантия и контроль) --- */
.warranty-section {
  background: #13161d;
  padding: 85px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.warranty-card {
  background: #1a1e27;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}
.warranty-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 32, 55, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.warranty-card__icon {
  font-size: 32px;
  margin-bottom: 18px;
}
.warranty-card__title {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
}
.warranty-card__text {
  color: #9ba3af;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* --- 6.4 Client Service & Security (Сервис и безопасность) --- */
.client-service-section {
  background: #0d0e12;
  padding: 85px 0;
}
.client-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.service-feature-card {
  background: #171a22;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.service-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  background: #1c202a;
}
.service-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(229, 32, 55, 0.12);
  color: #e52037;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.service-feature-card__title {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-feature-card__text {
  color: #9ba3af;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* --- 6.5 New Car Package (Пакет для новых авто) --- */
.new-car-section {
  background: #14171e;
  padding: 85px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.new-car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}
.new-car-card {
  background: #1b1e27;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}
.new-car-card--hit {
  border-color: #e52037;
  box-shadow: 0 10px 30px rgba(229, 32, 55, 0.2);
}
.new-car-card--hit::before {
  content: 'ХИТ ПРОДАЖ';
  position: absolute;
  top: -12px;
  right: 24px;
  background: #e52037;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.8px;
}
.new-car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
}
.new-car-card__title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.new-car-card__price {
  font-size: 26px;
  font-weight: 900;
  color: #e52037;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 18px;
}
.new-car-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.new-car-card__features li {
  color: #cfd4dc;
  font-size: 13.5px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.new-car-card__features li span.check {
  color: #25d366;
  font-weight: 900;
}

/* --- Mobile Responsiveness for all new sections --- */
@media (max-width: 991px) {
  .bank-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .gift-card-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .warranty-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .client-service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .new-car-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .installment-example-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .bank-grid {
    grid-template-columns: 1fr;
  }
  .warranty-grid {
    grid-template-columns: 1fr;
  }
  .client-service-grid {
    grid-template-columns: 1fr;
  }
  .gift-nominals {
    grid-template-columns: 1fr;
  }
}







