

:root {

  
  --primary:        #1A8CD8;
  --primary-rgb:    26, 140, 216;
  --primary-dark:   #1267A8;
  --primary-dark-rgb: 18, 103, 168;
  --primary-light:  #4AABEB;

  
  --accent:         #F5A623;
  --accent-rgb:     245, 166, 35;
  --accent-dark:    #D48A10;

  
  --white:          #ffffff;
  --light-bg:       #F0F7FF;
  --text-dark:      #1a1a2e;
  --text-muted:     #6c757d;
  --border:         #c8dff5;

  
  --shadow:         0 8px 32px rgba(var(--primary-rgb), 0.10);
  --shadow-hover:   0 18px 50px rgba(var(--primary-rgb), 0.20);
  --radius:         15px;
  --radius-pill:    50px;

  
  --footer-bg:      #0a1a2e;
  --hero-dark:      #060f1a;
  --page-hero-height: 320px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  color: var(--text-dark);
  background: var(--white);
}

p { margin-bottom: 0; font-size: 15px; color: var(--text-muted); line-height: 1.8; }
a { text-decoration: none !important; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; }
img { max-width: 100%; }

.btn-primary-k {
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary-k:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-accent-k {
  background: var(--accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-accent-k:hover {
  background: var(--accent-dark);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.5);
}

.btn-outline-k {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-outline-k:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

.btn-outline-primary-k {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-outline-primary-k:hover { background: var(--primary); color: var(--white); }

.section-heading { text-align: center; margin-bottom: 60px; }
.section-heading h2 { font-size: 38px; font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 15px; }
.section-heading h2 em { font-style: normal; color: var(--primary); }
.section-heading p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 15px;
}

#preloader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease;
}
.preloader-icon { width: 350px; height: 350px; object-fit: contain; margin-bottom: 28px; animation: preloaderPulse 1.2s ease-in-out infinite; }
@keyframes preloaderPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.85; } }
.preloader-dots { display: flex; gap: 10px; }
.preloader-dots div {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  animation: preloaderBounce 1s ease-in-out infinite;
}
.preloader-dots div:nth-child(2) { animation-delay: 0.18s; }
.preloader-dots div:nth-child(3) { animation-delay: 0.36s; }

@keyframes preloaderBounce {
  0%, 100% { background: rgba(255, 255, 255, 0.3); transform: scale(0.8); }
  50%       { background: var(--accent); transform: scale(1.25); }
}

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 20px;
  transition: all 0.35s ease;
}
header.scrolled { padding: 8px 20px; }

.navbar-contacts {
  display: flex; align-items: center; gap: 14px;
  margin-left: 18px; padding-left: 18px;
  border-left: 1px solid rgba(var(--primary-rgb), 0.2);
}
.navbar-contacts .nc-phone { font-size: 13px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.navbar-contacts .nc-hours { font-size: 11px; color: var(--text-muted); white-space: nowrap; }
.navbar-contacts .nc-icons { display: flex; gap: 6px; }
.navbar-contacts .nc-icons a { width: 28px; height: 28px; border-radius: 50%; background: rgba(var(--primary-rgb), 0.08); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all 0.2s; }
.navbar-contacts .nc-icons a:hover { background: var(--accent); color: var(--white); }
@media (max-width: 991px) { .navbar-contacts { display: none; } }

.navbar {
  background: rgba(255, 255, 255, 1) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  padding: 8px 22px;
  box-shadow: 0 4px 24px rgba(var(--primary-rgb), 0.14);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.35s ease;
  max-width: 1320px;
  margin: 0 auto;
}
header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(var(--primary-rgb), 0.18);
}

.navbar-brand { padding: 4px 0; }
.navbar-brand .logo-text { color: var(--primary); letter-spacing: 0; line-height: 1.2; }
.navbar-brand .logo-text span { color: var(--accent); }
.navbar-brand .logo-sub { font-size: 9px; color: rgba(var(--primary-rgb), 0.5); letter-spacing: 2px; text-transform: uppercase; display: block; margin-top: 0; }

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 13px !important;
  border-radius: 25px;
  transition: all 0.25s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: var(--primary) !important;
  background: rgba(var(--primary-rgb), 0.08);
}

.navbar .dropdown-menu {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 16px 44px rgba(var(--primary-rgb), 0.16);
  margin-top: 8px;
  min-width: 215px;
}
.navbar .dropdown-item {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: 10px;
  transition: all 0.2s;
}
.navbar .dropdown-item:hover { background: var(--light-bg); color: var(--primary); }

.navbar-toggler { border: 2px solid rgba(var(--primary-rgb), 0.4); border-radius: 10px; padding: 6px 10px; background: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231A8CD8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler:focus { box-shadow: none; outline: none; }

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px; padding: 15px; margin-top: 10px;
  }
  .navbar-nav .nav-link { padding: 10px 14px !important; }
  .navbar .dropdown-menu { background: var(--light-bg); border: none; box-shadow: none; padding: 4px 0 4px 15px; margin-top: 0; border-radius: 10px; }
}

.navbar-brand .logo-text,
.footer-brand .logo-text {
  font-family: 'Alex Brush', cursive;
  font-weight: 400;
  letter-spacing: 0;
}
.navbar-brand .logo-text { font-size: 40px; }
.footer-brand .logo-text { font-size: 30px; }

.hero-section {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-shapes span {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,0.04);
}
.hero-shapes span:nth-child(1) { width: 650px; height: 650px; top: -160px; right: -120px; }
.hero-shapes span:nth-child(2) { width: 420px; height: 420px; bottom: -100px; left: -90px; }
.hero-shapes span:nth-child(3) { width: 220px; height: 220px; top: 42%; right: 18%; background: rgba(var(--accent-rgb), 0.05); }

.hero-content {
  position: relative; z-index: 2;
  padding: 145px 0 65px;
  flex: 1; display: flex; align-items: center;
}

.hero-video-bg { background: var(--hero-dark); }

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2));
  z-index: 1;
}
.hero-video-bg .hero-shapes  { z-index: 1; }
.hero-video-bg .hero-content { z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ffffff;
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  color: var(--accent);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 30px; margin-bottom: 24px;
}

.hero-title { font-size: 58px; font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 22px; }
.hero-title .hl { color: var(--accent); }
.hero-subtitle { font-size: 17px; color: rgba(255, 255, 255, 1); line-height: 1.8; margin-bottom: 38px; max-width: 530px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-stats { display: flex; gap: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-stat .num { font-size: 32px; font-weight: 900; color: var(--accent); line-height: 1; display: block; white-space: nowrap; }
.hero-stat .lbl { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; display: block; margin-top: 5px; }

.search-band {
  background: #fff;
  padding: 22px 0 26px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.11);
  position: relative;
  z-index: 5;
}

.search-widget { background: var(--white); border-radius: 22px; padding: 30px; box-shadow: 0 28px 72px rgba(0,0,0,0.32); }
.search-widget h3 { font-size: 19px; font-weight: 700; color: var(--text-dark); margin-bottom: 5px; }
.search-widget h3 span { color: var(--primary); }
.search-widget .sub { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }
.tourvisor-area {
  background: var(--light-bg); border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 40px 20px; text-align: center;
}
.tourvisor-area .tv-icon { font-size: 38px; color: var(--primary); opacity: 0.4; display: block; margin-bottom: 14px; }
.tourvisor-area .tv-text { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.tourvisor-area .tv-note { font-size: 11px; color: var(--text-muted); opacity: 0.7; margin-top: 5px; }

.tours-section { padding: 90px 0; background: var(--light-bg); }
.tour-card { background: var(--white); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.35s ease; height: 100%; display: flex; flex-direction: column; }
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.tour-card .card-img { position: relative; overflow: hidden; }
.tour-card .card-img img { width: 100%; height: 215px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.tour-card:hover .card-img img { transform: scale(1.06); }
.card-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 6px; }
.badge-hot { background: #FF4757; color: var(--white); font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; display: inline-block; min-width: 68px; text-align: center; }
.badge-sale { background: var(--accent); color: var(--primary-dark); font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; display: inline-block; min-width: 68px; text-align: center; }
.tour-card .card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.tour-card .country { font-size: 11px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 7px; }
.tour-card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; line-height: 1.4; }
.tour-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; font-size: 12px; color: var(--text-muted); }
.tour-meta span { display: flex; align-items: center; gap: 5px; }
.tour-meta i { color: var(--primary); }
.price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.price { font-size: 21px; font-weight: 800; color: var(--primary); }
.price-label { font-size: 11px; color: var(--text-muted); font-weight: 400; display: block; }

.tours-carousel-wrap { position: relative; padding: 0 10px; }
.tours-carousel {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 10px 4px 20px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.tours-carousel::-webkit-scrollbar { display: none; }
.tour-slide {
  flex: 0 0 calc(33.333% - 16px); min-width: 280px;
  scroll-snap-align: start;
}
@media (max-width: 991px) { .tour-slide { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 600px)  { .tour-slide { flex: 0 0 100%; } }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  color: var(--primary); font-size: 16px; cursor: pointer;
  box-shadow: var(--shadow); z-index: 5; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }

.howto-section {
  padding: 90px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.50)),
    url('../images/main-page-bg/facts-bg.png') center / cover fixed;
  background-color: var(--primary-dark);
}
.howto-section .container { position: relative; z-index: 1; }
.howto-icon-top { font-size: 52px; color: var(--white); opacity: 0.45; text-align: center; margin-bottom: 20px; display: block; }
.howto-title { text-align: center; font-size: 36px; font-weight: 800; color: var(--white); margin-bottom: 60px; }
.howto-row { display: flex; align-items: flex-start; justify-content: center; gap: 0; position: relative; margin-bottom: 40px; }
.howto-step { flex: 1; text-align: center; position: relative; padding: 0 10px; max-width: 200px; }
.howto-num {
  width: 60px; height: 60px; border-radius: 50%;
  border: 2px solid var(--accent); color: var(--accent);
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; background: rgba(255,255,255,0.08);
  position: relative; z-index: 2;
}
.howto-step h5 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.howto-step p { font-size: 13px; color: rgba(255,255,255,1); line-height: 1.6; }
.howto-arrow {
  flex: 0 0 60px; align-self: center;
  border-top: 2px dashed rgba(255, 255, 255, 0.25);
  margin-top: -30px;
}
@media (max-width: 767px) {
  .howto-row { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .howto-arrow { display: none; }
  .howto-step { flex: 0 0 140px; }
}

.dest-section { padding: 70px 0; background: var(--light-bg); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 14px;
}
.dest-card {
  position: relative; border-radius: 18px; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
}
.dest-card:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dest-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,0.62) 0%, transparent 100%);
}
.dest-card-body h4 { font-size: 16px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.dest-card-body .from { font-size: 11px; color: rgba(255,255,255,0.75); }
.dest-card-body .price { font-size: 14px; font-weight: 700; color: var(--accent); margin-top: 4px; }
.dest-russia      { grid-column: 1; grid-row: 1; }
.dest-sochi       { grid-column: 2; grid-row: 1; }
.dest-turkey      { grid-column: 3; grid-row: 1 / 3; }
.dest-alanya      { grid-column: 4; grid-row: 1; }
.dest-abkhazia    { grid-column: 1 / 3; grid-row: 2; }
.dest-azerbaijan  { grid-column: 4; grid-row: 2; }
@media (max-width: 991px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 170px); }
  .dest-russia { grid-column: 1; grid-row: 1; }
  .dest-sochi  { grid-column: 2; grid-row: 1; }
  .dest-turkey { grid-column: 1; grid-row: 2; }
  .dest-alanya { grid-column: 2; grid-row: 2; }
  .dest-abkhazia { grid-column: 1; grid-row: 3; }
  .dest-azerbaijan { grid-column: 2; grid-row: 3; }
}
@media (max-width: 576px) {
  .dest-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 160px); }
  .dest-russia { grid-row: 1; }
  .dest-sochi  { grid-row: 2; }
  .dest-turkey { grid-column: 1; grid-row: 3; }
  .dest-alanya { grid-column: 1; grid-row: 4; }
  .dest-abkhazia { grid-column: 1; grid-row: 5; }
  .dest-azerbaijan { grid-column: 1; grid-row: 6; }
}

.advantages-section { padding: 90px 0; background: var(--white); }
.advantage-item { padding: 30px 24px; border-radius: 18px; text-align: center; transition: all 0.3s ease; border: 1.5px solid transparent; }
.advantage-item:hover { background: var(--light-bg); border-color: var(--border); transform: translateY(-5px); }
.advantage-icon { width: 76px; height: 76px; border-radius: 22px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 30px; color: var(--white); box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.3); }
.advantage-item h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.advantage-item p { font-size: 13px; line-height: 1.7; }

.about-section {
  padding: 90px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.3)),
    url('../images/main-page-bg/about-main-bg.png') center / cover fixed;
  background-color: var(--primary-dark);
}
.about-img-wrap { position: relative; padding-bottom: 40px; }
.about-img-main { border-radius: 22px; width: 100%; height: 430px; object-fit: cover; box-shadow: 0 20px 60px rgba(0,0,0,0.5); display: block; }
.about-float-badge {
  position: absolute; bottom: 0; left: -15px;
  background: var(--accent); color: var(--primary-dark);
  border-radius: 18px; padding: 20px 26px;
  box-shadow: 0 12px 32px rgba(var(--accent-rgb), 0.4);
  min-width: 140px; text-align: center;
}
.about-float-badge .num { font-size: 44px; font-weight: 900; line-height: 1; display: block; }
.about-float-badge .txt { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-top: 4px; }
.about-text { padding-left: 40px; }
.about-text h2 { font-size: 40px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 18px; }
.about-text h2 em { font-style: normal; color: var(--accent); }
.about-text > p { font-size: 15px; line-height: 1.85; margin-bottom: 20px; color: rgba(255, 255, 255, 1); }
.about-checklist li { padding: 7px 0 7px 26px; position: relative; color: rgba(255,255,255,1); font-size: 14px; line-height: 1.6; }
.about-checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.about-text .section-tag { background: rgba(var(--accent-rgb), 0.2); color: var(--accent); }

.lead-section {
  padding: 90px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.10)),
    url('../images/main-page-bg/lead.png') center / cover fixed;
  background-color: var(--primary-dark);
  position: relative; overflow: hidden;
}
.lead-section::before { content: ''; position: absolute; width: 550px; height: 550px; border-radius: 50%; background: rgba(255,255,255,0.04); top: -160px; right: -100px; }
.lead-text h2 { font-size: 42px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 15px; }
.lead-text h2 span { color: var(--accent); }
.lead-text p { color: rgba(255, 255, 255, 1); font-size: 16px; margin-bottom: 28px; }
.lead-checklist { display: flex; flex-direction: column; gap: 12px; }
.lead-checklist li { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 1); font-size: 14px; }
.lead-checklist li i { color: var(--accent); font-size: 16px; min-width: 18px; }

.lead-form-card {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  padding: 40px 36px;
}
.lead-form-card h3 { font-size: 21px; font-weight: 700; color: var(--white); margin-bottom: 25px; }
.lead-form-card .form-control {
  background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.22); border-radius: 12px;
  padding: 13px 16px; color: var(--white); font-size: 14px; margin-bottom: 13px; transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.lead-form-card .form-control::placeholder { color: rgba(255,255,255,0.55); }
.lead-form-card .form-control:focus { background: rgba(255,255,255,1); border-color: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.16); color: var(--text-dark); outline: none; }
.lead-form-card .form-control:focus::placeholder { color: var(--text-muted); }
.form-consent { font-size: 11px; color: rgba(255,255,255,0.48); line-height: 1.6; margin-bottom: 14px; }
.form-consent a { color: var(--accent); }
.form-consent input[type="checkbox"] { margin-right: 7px; cursor: pointer; }
.form-consent label { cursor: pointer; }

.testimonials-section { padding: 90px 0; background: var(--white); }
.testimonial-card { background: var(--light-bg); border-radius: 20px; padding: 32px 28px; height: 100%; position: relative; transition: all 0.3s ease; }
.testimonial-card:hover { background: var(--white); box-shadow: var(--shadow); }
.t-quote { font-size: 72px; color: var(--primary); opacity: 0.12; line-height: 1; font-family: Georgia, serif; position: absolute; top: 12px; left: 18px; }
.t-stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14px; line-height: 1.85; color: var(--text-muted); margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--border); padding-top: 18px; }
.t-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 18px; font-weight: 700; min-width: 48px; }
.t-author h5 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.t-author span { font-size: 12px; color: var(--text-muted); }

.callback-section { padding: 90px 0; background: var(--light-bg); }
.callback-card { background: var(--white); border-radius: 24px; padding: 50px; box-shadow: var(--shadow); }
.callback-card .form-control {
  border: 1.5px solid var(--border); border-radius: 12px; padding: 13px 16px;
  font-size: 14px; transition: all 0.3s; background: var(--light-bg);
  font-family: 'Poppins', sans-serif;
}
.callback-card .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1); background: var(--white); outline: none; }
.form-consent-dark { font-size: 11px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.form-consent-dark a { color: var(--primary); }
.form-consent-dark input[type="checkbox"] { margin-right: 7px; cursor: pointer; }
.form-consent-dark label { cursor: pointer; }

footer { background: var(--footer-bg); padding: 70px 0 0; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: var(--accent); }
.footer-brand .logo-sub { font-size: 9px; color: rgba(255,255,255,0.32); letter-spacing: 2px; text-transform: uppercase; display: block; margin-top: 2px; margin-bottom: 16px; }
.footer-brand > p { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.8; margin-bottom: 22px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all 0.2s; }
.footer-social a:hover { background: var(--accent); color: var(--primary-dark); }
footer h5 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.42); font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.48); font-size: 13px; margin-bottom: 13px; line-height: 1.55; }
.footer-contact-list li i { color: var(--accent); font-size: 14px; margin-top: 2px; min-width: 16px; }
.footer-bottom { background: rgba(0,0,0,0.2); padding: 18px 0; margin-top: 50px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

.page-hero {
  background:
    linear-gradient(160deg, rgba(18, 103, 168, 0.82) 0%, rgba(6, 15, 26, 0.72) 100%),
    url('../images/page-hero-bg.jpg') center / cover no-repeat;
  min-height: var(--page-hero-height);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px 0 36px;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(255,255,255,0.04); top: -110px; right: -110px; }
.page-hero h1 { font-size: 46px; font-weight: 800; color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.page-hero .breadcrumb { background: none; padding: 0; margin: 0; position: relative; z-index: 1; }
.page-hero .breadcrumb-item { font-size: 13px; color: rgba(255,255,255,0.48); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.85); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.28); }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb-item a:hover { color: var(--accent); }

.page-hero.hero-about       { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/about.png'); }
.page-hero.hero-reviews     { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/reviews.png'); }
.page-hero.hero-requisites  { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/requisites.png'); }
.page-hero.hero-hot-tours   { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/hot-tours.png'); }
.page-hero.hero-family-tours { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/family-tours.png'); }
.page-hero.hero-russia-tours { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/russia-tours.png'); }
.page-hero.hero-price-calendar { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/price-calendar.png'); }
.page-hero.hero-tour-selection { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/tour-selection.png'); }
.page-hero.hero-visa        { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/visa.png'); }
.page-hero.hero-insurance   { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/insurance.png'); }
.page-hero.hero-corporate   { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/corporate.png'); }
.page-hero.hero-purchase-rules { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/purchase-rules.png'); }
.page-hero.hero-contract    { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/contract.png'); }
.page-hero.hero-payment     { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/payment.png'); }
.page-hero.hero-installment { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/installment.png'); }
.page-hero.hero-faq         { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/faq.png'); }
.page-hero.hero-contacts    { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/contacts.png'); }
.page-hero.hero-privacy     { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/privacy.png'); }
.page-hero.hero-terms       { background-image: linear-gradient(rgba(0, 0, 0, 0.3)), url('../images/heroes/terms.png'); }

.page-content { padding: 80px 0; }
.page-content h2 { font-size: 32px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
.page-content h3 { font-size: 21px; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; margin-top: 35px; }
.page-content p { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.page-content ul { margin-bottom: 16px; }
.page-content ul li { padding: 6px 0 6px 22px; position: relative; color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.page-content ul li::before { content: '•'; position: absolute; left: 0; color: var(--primary); font-weight: 900; }

.info-box { background: var(--light-bg); border-left: 4px solid var(--primary); border-radius: 0 12px 12px 0; padding: 20px 25px; margin: 24px 0; }
.info-box.accent { border-color: var(--accent); background: rgba(var(--accent-rgb), 0.06); }
.info-box p { margin: 0; font-size: 14px; line-height: 1.7; }

.service-card { background: var(--white); border-radius: 18px; padding: 34px 28px; border: 1.5px solid var(--border); transition: all 0.3s ease; height: 100%; }
.service-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-card-icon { width: 62px; height: 62px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 24px; margin-bottom: 22px; box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.25); }
.service-card h4 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.service-card p { font-size: 13px; line-height: 1.8; }

.faq-item { border: 1.5px solid var(--border); border-radius: 14px; margin-bottom: 11px; overflow: hidden; transition: all 0.3s; }
.faq-item.active { border-color: var(--primary); box-shadow: 0 4px 18px rgba(var(--primary-rgb), 0.1); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; background: var(--white); user-select: none; }
.faq-question h5 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin: 0; line-height: 1.4; }
.faq-item.active .faq-question h5 { color: var(--primary); }
.faq-toggle { width: 34px; height: 34px; border-radius: 50%; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary); transition: all 0.3s; min-width: 34px; font-weight: 300; line-height: 1; }
.faq-item.active .faq-toggle { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; background: var(--white); display: none; }
.faq-answer p { font-size: 14px; line-height: 1.85; color: var(--text-muted); margin: 0; }

.payment-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.payment-table th { background: var(--primary); color: var(--white); padding: 16px 20px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.payment-table td { padding: 14px 20px; font-size: 14px; color: var(--text-muted); background: var(--white); border-bottom: 1px solid var(--border); vertical-align: middle; }
.payment-table tr:last-child td { border-bottom: none; }
.payment-table tr:hover td { background: var(--light-bg); }
.payment-table .icon-cell { font-size: 20px; color: var(--primary); text-align: center; }

.cta-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 55px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -180px; right: -100px; pointer-events: none;
}
.cta-strip h2 { font-size: 34px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.72); font-size: 15px; margin-bottom: 26px; }

.contacts-section { padding: 80px 0; }
.office-card { background: var(--white); border-radius: 20px; padding: 35px; border: 1.5px solid var(--border); transition: all 0.3s ease; }
.office-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.office-card h4 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.office-info li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-muted); font-size: 14px; margin-bottom: 14px; line-height: 1.5; }
.office-info li i { color: var(--primary); font-size: 15px; margin-top: 2px; min-width: 16px; }
.map-embed { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: none; }

.map-section { padding: 80px 0; background: var(--light-bg); }
.map-contact-card {
  background: var(--white);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.map-contact-item { display: flex; align-items: flex-start; gap: 16px; }
.map-contact-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.09);
  color: var(--primary); font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.map-contact-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 3px; }
.map-contact-value { font-size: 14px; font-weight: 600; color: var(--text-dark); line-height: 1.5; }
.map-contact-value a { color: var(--text-dark); text-decoration: none; }
.map-contact-value a:hover { color: var(--primary); }
.map-contact-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 10px; }

.req-table { width: 100%; }
.req-table tr td { padding: 13px 16px; font-size: 14px; border-bottom: 1px solid var(--border); }
.req-table tr:last-child td { border-bottom: none; }
.req-table tr td:first-child { color: var(--text-muted); width: 42%; font-weight: 500; }
.req-table tr td:last-child { color: var(--text-dark); font-weight: 600; }

.modal-content { border-radius: 22px; border: none; }
.modal-success { text-align: center; padding: 45px 30px; }
.modal-success-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 30px; color: var(--white); }
.modal-success h4 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.modal-success p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 1199px) { .hero-title { font-size: 48px; } }
@media (max-width: 991px) {
  header { top: 0; padding: 10px 15px; }
  header.scrolled { padding: 8px 15px; }
  .hero-title { font-size: 36px; }
  .hero-stats { gap: 22px; }
  .hero-stat .num { font-size: 26px; }
  .section-heading h2 { font-size: 30px; }
  .about-text { padding-left: 0; margin-top: 30px; }
  .about-float-badge { left: 0; }
  .lead-text { margin-bottom: 38px; }
  .lead-text h2 { font-size: 32px; }
  .callback-card { padding: 35px 25px; }
  .page-hero { padding: 70px 0 28px; }
  .page-hero h1 { font-size: 34px; }
}
@media (max-width: 767px) {
  .hero-content { padding: 115px 0 45px; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 15px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stat { width: 45%; }
  .section-heading h2 { font-size: 26px; }
  .about-float-badge { display: none; }
  .lead-text h2 { font-size: 26px; }
  .page-hero h1 { font-size: 26px; }
  .lead-form-card { padding: 28px 22px; }
  .callback-card { padding: 25px 18px; }
}

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990;
  background: #1a1a2e; color: rgba(255,255,255,0.88);
  padding: 14px 28px;
  display: none; align-items: center; justify-content: space-between;
  gap: 20px; font-size: 13px; line-height: 1.5;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.25);
}
.cookie-banner.visible { display: flex; }
.cookie-banner p { margin: 0; }
.cookie-banner a { color: #4AABEB; text-decoration: underline; }
.cookie-banner a:hover { color: #fff; }
.cookie-btn {
  padding: 8px 24px; background: #1A8CD8; color: #fff; border: none;
  border-radius: 50px; cursor: pointer; font-size: 13px; font-family: 'Poppins', sans-serif;
  font-weight: 600; white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s;
}
.cookie-btn:hover { background: #1267A8; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px 18px; }
}

.tv-button-wrapper .tv-button,
[class*="tv-free-button"] .tv-btn,
.tv-free-btn {
  background: var(--primary) !important;
  border-radius: 50px !important;
  font-family: 'Poppins', sans-serif !important;
  box-shadow: 0 4px 18px rgba(26,140,216,0.4) !important;
}
.tv-button-wrapper .tv-button:hover,
[class*="tv-free-button"] .tv-btn:hover {
  background: var(--primary-dark) !important;
}

.dest-quick-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 18px 10px; border-radius: 16px;
  background: var(--white); border: 2px solid var(--border);
  text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 13px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-align: center;
}
.dest-quick-card:hover {
  border-color: var(--primary); box-shadow: 0 6px 24px rgba(26,140,216,0.15);
  transform: translateY(-3px); color: var(--primary); text-decoration: none;
}
.dest-flag { font-size: 32px; line-height: 1; }

.tv-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2),
              transform 0.65s cubic-bezier(.22,.68,0,1.2);
}
.tv-reveal.tv-in {
  opacity: 1;
  transform: translateY(0);
}

.tv-cta-block {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  padding: 10px 0;
}
.tv-cta-block .btn-accent-k,
.tv-cta-block .btn-primary-k {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; font-size: 15px; font-weight: 600;
  border-radius: 50px; cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.tv-cta-block .btn-accent-k {
  background: var(--accent); color: #fff; border: none;
  box-shadow: 0 6px 20px rgba(255,95,31,0.30);
}
.tv-cta-block .btn-accent-k:hover { background: #e04a0a; transform: translateY(-2px); }
.tv-cta-block .btn-primary-k {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.tv-cta-block .btn-primary-k:hover {
  background: var(--primary); color: #fff; text-decoration: none; transform: translateY(-2px);
}
.tv-cta-actions {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.tv-cta-phone-wrap { margin-top: 4px; }
.tv-cta-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 20px; font-weight: 700; color: var(--primary); text-decoration: none;
}
.tv-cta-phone:hover { color: var(--primary-dark); text-decoration: none; }
.tv-cta-note {
  font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.5;
}
@media (max-width: 576px) {
  .tv-cta-block .btn-accent-k,
  .tv-cta-block .btn-primary-k { width: 100%; justify-content: center; }
  .tv-cta-actions { flex-direction: column; align-items: stretch; }
}

.lnd-minprice-section {
  padding: 40px 24px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
