/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --bg-card: #0a0a0a;
  --bg-card-hover: #111111;
  --accent: #e60000;
  --accent-light: #ff1a1a;
  --accent-dark: #b30000;
  --text: #ffffff;
  --text-muted: #999;
  --text-dim: #666;
  --border: #222;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.5px;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 0, 0, 0.3);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 1rem;
  width: 100%;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.nav--scrolled {
  background: #000000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav__container {
  max-width: 100%;
  margin: 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 58px;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
}

.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 52px;
  width: auto;
}

.nav__contacts-link {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--transition);
  cursor: pointer;
  margin-left: auto;
  margin-right: 20px;
}
.nav__contacts-link:hover { opacity: 0.7; }

.nav__services {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin-left: 24px;
}
.nav__services li {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  cursor: pointer;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__services li:hover {
  color: var(--text);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 6px;
  padding: 6px 0;
  min-width: 160px;
  list-style: none;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}
.nav__dropdown.open .nav__dropdown-menu {
  display: block;
}
.nav__dropdown-menu li {
  padding: 9px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #ccc;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav__dropdown-menu li:hover {
  color: #000;
  background: #fff;
}
.nav__services li.active,
.nav__services li.nav__services-active {
  color: #fff;
  position: relative;
}
.nav__services li.active::after,
.nav__services li.nav__services-active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 2px;
  background: #fff;
  border-radius: 1px;
}

.nav__menu {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav__menu a {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav__menu a:hover {
  color: var(--text);
}
.nav__menu a:hover::after {
  width: 100%;
}

.nav__lang {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 4px 11px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition);
}
.nav__lang:hover {
  background: #fff;
  color: #000;
}

.nav__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: all var(--transition);
}
.nav__social:hover {
  transform: scale(1.15);
  opacity: 0.85;
}
.nav__social--wa {
  color: #25D366;
}
.nav__social--tg {
  color: #229ED9;
}
.nav__social--ig {
  display: none;
}
.nav__social--phone {
  color: #fff;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  background: #000;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 60px 110px;
  max-width: 700px;
}

.hero__title {
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero__buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 0;
}
.hero__buttons .btn--primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.hero__buttons .btn--primary:hover {
  background: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.85);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.hero__subtitle {
  font-size: 1rem;
  color: #ffffff;
  max-width: 500px;
  margin: 0 0 32px;
  font-weight: 600;
  letter-spacing: 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}
.catalog {
  padding-top: 40px;
}

.catalog__main-title {
  text-align: center;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}

.section:nth-child(even) {
  background: #000000;
}

.section__title {
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.25rem;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

/* ===== REELS SLIDER ===== */
.reels__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.reels__slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}

.reels__slider::-webkit-scrollbar {
  display: none;
}

.reels__item {
  flex: 0 0 300px;
  height: 535px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  scroll-snap-align: start;
  background: #000;
}

.reels__item iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.reels__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reels__arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .reels__item {
    flex: 0 0 250px;
    height: 445px;
  }

  .reels__arrow {
    display: none;
  }
}

/* ===== CATALOG ===== */
.catalog__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.catalog__tab {
  padding: 10px 24px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 1px;
  white-space: nowrap;
}
.catalog__tab:hover,
.catalog__tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.catalog__show-all {
  display: block;
  width: fit-content;
  margin: 16px auto 60px;
  padding: 10px 28px;
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.catalog__show-all:hover {
  background: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.85);
  color: #000;
}

.catalog__show-all--hidden {
  display: none;
}

.catalog__nav-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}
.catalog__nav-tab {
  padding: 8px 24px;
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.catalog__nav-tab:hover {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.catalog__nav-tab.active {
  border-color: #fff;
  color: #000;
  background: #fff;
}

.catalog__section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  display: inline-block;
  letter-spacing: 1px;
}

.catalog__section-title:not(:first-of-type) {
  margin-top: 0;
}

.catalog__section-title--centered {
  display: block;
  text-align: center;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.catalog__cc-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.catalog__cc-tabs--hidden {
  display: none;
}

.catalog__cc-tab {
  padding: 6px 16px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 1px;
}

.catalog__cc-tab:hover {
  border-color: #888;
  color: #fff;
}
.catalog__cc-tab.active {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #fff;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.08);
  background: var(--bg-card-hover);
}
.card.hidden {
  display: none;
}

.card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a, #000);
  overflow: hidden;
}

.card__placeholder {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

.card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.card__badge--premium {
  background: linear-gradient(135deg, #b8860b, #daa520);
}

.card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__body .btn--sm {
}

.card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card__desc {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.card__specs {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  margin-top: auto;
  margin-bottom: 16px;
  justify-content: center;
}
.card__specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
.card__specs span svg {
  flex-shrink: 0;
  opacity: 0.8;
}
.card__specs span .spec-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: invert(1) brightness(2) contrast(2);
  opacity: 1;
  object-fit: contain;
}
.card__specs span .spec-icon[alt="cc"] {
  object-fit: cover;
  object-position: 40% 35%;
}

.card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.card__price-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
}
.card__price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ===== ABOUT ===== */
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.about__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.about__card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.about__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.about__card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.about__card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== TERMS ===== */
.terms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.terms__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition);
}
.terms__item:hover {
  border-color: var(--accent);
}
.terms__item h3 {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.terms__item p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 20px 40px 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
  letter-spacing: 0.5px;
}
.faq__question:hover {
  color: var(--accent);
}
.faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq__item.active .faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq__item.active .faq__answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq__answer p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== CONTACTS ===== */
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.contacts__messengers {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.contacts__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0;
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.contacts__btn svg {
  width: 24px;
  height: 24px;
}
.contacts__btn span {
  display: none;
}
.contacts__btn:hover {
  transform: scale(1.1);
}

.contacts__btn--wa {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.3);
}
.contacts__btn--wa:hover {
  background: #25d366;
  color: #fff;
}

.contacts__btn--tg {
  background: rgba(0, 136, 204, 0.1);
  color: #0088cc;
  border-color: rgba(0, 136, 204, 0.3);
}
.contacts__btn--tg:hover {
  background: #0088cc;
  color: #fff;
}

.contacts__btn--ig {
  background: rgba(225, 48, 108, 0.1);
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.3);
}
.contacts__btn--ig:hover {
  background: #e1306c;
  color: #fff;
}

.contacts__btn--phone {
  background: rgba(230, 0, 0, 0.1);
  color: var(--accent);
  border-color: rgba(230, 0, 0, 0.3);
}
.contacts__btn--phone:hover {
  background: var(--accent);
  color: #fff;
}

.contacts__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.contacts__detail h3 {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.contacts__detail p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.contacts__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}

.chat-widget.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-widget__trigger {
  width: 64px;
  height: 56px;
  border-radius: 14px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.chat-widget__trigger:hover {
  transform: scale(1.08);
}

.chat-widget__popup {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 320px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  display: none;
}

.chat-widget__popup.open {
  display: block;
  animation: chatSlideUp 0.3s ease;
}

@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-widget__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #111;
  border-bottom: 1px solid #222;
}

.chat-widget__logo {
  height: 32px;
  width: auto;
}

.chat-widget__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.chat-widget__status {
  font-size: 0.75rem;
  color: #4caf50;
}

.chat-widget__close {
  margin-left: auto;
  background: none;
  border: none;
  color: #666;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.chat-widget__close:hover {
  color: #fff;
}

.chat-widget__body {
  padding: 16px;
}

.chat-widget__message {
  background: #222;
  border-radius: 12px 12px 12px 4px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
}

.chat-widget__actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
}

.chat-widget__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
}

.chat-widget__btn:hover {
  opacity: 0.85;
}

.chat-widget__btn--wa {
  background: #25D366;
}

.chat-widget__btn--tg {
  background: #2AABEE;
}

@media (max-width: 768px) {
  .chat-widget {
    bottom: 16px;
    right: 16px;
  }

  .chat-widget__trigger {
    width: 50px;
    height: 50px;
  }

  .chat-widget__popup {
    width: calc(100vw - 32px);
    right: 0;
  }
}

/* ===== GOOGLE RATING ===== */
.google-rating {
  padding: 32px 0 16px;
}

.google-rating__title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.google-rating__card {
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  max-width: 340px;
  margin: 0 auto;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}

.google-rating__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

.google-rating__address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: #555;
}

.google-rating__google-logo {
  display: block;
  margin: 0 auto 12px;
}

.google-rating__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.google-rating__number {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.google-rating__stars {
  display: flex;
  gap: 2px;
}

.google-rating__count {
  font-size: 0.95rem;
  color: #666;
}

/* ===== PROMO ===== */
.promo {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.promo__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  z-index: 0;
}

.promo__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.85) 45%, rgba(0,0,0,0.4) 75%, rgba(0,0,0,0.15) 100%);
}

.promo__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 80px 24px;
}

.promo__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.promo__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
}

.promo__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.6;
}

.promo__btn {
  font-size: 1rem;
  padding: 14px 36px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .promo__bg::after {
    background: rgba(0,0,0,0.82);
  }
  .promo__content {
    padding: 60px 20px;
    max-width: 100%;
    text-align: center;
  }
  .promo__title {
    font-size: 2.2rem;
  }
  .promo__desc {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

/* ===== REELS ===== */
.reels {
  padding: 80px 0;
  background: var(--bg);
}
.reels__grid {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}
.reel-card {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  aspect-ratio: 9/16;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  border: 1px solid #222;
  transition: transform 0.2s, border-color 0.2s;
}
.reel-card:hover { transform: scale(1.03); border-color: #555; }
.reel-card__thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.reel-card:hover .reel-card__thumb { opacity: 0.85; }
.reel-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
}
.reel-card__play svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.7));
  transition: transform 0.2s;
}
.reel-card:hover .reel-card__play svg { transform: scale(1.12); }

/* Reel lightbox */
.reel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.reel-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.reel-lightbox__video {
  max-height: 92vh;
  max-width: min(92vw, 420px);
  width: auto;
  border-radius: 12px;
  background: #000;
}
.reel-lightbox__close {
  position: absolute;
  top: 18px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.reel-lightbox__close:hover { opacity: 1; }

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--border);
  background: #000000;
}

.footer__logo {
  text-align: center;
  margin-bottom: 32px;
}

.footer__logo-img {
  height: 72px;
  width: auto;
  opacity: 0.9;
  display: none;
  margin: 0 auto;
}

.footer__logo-text-img {
  display: block;
  width: clamp(200px, 22vw, 320px);
  height: auto;
  opacity: 1;
  filter: brightness(3) contrast(1.2);
  margin: 0 auto;
}

.footer__columns {
  display: flex;
  gap: 48px;
  padding: 24px 0;
  align-items: stretch;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.footer__form-wrap {
  padding: 24px 28px;
  flex: 1.5;
  max-width: 420px;
}
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.footer__form-input {
  background: transparent;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  padding: 10px 12px;
  transition: border-color 0.2s;
  resize: none;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.footer__form-input::placeholder { color: #555; }
.footer__form-input:focus { border-color: #fff; }
.footer__form-textarea { min-height: 72px; }
.footer__form-btn {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.footer__form-btn:hover { background: rgba(255,255,255,0.85); }

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer__reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  margin-top: auto;
  align-self: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  width: fit-content;
}
.footer__reviews:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.footer__reviews-score {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__reviews-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  line-height: 1;
}
.footer__reviews-stars { display: flex; gap: 2px; }
.footer__reviews-count {
  font-size: 0.85rem;
  color: #555;
}

.footer__heading {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__link {
  color: #999;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__link:hover {
  color: #fff;
}

.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.95rem;
}

.footer__contact-row svg {
  color: #fff;
  flex-shrink: 0;
}

.footer__contact-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__contact-link:hover {
  color: var(--accent);
}

.footer__divider {
  border: none;
  border-top: 1px solid #222;
  margin: 0 0 24px;
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.footer__social-btn:hover {
  opacity: 0.85;
  transform: scale(1.1);
}

.footer__social-btn--wa {
  color: #25D366;
}
.footer__social-btn--tg {
  color: #229ED9;
}

.footer__copy {
  text-align: center;
  color: #fff;
  font-size: 0.85rem;
  margin: 24px 0 8px;
}

.footer__legal {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__legal a {
  color: #fff;
  font-size: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer__legal a:hover,
.footer__legal a:visited,
.footer__legal a:active { color: #fff; opacity: 0.7; }

.footer__site-link {
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  padding: 8px 24px;
  border: 1px solid #333;
  border-radius: 20px;
  color: #999;
  font-size: 0.85rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
}

.footer__site-link:hover {
  color: #fff;
  border-color: #fff;
}

/* ===== CONSENT BANNER ===== */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10002;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: slideUp 0.4s ease;
}

.consent-banner.hidden {
  display: none;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.consent-banner__text {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 600px;
}

.consent-banner__text a {
  color: var(--accent);
  text-decoration: underline;
}

.consent-banner__btn {
  flex-shrink: 0;
  padding: 10px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.consent-banner__btn:hover {
  background: var(--accent-light);
}

@media (max-width: 768px) {
  .consent-banner {
    flex-direction: column;
    gap: 12px;
    padding: 14px 16px;
    text-align: center;
  }

  .consent-banner__text {
    font-size: 0.75rem;
  }

  .consent-banner__btn {
    width: 100%;
  }
}

/* ===== MODAL CONSENT CHECKBOX ===== */
.modal__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}

.modal__consent-check {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.modal__consent-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.modal__consent-text a {
  color: var(--accent);
  text-decoration: underline;
}

.modal__consent-text a:hover {
  color: var(--accent-light);
}

/* ===== LEGAL MODAL ===== */
.legal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.92);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.legal-overlay.active {
  display: flex;
}

.legal-modal {
  background: var(--bg-card);
  border-radius: var(--radius);
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border: 1px solid var(--border);
  position: relative;
  padding: 40px;
  animation: modalIn 0.3s ease;
}

.legal-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.legal-modal__close:hover {
  background: var(--accent);
}

.legal-modal__content h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: 1px;
}

.legal-modal__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-modal__content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-modal__content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-modal__content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav__contacts-link {
    display: none;
  }
  .nav__services {
    display: none;
  }
  .nav__social--ig {
    display: none;
  }
  .nav__social--phone {
    display: flex;
  }
  .nav__burger {
    display: flex;
    padding: 4px 0px 4px 4px;
    gap: 4px;
  }
  .nav__burger span {
    width: 20px;
    height: 1.5px;
  }
  .nav__lang {
    margin-left: auto;
    padding: 3px 7px;
    font-size: 0.75rem;
  }
  .nav__social {
    width: 28px;
    height: 28px;
  }
  .nav__social svg {
    width: 18px;
    height: 18px;
  }
  .nav__socials {
    gap: 4px;
  }

  .nav__menu {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #000000 !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 9999;
  }
  .nav__menu.open {
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu a {
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
  }

  .nav__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav__burger.active span:nth-child(2) {
    opacity: 0;
  }
  .nav__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .catalog__nav-tabs {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .catalog__nav-tab {
    padding: 6px 14px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }

  .catalog__tabs {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
    justify-content: center;
  }

  .catalog__tab {
    padding: 6px 14px;
    font-size: 0.85rem;
  }

  .catalog__cc-tabs {
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    margin-bottom: 24px;
    justify-content: center;
  }

  .catalog__cc-tab {
    padding: 5px 12px;
    font-size: 0.8rem;
  }

  .catalog__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card__body {
    padding: 14px;
  }

  .card__title {
    font-size: 1.1rem;
  }

  .card__price-value {
    font-size: 1.3rem;
  }

  .card__price-period {
    font-size: 0.85rem;
  }

  .card__price {
    margin-bottom: 12px;
  }

  .btn--sm {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .card__desc {
    display: none;
  }

  .modal__field--days {
    width: 65px;
  }

  .modal__input--days {
    font-size: 1.1rem;
    padding: 8px 4px;
  }

  .catalog__section-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    padding-bottom: 6px;
  }

  .catalog__section-title:not(:first-of-type) {
    margin-top: 30px;
  }

  .catalog__show-all {
    padding: 8px 20px;
    font-size: 0.8rem;
  }

  .contacts__grid {
    grid-template-columns: 1fr;
  }

  .footer__columns {
    flex-direction: column;
    gap: 32px;
  }


  .hero {
    justify-content: center;
    align-items: stretch;
  }
  .hero__overlay {
    background: rgba(0,0,0,0.62);
  }
  .hero__content {
    width: 100%;
    text-align: left;
    padding: 155px 20px 48px;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
  }
  .hero__title {
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 8px;
    max-width: 100%;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  }
  .hero__subtitle {
    font-size: 0.95rem;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 0;
    text-shadow: 0 1px 8px rgba(0,0,0,0.7);
  }
  .hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 110px;
  }
  .hero__buttons .btn {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 14px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    border-radius: 6px;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .catalog__nav-tab {
    padding: 5px 10px;
    font-size: 0.65rem;
    letter-spacing: 0.3px;
  }

  .catalog__tabs {
    flex-wrap: wrap;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .terms__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MODAL ===== */
body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--bg-card);
  border-radius: var(--radius);
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #fff;
  position: relative;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.modal__close:hover {
  background: var(--accent);
}

.modal__gallery {
  position: relative;
  min-height: 350px;
  background: #000;
  overflow: hidden;
}

.modal__gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 350px;
}

.modal__gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.modal__gallery-arrow:hover {
  background: #fff;
  color: #000;
}

.modal__gallery-arrow--prev {
  left: 10px;
}

.modal__gallery-arrow--next {
  right: 10px;
}

.modal__gallery-arrow.hidden {
  display: none;
}

.modal__gallery-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.modal__gallery-dots.hidden {
  display: none;
}

.modal__gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.modal__gallery-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.modal__info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 90vh;
}

.modal__title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.modal__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.modal__specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
}

.modal__specs span svg {
  flex-shrink: 0;
  opacity: 0.8;
}
.modal__specs span .spec-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: invert(1) brightness(2) contrast(2);
  opacity: 1;
  object-fit: contain;
}

.modal__price {
  display: none;
}

.modal__price-value {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--accent);
}

.modal__price-period {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.modal__desc {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal__cta {
  display: none;
}

.modal__cta--tg {
  background: #2aabee;
}

.modal__cta--tg:hover {
  background: #1e96d1;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42, 171, 238, 0.3);
}

.modal__cta--wa:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* ===== MODAL CONDITIONS ===== */
.modal__conditions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.modal__condition {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal__condition-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.modal__condition-text {
  font-size: 0.92rem;
  color: #fff;
  line-height: 1.3;
}

/* ===== MODAL BOOKING ===== */
.modal__booking {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.modal__duration {
  margin-bottom: 12px;
}

.modal__duration-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.modal__duration-tabs {
  display: flex;
  gap: 6px;
}

.modal__duration-tab {
  flex: 1;
  padding: 8px 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.modal__duration-tab:hover {
  border-color: #fff;
  color: #fff;
}

.modal__duration-tab.active {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.modal__days-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.modal__field--days {
  flex-shrink: 0;
  width: 90px;
}

.modal__input--days {
  text-align: center;
  font-weight: 700;
  font-size: 1.3rem;
  -moz-appearance: textfield;
}

.modal__input--days::-webkit-outer-spin-button,
.modal__input--days::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.modal__price-summary {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
}

.modal__price-per-day {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.modal__price-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 1rem;
  color: #fff;
}

.modal__total-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.modal__dynamic-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.modal__dynamic-price-value {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--text-muted);
}

.modal__dynamic-price-period {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.modal__dynamic-price-discount {
  font-size: 0.9rem;
  font-weight: 700;
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  display: none;
}

.modal__dynamic-price-discount.visible {
  display: inline-block;
}

/* ===== MODAL EXTRAS ===== */
.modal__extras {
  margin-bottom: 14px;
}

.modal__extras-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.modal__extras-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.modal__extra {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
  overflow: hidden;
}

.modal__extra:hover {
  border-color: #fff;
}

.modal__extra:has(.modal__extra-check:checked) {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.modal__extra-check {
  width: 16px;
  height: 16px;
  accent-color: #fff;
  flex-shrink: 0;
  cursor: pointer;
}

.modal__extra-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.modal__extra-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.modal__extra-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.2;
}

.modal__extra-price {
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
}

.modal__form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.modal__field {
  position: relative;
}

.modal__field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal__input {
  width: 100%;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  transition: border-color var(--transition);
}

.modal__input:focus {
  outline: none;
  border-color: #fff;
}

.modal__input::placeholder {
  color: var(--text-dim);
}

.modal__phone-row {
  display: flex;
  gap: 8px;
}

.modal__phone-code {
  width: 72px;
  flex-shrink: 0;
  padding: 8px 4px;
  font-size: 0.8rem;
}

.modal__phone-number {
  flex: 1;
}

/* ===== CUSTOM DATE PICKER ===== */
.datepicker {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  z-index: 100;
  margin-top: 4px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.datepicker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.datepicker__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.datepicker__nav {
  background: none;
  border: 1px solid #333;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: inherit;
}

.datepicker__nav:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.datepicker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.datepicker__day-name {
  font-size: 0.7rem;
  color: #666;
  font-weight: 600;
  padding: 4px 0;
  text-transform: uppercase;
}

.datepicker__day {
  background: none;
  border: none;
  color: #ccc;
  font-size: 0.85rem;
  font-family: inherit;
  padding: 8px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.datepicker__day:hover:not(.datepicker__day--disabled):not(.datepicker__day--empty) {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.datepicker__day--today {
  border: 1px solid #fff;
  color: #fff;
  font-weight: 700;
}

.datepicker__day--disabled {
  color: #333;
  cursor: default;
}

.datepicker__day--empty {
  cursor: default;
}

.modal__input.error {
  border-color: var(--accent);
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.modal__book-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition);
}

.modal__book-btn:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 0, 0, 0.3);
}

.modal__book-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.modal__book-btn.success {
  background: #1a8c1a;
  border-color: #1a8c1a;
}

.modal__book-btn.error-btn {
  background: #666;
  border-color: #666;
}

@media (max-width: 768px) {
  .modal {
    grid-template-columns: 1fr;
    max-height: 95vh;
    overflow-y: auto;
  }

  .modal__gallery {
    min-height: 250px;
    max-height: 300px;
  }

  .modal__gallery-img {
    min-height: 250px;
    max-height: 300px;
  }

  .modal__info {
    padding: 24px;
    overflow-y: visible;
    max-height: none;
  }

  .modal__close {
    background: rgba(0, 0, 0, 0.8);
  }

  .modal__conditions {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .modal__duration-tabs {
    flex-wrap: wrap;
  }

  .modal__duration-tab {
    flex: 1 1 calc(50% - 3px);
  }

  .modal__extras-list {
    grid-template-columns: 1fr;
  }

  .modal__form-fields {
    grid-template-columns: 1fr;
  }
}

