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

:root {
  --white: #FFFFFF;
  --sky-light: #EBF5FF;
  --sky: #5BA4CF;
  --sky-mid: #3A86C8;
  --navy: #1B4F8A;
  --green-light: #C5E3F7;
  --green: #5BA4CF;
  --green-mid: #3A86C8;
  --green-dark: #1B4F8A;
  --forest: #0D2B4E;
  --teal: #74C0FC;
  --text: #1C2B3A;
  --text-mid: #4A6070;
  --text-muted: #8A9BB0;
  --accent: #3A86C8;
  --accent-green: #3A86C8;
  --navbar-h: 80px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Nunito', 'Montserrat', sans-serif;
  background: #F0F7FF;
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

main,
section,
.section-content,
.navbar-inner,
.navbar-right,
.hero-content,
.hero-actions,
.cards-grid,
.fleet-grid,
.services-grid,
.reviews-grid,
.whychoose-grid,
.contacts-layout,
.contacts-reviews,
.contacts-reviews-list,
.contact-item,
.footer-inner,
.exc-detail-layout,
.exc-gallery-grid {
  min-width: 0;
}

.hero-title,
.hero-subtitle,
.hero-description,
.section-title,
.section-subtitle,
.whychoose-title,
.whychoose-desc,
.service-title,
.service-desc,
.contact-value,
.review-text {
  text-wrap: balance;
}

.hero-title,
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ============ TOP NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 24px rgba(27, 79, 138, 0.10);
  backdrop-filter: blur(12px);
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 24px rgba(27, 79, 138, 0.1);
  backdrop-filter: blur(12px);
}

.navbar-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 60px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: none;
  transition: transform 0.2s;
}



.navbar-logo:hover .navbar-logo-img {
  transform: scale(1.04);
}

.footer-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}


/* Nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.navbar-nav .nav-link {
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--transition);
  letter-spacing: 0.6px;
  position: relative;
  white-space: nowrap;
}

.navbar:not(.scrolled) .navbar-nav .nav-link {
  color: var(--text-mid);
  text-shadow: none;
}

.navbar.scrolled .navbar-nav .nav-link {
  color: var(--text-mid);
}

.navbar-nav .nav-link:hover {
  color: var(--navy);
  background: rgba(64, 145, 108, 0.07);
}

.navbar:not(.scrolled) .navbar-nav .nav-link:hover {
  color: var(--navy);
  background: rgba(27,79,138,0.07);
}

.navbar.scrolled .navbar-nav .nav-link:hover {
  color: var(--navy);
  background: rgba(64,145,108,0.07);
}

.navbar-nav .nav-link.active {
  color: var(--text-mid);
  font-weight: 700;
}

.navbar:not(.scrolled) .navbar-nav .nav-link.active {
  color: var(--text-mid);
}

.navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--text-mid);
}

.navbar-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.navbar:not(.scrolled) .navbar-phone {
  color: var(--navy);
  text-shadow: none;
}

.navbar.scrolled .navbar-phone {
  color: var(--navy);
}

.navbar-phone:hover {
  color: var(--green-mid);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 14px; right: 14px;
  height: 2px;
  background: var(--green-mid);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* Right side */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  margin-right: 20px;
}

.btn-nav {
  padding: 9px 20px;
  font-size: 12.5px;
  font-weight: 700;
  background: linear-gradient(135deg, #3A86C8, #5BA4CF);
  color: white !important;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 14px rgba(64, 145, 108, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  transform: translateY(0) scale(1);
  white-space: nowrap;
}

.btn-nav:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 26px rgba(64, 145, 108, 0.55);
}

/* Burger button */
.navbar-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}

.navbar-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar:not(.scrolled) .navbar-burger span { background: var(--navy); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--navbar-h);
  left: 0; right: 0;
  background: white;
  box-shadow: 0 8px 32px rgba(27,79,138,0.14);
  z-index: 999;
  padding: 16px 0 20px;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mob-link {
  display: block;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.mob-link:hover {
  color: var(--green-dark);
  background: rgba(64,145,108,0.06);
  border-left-color: var(--green);
}

.mob-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-top: 1px solid rgba(82,183,136,0.15);
  margin-top: 8px;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: rgba(64,145,108,0.12);
}
.mob-phone::before {
  content: "📞";
  font-size: 18px;
}
.mob-phone:active {
  background: rgba(64,145,108,0.08);
  color: var(--green-dark);
}

.mob-order-btn {
  margin: 10px 28px 0;
  width: calc(100% - 56px);
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #3A86C8, #5BA4CF);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 16px;
  cursor: pointer;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 998;
}

.mobile-overlay.visible { display: block; }

/* ============ MAIN ============ */
main { margin-top: 0; }

/* ============ SECTIONS ============ */
.section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* section-home height is controlled by aspect-ratio rules below */

.section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: background 0.6s;
}

.section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.section-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 60px 80px;
}

/* ============ HOME / HERO ============ */
.section-home {
  margin-top: var(--navbar-h);               /* starts strictly below the navbar */
  height: calc(100vw * 873 / 1903);          /* matches banner image proportions (1903×873) */
  min-height: 320px;
  max-height: calc(100vh - var(--navbar-h)); /* never taller than visible area */
  align-items: flex-start;
}

.section-home .section-bg {
  background-size: 100% auto;   /* default: fill width, height proportional; overridden by JS */
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #1B4F8A;
}

.section-home .section-bg.no-image {
  background-image: none !important;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(100deg, #1B4F8A 0%, #2E6FB5 40%, #3A9BD5 70%, #1B4F8A 100%) !important;
}

.section-home .section-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-home .section-overlay {
  background: linear-gradient(
    180deg,
    rgba(8,18,36,0.68) 0%,
    rgba(10,22,42,0.52) 30%,
    rgba(10,22,42,0.18) 58%,
    transparent 100%
  );
}

.hero-content {
  max-width: 680px;
  padding-top: 100px;
  padding-bottom: 60px;
  margin: 0 auto;
  text-align: center;
}


.title-accent { color: #7FDDAA; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #E8F5EE;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0,0,0,0.32), 0 1px 4px rgba(0,0,0,0.28);
  margin-bottom: 26px;
}

.hero-subtitle {
  font-size: clamp(15px, 1.9vw, 20px);
  font-weight: 400;
  color: #F3F7FA;
  text-shadow: 0 1px 8px rgba(0,0,0,0.28);
  margin-bottom: 20px;
  line-height: 1.55;
  white-space: pre-line;
}

.hero-description {
  font-size: 14.5px;
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0,0,0,0.58);
  line-height: 1.8;
  margin-bottom: 20px;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(8,18,34,0.26);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 16px 18px;
  border-radius: 16px;
  backdrop-filter: blur(4px);
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  margin-bottom: 56px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero-actions .btn {
  flex: 1;
  justify-content: center;
}

.hero-stats {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  padding: 20px 28px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(27,79,138,0.1);
  border: 1px solid rgba(82,183,136,0.2);
}

.stat { text-align: left; }

.stat-num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--green-mid);
  line-height: 1;
}

.stat-label {
  font-size: 10.5px;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 500;
}

.stat-divider { width: 1px; height: 38px; background: rgba(82,183,136,0.22); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: linear-gradient(135deg, #3A86C8, #5BA4CF);
  color: white;
  box-shadow: 0 4px 16px rgba(64,145,108,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(64,145,108,0.42);
}

.btn-outline {
  background: white;
  color: var(--navy);
  border: 2px solid rgba(27,79,138,0.18);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(82,183,136,0.15);
}

.btn-full { width: 100%; }

/* ============ SCROLL INDICATOR ============ */
.scroll-indicator {
  position: absolute;
  bottom: 34px; right: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
  animation: scrollBounce 2.5s infinite;
}

.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(45deg);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* ============ SECTION HEADER ============ */
.section-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--navy);
  line-height: 1.12;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 400;
  max-width: 560px;
  line-height: 1.65;
}

.section-header { margin-bottom: 50px; }

/* ============ UNIFIED GRADIENT WRAPPER ============ */
.unified-bg-wrap {
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(100deg, #1B4F8A 0%, #2E6FB5 40%, #3A9BD5 70%, #1B4F8A 100%);
}

/* ============ RAFFLE BANNER ============ */
.raffle-banner {
  background: transparent;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.raffle-banner::before {
  display: none; /* pattern now on wrapper */
}

.raffle-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.raffle-banner-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.raffle-banner-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

.raffle-banner-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.btn-raffle {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1a1a2e;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(255,165,0,0.45);
  flex-shrink: 0;
}

.btn-raffle:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(255,165,0,0.6);
}

@media (max-width: 768px) {
  .raffle-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    gap: 8px;
  }
  .raffle-banner-title { font-size: 18px; }
  .btn-raffle { width: 100%; text-align: center; }
  .raffle-banner-btn-wrap { width: 100%; gap: 4px; }
}

/* ============ RAFFLE PRIVACY NOTE ============ */
.raffle-banner-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.raffle-privacy-note {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1px;
}

.raffle-privacy-link {
  background: none;
  border: none;
  border-bottom: 1.5px solid rgba(255, 215, 0, 0.7);
  padding: 0 1px;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  color: #FFD700;
  text-decoration: none;
  font-family: inherit;
  transition: color 0.2s, border-color 0.2s;
}
.raffle-privacy-link:hover {
  color: #ffe566;
  border-bottom-color: #ffe566;
}

/* ============ PRIVACY POLICY MODAL ============ */
.privacy-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.privacy-modal-overlay.active {
  display: flex;
}

.privacy-modal {
  background: linear-gradient(155deg, #0D2B4E 0%, #1B4F8A 55%, #2E6FB5 100%);
  color: rgba(255,255,255,0.88);
  border-radius: 20px;
  max-width: 620px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 70px rgba(13,43,78,0.65), 0 0 0 1px rgba(91,164,207,0.18);
  scrollbar-width: thin;
  scrollbar-color: rgba(91,164,207,0.3) transparent;
}

.privacy-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.privacy-modal-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
}

.privacy-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
  padding-right: 40px;
  letter-spacing: 0.2px;
}

.privacy-modal-body p {
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}
.privacy-modal-body h3 {
  font-size: 14px;
  font-weight: 700;
  color: #74C0FC;
  margin: 22px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.privacy-modal-body ul {
  margin: 0 0 14px;
  padding-left: 20px;
}
.privacy-modal-body ul li {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.82);
}
.privacy-modal-body ul li::marker {
  color: #5BA4CF;
}
.privacy-modal-body a {
  color: #FFD700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,215,0,0.4);
  transition: border-color 0.2s;
}
.privacy-modal-body a:hover {
  border-color: #FFD700;
}
.privacy-modal-body strong {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 480px) {
  .privacy-modal {
    padding: 28px 20px;
    border-radius: 14px;
  }
  .privacy-modal-title { font-size: 18px; }
}

/* ============ PARTNERS BLOCK ============ */
.partners-block {
  background: transparent;
  padding: 8px 0 48px;
  position: relative;
  overflow: hidden;
}

.partners-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.partners-header {
  text-align: center;
  margin-bottom: 32px;
}

.partners-heading {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.partners-slider-wrap {
  overflow: visible;
}

.partners-viewport {
  overflow-x: hidden;
  overflow-y: visible;
  padding: 10px 0;
  margin: -10px 0;
}

.partners-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.partners-card {
  flex: 0 0 auto;
  width: auto;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
}

.partners-card-logo {
  height: 113px;
  width: auto;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
}

.partners-card-logo img {
  height: 100%;
  width: auto;
  display: block;
  padding: 12px;
  box-sizing: border-box;
}

.partners-logo-placeholder {
  font-size: 32px;
  font-weight: 700;
  color: #c0cfe0;
}

.partners-card-name {
  display: none; /* name hidden — shown in modal on click */
}

/* ============ PARTNERS MODAL ============ */
.partners-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.partners-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.partners-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.25s ease;
  position: relative;
}
.partners-modal-overlay.active .partners-modal {
  transform: translateY(0) scale(1);
}
.partners-modal-logo {
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  min-height: 130px;
}
.partners-modal-logo img {
  max-height: 120px;
  max-width: 100%;
  width: auto;
  display: block;
}
.partners-modal-logo-placeholder {
  font-size: 52px;
  font-weight: 700;
  color: #b8cfe0;
}
.partners-modal-body {
  padding: 24px 28px 28px;
}
.partners-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #1B4F8A;
  margin: 0 0 10px;
}
.partners-modal-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #4A6070;
  margin: 0;
}
.partners-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.08);
  color: #555;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.partners-modal-close:hover { background: rgba(0,0,0,0.15); }

/* Card becomes clickable */
.partners-card {
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.partners-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}

.partners-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.partners-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}

.partners-nav:hover { background: rgba(255,255,255,0.30); }

@media (max-width: 600px) {
  .partners-block { padding: 32px 0; }
  .partners-heading { font-size: 22px; }
  .partners-inner { padding: 0 12px; }
  .partners-nav { width: 36px; height: 36px; font-size: 15px; }
  .partners-card-logo { height: 80px; }
  .partners-card-name { font-size: 12px; }
  .partners-card { box-shadow: none; }
}

/* ============ EXCURSIONS ============ */
.section-excursions { background: var(--sky-light); }

.section-excursions .section-bg {
  background: linear-gradient(145deg, #EBF5FF 0%, #DCF0FF 100%);
}

.section-excursions .section-overlay { background: none; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 22px;
}

.card {
  --card-surface: #FFFFFF;
  --card-title-color: var(--navy);
  --card-desc-color: var(--text-mid);
  --card-muted-color: var(--text-muted);
  --card-price-color: var(--green-mid);
  --card-border: rgba(82,183,136,0.10);
  --card-badge-bg: var(--sky-light);
  background: var(--card-surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,79,138,0.07);
  border: 1px solid var(--card-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(27,79,138,0.13);
}

.card-img { width: 100%; height: 195px; object-fit: cover; display: block; }

.card-img-placeholder {
  width: 100%; height: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}

.card-img-placeholder.exc1 { background: linear-gradient(135deg, #87CEEB, #A8D8EA); }
.card-img-placeholder.exc2 { background: linear-gradient(135deg, #5BA4CF, #93C7E6); }
.card-img-placeholder.exc3 { background: linear-gradient(135deg, #74C0FC, #5BA4CF); }
.card-img-placeholder.exc4 { background: linear-gradient(135deg, #A8D8EA, #74C0FC); }

.card-body { padding: 20px; }

.card-title { font-size: 16.5px; font-weight: 700; color: var(--card-title-color); margin-bottom: 8px; }

.card-desc { font-size: 13px; color: var(--card-desc-color); line-height: 1.65; margin-bottom: 14px; }

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 13px;
  border-top: 1px solid var(--card-border);
}

.card-price { color: var(--card-price-color); font-weight: 700; font-size: 14.5px; }

.card-duration {
  font-size: 11.5px;
  color: var(--card-muted-color);
  background: var(--card-badge-bg);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* ============ FLEET ============ */
.section-fleet { background: white; }
.section-fleet .section-bg { background: white; }
.section-fleet .section-overlay { background: none; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fleet-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #111;
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.18);
}

.fleet-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d0e8f5, #BDD9F2);
}

.fleet-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.fleet-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}

.fleet-card-topline {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  z-index: 2;
}

.fleet-name-overlay {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  background: rgba(0,0,0,0.28);
  padding: 5px 12px;
  border-radius: 8px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 56px);
}


/* ============ FLEET DETAIL MODAL ============ */
.fleet-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 3100;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.fleet-detail-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.fleet-detail-sheet {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.fleet-detail-overlay.open .fleet-detail-sheet {
  transform: scale(1) translateY(0);
}
.fleet-detail-close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.fleet-detail-close:hover { background: rgba(0,0,0,0.75); }
.fleet-detail-slider {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  background: #f0f2f5;
  overflow: hidden;
  /* height is set by JS to match natural image proportions */
}
.fleet-detail-slider.has-image { cursor: zoom-in; }
.fleet-detail-slider-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
}
.fleet-detail-emoji {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  background: linear-gradient(135deg, #87CEEB, #5BA4CF);
}
.fleet-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
  border: none;
  font-size: 28px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background 0.2s;
  line-height: 1;
  z-index: 10;
}
.fleet-slider-btn.visible { display: flex; }
.fleet-slider-btn:hover { background: white; }
.fleet-slider-prev { left: 12px; }
.fleet-slider-next { right: 12px; }
.fleet-detail-content {
  padding: 16px 20px 24px;
  overflow-y: auto;
  flex: 1;
  text-align: left;
}

.exc-detail-video,
.fleet-detail-video,
.exc-modal-video {
  padding: 0 20px 18px;
}

.media-video-card {
  background: #f4f8ff;
  border: 1px solid rgba(27,79,138,0.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(27,79,138,0.08);
}

.media-video-card video {
  width: 100%;
  display: block;
  max-height: 420px;
  background: #000;
}

.media-video-caption {
  padding: 12px 16px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.fleet-detail-title {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.2;
}
.fleet-detail-meta { display: none; }
.fleet-detail-desc {
  font-size: 15px;
  color: #333;
  line-height: 1.55;
  text-align: left;
}
.fleet-detail-desc p {
  margin: 0 0 10px 0;
}
.fleet-detail-desc p:last-child { margin-bottom: 0; }

/* ============ SERVICES ============ */
.section-services {
  background: #F0F7FF;
  align-items: flex-start;
}

.section-services .section-bg {
  background: linear-gradient(145deg, #EBF5FF 0%, #DCF0FF 100%);
}

.section-services .section-overlay { background: none; }

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

.service-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(82,183,136,0.14);
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(27,79,138,0.08);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(82,183,136,0.05), rgba(91,164,207,0));
  pointer-events: none;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(27,79,138,0.14);
  border-color: rgba(82,183,136,0.32);
}

.service-item-head,
.service-item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 28px;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(82,183,136,0.15), rgba(91,164,207,0.10));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(82,183,136,0.18);
  box-shadow: 0 6px 18px rgba(27,79,138,0.08);
}

.service-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(64,145,108,0.08);
  border: 1px solid rgba(64,145,108,0.20);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.service-info {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-mid);
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #3A86C8, #5BA4CF);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(64,145,108,0.28);
  transition: transform 0.18s, box-shadow 0.18s;
}
.service-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(64,145,108,0.40);
}
.service-more span { font-size: 14px; }

/* ---- Service card with background image ---- */
.service-item--has-bg {
  border-color: transparent;
  box-shadow: 0 10px 32px rgba(0,0,0,0.28);
}
.service-item--has-bg::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.70) 100%);
}
.service-item--has-bg .service-title {
  color: #fff;
}
.service-item--has-bg .service-desc {
  color: rgba(255,255,255,0.82);
}
.service-item--has-bg .service-price {
  color: #7BE0A9;
}
.service-item--has-bg .service-more {
  color: rgba(255,255,255,0.90);
}
.service-item--has-bg .service-chip {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.30);
  color: #fff;
}
.service-item--has-bg .service-icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
}

/* ============ CONTACTS ============ */
.section-contacts { background: var(--navy); align-items: flex-start; }
.section-contacts .section-content { padding-bottom: 1px; }

.section-contacts .section-bg {
  background: linear-gradient(145deg, #1B4F8A 0%, #163d70 100%);
}

.section-contacts .section-overlay { background: rgba(0,0,0,0.18); }

.section-contacts .section-label { color: var(--green-light); }
.section-contacts .section-title { color: white; }
.section-contacts .section-subtitle { color: rgba(255,255,255,0.65); }

.section-contacts .section-header.contacts-header-with-reviews {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  grid-template-areas:
    "label      reviewlabel"
    "title      reviewtitle"
    "subtitle   reviewtitle";
  column-gap: 32px;
  row-gap: 8px;
  align-items: start;
}

.section-contacts .section-header.contacts-header-with-reviews .section-label {
  grid-area: label;
  margin: 0;
}

.section-contacts .section-header.contacts-header-with-reviews .section-title {
  grid-area: title;
  margin: 0;
}

.section-contacts .section-header.contacts-header-with-reviews .section-subtitle {
  grid-area: subtitle;
  margin: 0;
  max-width: 560px;
}

/* Разбиваем reviewhead на два отдельных grid-item через display:contents */
.section-contacts .section-header.contacts-header-with-reviews .contacts-reviews-head {
  display: contents;
}

.section-contacts .section-header.contacts-header-with-reviews .contacts-reviews-label {
  grid-area: reviewlabel;
  align-self: center;
}

.section-contacts .section-header.contacts-header-with-reviews .contacts-reviews-title {
  grid-area: reviewtitle;
  align-self: start;
}

.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contacts-layout.contacts-layout-single {
  grid-template-columns: 1fr;
}

.contacts-info.full-width {
  max-width: 860px;
}

.contacts-layout.contacts-layout-with-reviews {
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 32px;
}

.contacts-layout.contacts-layout-with-reviews .contacts-info.full-width {
  max-width: none;
}

.contacts-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  overflow: visible;
}

.contacts-reviews-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.contacts-reviews-label {
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 700;
}

.contacts-reviews-title {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  color: #ffffff;
}

.contacts-reviews-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.review-card {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 24px rgba(4, 18, 35, 0.14);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.review-card.is-link {
  cursor: pointer;
}

.review-card.is-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px rgba(4, 18, 35, 0.24);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 7px;
}

.review-service {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.review-service-logo,
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.review-service-logo img,
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-service-logo.is-fallback span,
.review-avatar.is-fallback span {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.review-service-name {
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.review-stars {
  display: inline-flex;
  gap: 4px;
  flex-wrap: nowrap;
}

.review-star {
  color: rgba(255,255,255,0.24);
  font-size: var(--review-star-size, 16px);
  line-height: 1;
}

.review-star.filled {
  color: #ffd76a;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.review-author-meta {
  min-width: 0;
}

.review-author-name {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  color: #ffffff;
}

.review-author-caption {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.review-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}

.review-link-hint {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--green-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-icon {
  font-size: 17px;
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  overflow: hidden;
}

.contact-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.contact-label {
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3px;
  font-weight: 600;
}

.contact-value { font-size: 15px; font-weight: 500; color: white; }

.contact-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-value a:hover { color: var(--green-light); }

/* Form */
.contacts-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 34px;
  backdrop-filter: blur(10px);
}

.contacts-form h3 { font-size: 21px; font-weight: 700; color: white; margin-bottom: 24px; }

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  color: white;
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: rgba(255,255,255,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group select option { background: #1B4F8A; color: white; }
.form-group textarea { resize: vertical; }

/* ============ FOOTER ============ */
.footer { background: var(--navy); padding: 22px 0; }

.footer-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo-block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #3A86C8, #5BA4CF);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text { font-size: 13px; font-weight: 800; color: #ffffff; letter-spacing: 1px; }

.footer-copy { font-size: 11.5px; color: rgba(255,255,255,0.38); }

.footer-socials { display: flex; gap: 10px; }

.footer-social {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s;
}

.footer-social.tg { background: rgba(0,136,204,0.15); color: #5BC8F5; }
.footer-social.wa { background: rgba(37,211,102,0.15); color: #68E0A0; }
.footer-social:hover { transform: scale(1.14); }

/* Social buttons (in contact section) */
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn.tg { background: rgba(0,136,204,0.1); color: #0088cc; }
.social-btn.wa { background: rgba(37,211,102,0.1); color: #25D366; }
.social-btn:hover { transform: scale(1.12); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* ============ ANIMATIONS ============ */
.animate-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.animate-item.visible { opacity: 1; transform: translateY(0); }

.animate-item:nth-child(1) { transition-delay: 0s; }
.animate-item:nth-child(2) { transition-delay: 0.08s; }
.animate-item:nth-child(3) { transition-delay: 0.16s; }
.animate-item:nth-child(4) { transition-delay: 0.24s; }
.animate-item:nth-child(5) { transition-delay: 0.32s; }
.animate-item:nth-child(6) { transition-delay: 0.40s; }

/* Animation types */
.anim-fadeIn { opacity: 0 !important; transform: none !important; }
.anim-fadeIn.visible { opacity: 1 !important; }

.anim-slideUp { opacity: 0 !important; transform: translateY(38px) !important; }
.anim-slideUp.visible { opacity: 1 !important; transform: translateY(0) !important; }

.anim-slideLeft { opacity: 0 !important; transform: translateX(-38px) !important; }
.anim-slideLeft.visible { opacity: 1 !important; transform: translateX(0) !important; }

.anim-slideRight { opacity: 0 !important; transform: translateX(38px) !important; }
.anim-slideRight.visible { opacity: 1 !important; transform: translateX(0) !important; }

.anim-zoomIn { opacity: 0 !important; transform: scale(0.88) !important; }
.anim-zoomIn.visible { opacity: 1 !important; transform: scale(1) !important; }

/* ============ CARD FLEX LAYOUT (duration always at bottom) ============ */
.card {
  display: flex;
  flex-direction: column;
}
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-desc {
  flex: 1;
}

/* ============ SITE SWITCHER ============ */
.site-switcher {
  display: flex;
  align-items: center;
  background: rgba(15, 30, 55, 0.28);
  border: 1.5px solid rgba(255,255,255,0.75);
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
  margin-left: 4px;
  flex-shrink: 0;
}
.switcher-btn {
  padding: 6px 14px;
  border-radius: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.2s;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 1px 6px rgba(0,0,0,0.28);
  white-space: nowrap;
}
.switcher-btn.active,
.switcher-btn:hover {
  background: rgba(255,255,255,0.96);
  color: var(--navy);
  text-shadow: none;
}
.navbar.scrolled .site-switcher {
  background: rgba(27,79,138,0.06);
  border-color: rgba(27,79,138,0.30);
}
.navbar.scrolled .switcher-btn {
  color: var(--text-mid);
  text-shadow: none;
}
.navbar.scrolled .switcher-btn.active,
.navbar.scrolled .switcher-btn:hover {
  background: var(--green-mid);
  color: white;
}
.mobile-switcher {
  display: flex;
  padding: 10px 28px;
  gap: 8px;
}
.mobile-switcher .switcher-btn {
  color: var(--text-mid);
  background: var(--sky-light);
  border-radius: 7px;
}
.mobile-switcher .switcher-btn.active,
.mobile-switcher .switcher-btn:hover {
  background: var(--green-mid);
  color: white;
}

/* ============ EXCURSION MODAL ============ */
.exc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}
.exc-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.exc-modal-overlay:not(.open) {
  transition: none;
}
.exc-modal {
  background: white;
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.exc-modal-overlay.open .exc-modal {
  transform: scale(1);
}
.exc-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 10;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.exc-modal-close:hover { background: rgba(0,0,0,0.7); }
.exc-modal-gallery {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, #87CEEB, #A8D8EA);
}
.exc-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}
.exc-gallery-slide.active { opacity: 1; }
.exc-gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.exc-gallery-empty {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}
.exc-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.exc-nav-btn--prev { left: 14px; }
.exc-nav-btn--next { right: 14px; }
.exc-nav-btn:hover {
  background: rgba(0, 0, 0, 0.68);
  border-color: rgba(255, 255, 255, 0.90);
  transform: translateY(-50%) scale(1.08);
}

.exc-gallery-nav { display: none; }
.exc-gallery-nav-hidden {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}
.exc-gallery-dots { display: flex; gap: 6px; align-items: center; }
.exc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
}
.exc-dot.active { background: white; transform: scale(1.3); }
.exc-modal-body { padding: 24px; }
.exc-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.exc-modal-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.exc-meta-badge {
  background: var(--sky-light);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.exc-modal-desc {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .navbar-inner { padding: 0 20px; }
  .navbar-nav { gap: 0; }
  .navbar-nav .nav-link { padding: 8px 10px; font-size: 12.5px; }
  .navbar-phone { display: none; }
  .section-content { padding: 100px 28px 60px; }
}

/* Mobile switcher скрыт везде — теперь switcher в хедере */
.mobile-switcher { display: none; }




.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.58);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  padding: 20px;
}
.order-modal-overlay.open { opacity: 1; pointer-events: auto; }
.order-modal {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  position: relative;
  padding: 28px;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.28s ease;
}
.order-modal-overlay.open .order-modal { transform: translateY(0) scale(1); }
.order-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(27,79,138,0.08);
  color: var(--navy);
  cursor: pointer;
  font-size: 16px;
}
.order-modal-title {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 18px;
}
.order-form .form-group input,
.order-form .form-group select,
.order-form .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(27,79,138,0.14);
  border-radius: 12px;
  background: #F8FBFE;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}
.order-form .form-group input::placeholder,
.order-form .form-group textarea::placeholder { color: #7D8FA3; }
.order-form .form-group select option { color: var(--text); background: #fff; }
.order-form .form-group textarea { resize: vertical; }

/* ============ EXCURSION CARDS (new layout) ============ */
.section-excursions .cards-grid,
.section-sightseeing .cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.exc-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27,79,138,0.08);
  border: 1px solid rgba(82,183,136,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}
.exc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(27,79,138,0.13);
}
.exc-card-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.exc-card-placeholder {
  width: 100%;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  flex-shrink: 0;
}
.exc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 14px;
  gap: 8px;
  background: var(--card-surface, #fff);
}
.exc-card-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--card-title-color, var(--navy));
  flex: 1;
  line-height: 1.3;
}
.exc-card-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--card-price-color, var(--green-mid));
  white-space: nowrap;
  flex-shrink: 0;
}

.exc-card--overlay {
  position: relative;
  display: block;
  aspect-ratio: 1.42 / 1;
  min-height: 240px;
  border: none;
  border-radius: 18px;
  background: #17334f;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(10, 31, 50, 0.18);
  isolation: isolate;
}

.exc-card--overlay:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(10, 31, 50, 0.24);
}

.fleet-card.exc-card--overlay {
  background: #111;
}

.fleet-card.exc-card--overlay .exc-card-overlay {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.18) 38%, rgba(0,0,0,0.52) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.04) 58%, rgba(0,0,0,0.10) 100%);
}

.exc-card--overlay .exc-card-img,
.exc-card--overlay .exc-card-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exc-card--overlay .exc-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 18, 31, 0.12) 0%, rgba(6, 18, 31, 0.22) 38%, rgba(6, 18, 31, 0.62) 100%),
    linear-gradient(90deg, rgba(6, 18, 31, 0.36) 0%, rgba(6, 18, 31, 0.08) 58%, rgba(6, 18, 31, 0.16) 100%);
}

.exc-card--overlay .exc-card-topline,
.exc-card--overlay .exc-card-bottomline {
  position: absolute;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.exc-card--overlay .exc-card-topline {
  top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.exc-card--overlay .exc-card-bottomline {
  bottom: 16px;
}

.exc-card--overlay .exc-card-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-width: calc(100% - 52px);
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.18;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.exc-card--overlay .exc-card-price {
  display: inline-block;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 600;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.exc-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.28);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #FFFFFF;
  backdrop-filter: blur(6px);
}

/* ============ SIGHTSEEING SECTION ============ */
.section-sightseeing {
  background: var(--sky-light);
  min-height: auto;
}
.section-sightseeing .section-bg {
  background: linear-gradient(145deg, #EBF5FF 0%, #DCF0FF 100%);
}
.section-sightseeing .section-overlay { background: none; }
.section-sightseeing .section-content { padding-top: 80px; padding-bottom: 80px; }
.section-sightseeing .cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* ============ FLIP ORDER BUTTON ============ */
.flip-btn-wrap {
  perspective: 600px;
  height: 38px;
  width: 126px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.22s ease;
  transform: translateY(0) scale(1);
}
.flip-btn-wrap:hover {
  transform: translateY(-3px) scale(1.04);
}
.flip-btn-wrap:hover .flip-front {
  box-shadow: 0 8px 22px rgba(64,145,108,0.55);
}
.flip-front {
  transition: box-shadow 0.22s ease;
}
.flip-btn {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1);
  cursor: pointer;
}
.flip-btn.flipped { transform: rotateY(180deg); }
.flip-front, .flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flip-front {
  background: linear-gradient(135deg, #3A86C8, #5BA4CF);
  color: white;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(64,145,108,0.35);
  white-space: nowrap;
}
.flip-back {
  background: white;
  transform: rotateY(180deg);
  gap: 8px;
  border: 1px solid rgba(27,79,138,0.1);
  box-shadow: 0 4px 14px rgba(27,79,138,0.12);
  padding: 0 10px;
}
.flip-mess {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.flip-mess.wa { background: #25D366; color: white; }
.flip-mess.tg { background: #0088cc; color: white; }
.flip-mess.max { background: linear-gradient(135deg, #7B3FBE, #3A86C8); color: white; }
.flip-mess:hover { transform: scale(1.15); }

/* Mobile flip button */
.mob-flip-wrap {
  margin: 10px 28px 4px;
  perspective: 600px;
  height: 46px;
}
.mob-flip-btn {
  width: 100% !important;
  min-width: unset !important;
}
.mob-flip-btn .flip-front {
  font-size: 14px;
  font-weight: 700;
}
.mob-flip-btn .flip-back {
  gap: 12px;
  padding: 0 16px;
}
.mob-flip-btn .flip-mess {
  width: 36px;
  height: 36px;
}
.mob-flip-btn .flip-mess span {
  display: none;
}

/* ============ EXCURSION DETAIL PAGE ============ */
.exc-detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: #f5f5f5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  overflow-y: auto;
}
.exc-detail-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.exc-detail-page {
  min-height: 100%;
  padding: 58px 24px 48px;
}
.exc-detail-shell {
  max-width: 1420px;
  margin: 0 auto;
}
.exc-detail-close {
  position: fixed;
  top: 18px;
  left: 24px;
  z-index: 10;
  background: rgba(255,255,255,0.94);
  color: var(--navy);
  border: 1px solid rgba(27,79,138,0.08);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(27,79,138,0.08);
}
.exc-detail-close:hover {
  background: #fff;
  transform: translateY(-1px);
}
.exc-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: start;
}
.exc-detail-media {
  min-width: 0;
}
.exc-detail-slider {
  position: relative;
  background: #dde7f2;
  overflow: hidden;
  aspect-ratio: 1.32 / 1;
}
.exc-detail-slider.has-image { cursor: zoom-in; }
.exc-detail-main-image,
.exc-detail-main-placeholder,
.exc-detail-main-video {
  width: 100%;
  height: 100%;
  display: block;
}
.exc-detail-main-image {
  object-fit: cover;
}
.exc-detail-main-placeholder {
  align-items: center;
  justify-content: center;
  font-size: 96px;
  background: linear-gradient(135deg, #87CEEB, #5BA4CF);
}
.exc-detail-main-video {
  position: absolute;
  inset: 0;
  background: #000;
}
.exc-detail-main-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}
.exc-detail-slider.is-video {
  background: #000;
}
.exc-detail-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15,23,42,0.16);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  z-index: 10;
}
.exc-detail-slider-btn.prev { left: 18px; }
.exc-detail-slider-btn.next { right: 18px; }
.exc-detail-slider-btn:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 14px 32px rgba(15,23,42,0.2);
}
.exc-detail-slider-btn:disabled {
  opacity: 0.45;
  cursor: default;
}
.exc-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.exc-detail-thumb {
  border: 2px solid rgba(27,79,138,0.12);
  padding: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 0.72;
  opacity: 0.55;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.exc-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.exc-detail-thumb-video {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #10233d 0%, #1b4f8a 55%, #2b7de0 100%);
  color: #fff;
  font-weight: 700;
}
.exc-detail-thumb-video-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.exc-detail-thumb-video-label {
  font-size: 12px;
  line-height: 1;
}
.exc-detail-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(27,79,138,0.4);
  box-shadow: 0 4px 12px rgba(27,79,138,0.14);
  opacity: 0.85;
}
.exc-detail-thumb.active {
  transform: translateY(-2px);
  border-color: var(--navy);
  box-shadow: 0 0 0 2px var(--navy), 0 6px 18px rgba(27,79,138,0.28);
  opacity: 1;
}
.exc-detail-content {
  padding-top: 2px;
}
.exc-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: #10233d;
  margin-bottom: 20px;
  line-height: 1.22;
}
.exc-detail-price {
  font-size: 22px;
  font-weight: 800;
  color: #091a33;
  margin-bottom: 6px;
}
.exc-detail-price-note {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.5;
}
.exc-detail-book-btn {
  display: inline-block;
  min-width: 240px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #3A86C8, #5BA4CF);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 10px 24px rgba(58,134,200,0.28);
  margin-bottom: 14px;
  font-family: inherit;
  text-align: center;
}
.exc-detail-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(58,134,200,0.38);
}
.exc-detail-book-btn.revealed {
  background: linear-gradient(135deg, #2e6fa8, #4a90be);
}
.exc-detail-dolyami-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 240px;
  padding: 13px 24px;
  background: #fff;
  color: #1a1a2e;
  border: 2px solid #FFDD2D;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 4px 16px rgba(255,221,45,0.18);
  font-family: inherit;
  text-align: center;
}
.exc-detail-dolyami-btn:hover {
  background: #FFDD2D;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255,221,45,0.32);
}
.exc-detail-dolyami-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.dolyami-logo-badge {
  background: #FFDD2D;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 2px 7px;
  border-radius: 5px;
  line-height: 1.5;
}
#dolyamiWrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 14px;
}
.dolyami-hint {
  font-size: 11px;
  color: #999;
  text-align: left;
  margin-top: 5px;
}
.exc-detail-phone-reveal:empty { display: none; }
.exc-detail-phone-reveal {
  background: rgba(58,134,200,0.10);
  border: 1px solid rgba(58,134,200,0.28);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 17px;
  font-weight: 700;
  color: #1e5f99;
  text-align: center;
  margin-bottom: 26px;
  animation: fadeSlideDown 0.3s ease;
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.exc-detail-messengers {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  align-items: center;
  flex-wrap: nowrap;
}
/* Compact icon-only messenger buttons in excursion detail */
.exc-detail-messengers .mess-icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 0;
  flex: none;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.exc-detail-messengers .mess-icon-btn span { display: none; }
.exc-detail-messengers .mess-icon-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.exc-detail-messengers .mess-icon-btn img { width: 22px; height: 22px; flex-shrink: 0; }
.exc-detail-messengers .mess-icon-btn.wa { background: rgba(37,211,102,0.18); color: #1a7a3c; }
.exc-detail-messengers .mess-icon-btn.tg { background: rgba(0,136,204,0.18); color: #0a6090; }
.exc-detail-messengers .mess-icon-btn.max { background: rgba(123,63,190,0.18); color: #5e2d99; }
.exc-detail-messengers .mess-icon-btn:hover { transform: translateY(-2px) scale(1.1); box-shadow: 0 8px 18px rgba(0,0,0,0.14); }

/* Generic mess-icon-btn (contacts, flip-btn, mobile nav, etc.) */
.mess-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  flex: 1;
  justify-content: center;
}
.mess-icon-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.mess-icon-btn img { flex-shrink: 0; }
.mess-icon-btn.wa { background: rgba(37,211,102,0.18); color: #1a7a3c; }
.mess-icon-btn.tg { background: rgba(0,136,204,0.18); color: #0a6090; }
.mess-icon-btn.max { background: rgba(123,63,190,0.18); color: #5e2d99; }
.mess-icon-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.15); }


.exc-detail-text {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.78;
}
.exc-detail-text p + p {
  margin-top: 16px;
}
.exc-detail-highlights {
  margin-top: 28px;
  color: #374151;
}
.exc-detail-highlights h3 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
.exc-detail-highlights ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.exc-detail-highlights li {
  margin-bottom: 10px;
  line-height: 1.55;
}

/* ============ PHOTO GALLERY (full-screen) ============ */
.exc-gallery-overlay {
  position: fixed;
  inset: 0;
  z-index: 3500;
  background: #fff;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
  overflow: hidden;
}
.exc-gallery-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.exc-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px 13px;
  border-bottom: 1px solid #e4eaf3;
  flex-shrink: 0;
}
.exc-gallery-header-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.exc-gallery-header-subtitle {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
  max-width: 600px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.exc-gallery-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f4f8;
  border: none;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  flex-shrink: 0;
  transition: background 0.2s;
}
.exc-gallery-close:hover { background: #dde6f0; }
.exc-gallery-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px 48px;
}
.exc-gallery-section-label {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin-bottom: 14px;
}
.exc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.exc-gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  background: #e0e8f0;
}
.exc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s;
}
.exc-gallery-item:hover img { transform: scale(1.05); }

/* ============ LIGHTBOX ============ */
.exc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  overflow: hidden;
}
.exc-lightbox.open { opacity: 1; pointer-events: auto; }
/* lb-img-wrap is transparent to layout — children act as direct flex items */
.lb-img-wrap { display: contents; }
.lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  user-select: none;
  will-change: transform;
}
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.22);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  width: 56px; height: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  padding-bottom: 2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,0.40);
  border-color: rgba(255,255,255,0.80);
}
.lb-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.18);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lb-close:hover { background: rgba(255,255,255,0.35); }
.lb-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.38);
  padding: 4px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
  white-space: nowrap;
}

/* ============ CONTACT MESSENGERS ============ */
.contact-messengers {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 22px;
  margin-top: 4px;
}
.contact-mess-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 2px solid transparent;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.contact-mess-btn.wa  { background: rgba(37,211,102,0.18);  color: #68E0A0; border-color: #25D366; }
.contact-mess-btn.tg  { background: rgba(0,136,204,0.18);   color: #5BC8F5; border-color: #0088cc; }
.contact-mess-btn.max { background: rgba(123,63,190,0.18);  color: #c09ef5; border-color: #7B3FBE; }
.contact-mess-btn:hover { transform: translateY(-2px); }
.contact-mess-btn.wa:hover  { background: rgba(37,211,102,0.28);  border-color: #4FE38A; box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.contact-mess-btn.tg:hover  { background: rgba(0,136,204,0.28);   border-color: #33AAEE; box-shadow: 0 6px 20px rgba(0,136,204,0.35); }
.contact-mess-btn.max:hover { background: rgba(123,63,190,0.28);  border-color: #A96EE8; box-shadow: 0 6px 20px rgba(123,63,190,0.35); }

/* ============ MOBILE ============ */
@media (max-width: 768px) {
  :root {
    --navbar-h: 42px;
  }

  .exc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .exc-gallery-body { padding: 14px 12px 40px; }
  .exc-gallery-header { padding: 12px 14px; }

  /* Navbar */
  .navbar {
    padding-top: env(safe-area-inset-top);
  }
  .navbar-inner {
    padding: 0 10px;
    gap: 6px;
    justify-content: space-between;
    position: relative;
  }
  .navbar-nav { display: none; }
  .navbar-burger {
    display: flex;
    gap: 3px;
    padding: 4px;
  }
  .navbar-burger span {
    width: 18px;
  }
  .mobile-nav {
    display: block;
    top: calc(var(--navbar-h) + env(safe-area-inset-top));
    max-height: calc(100svh - var(--navbar-h) - env(safe-area-inset-top));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .btn-nav, .flip-btn-wrap { display: none; }
  .navbar-phone { display: none; }
  .scroll-indicator {
    right: 16px;
    color: #7BE0A9;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(5,16,29,0.68);
  }
  .scroll-arrow {
    border-right-color: #7BE0A9;
    border-bottom-color: #7BE0A9;
    filter: drop-shadow(0 2px 6px rgba(5,16,29,0.55));
  }

  /* Логотип */
  .navbar-logo {
    margin-right: 0;
    flex: 0 0 auto;
  }
  .navbar-logo-img {
    height: 31px !important;
    width: auto;
    max-width: min(44vw, 120px);
  }

  /* Switcher — по центру навбара */
  .site-switcher {
    display: flex;
    position: absolute;
    left: 55%;
    transform: translateX(-50%);
    margin: 0;
    padding: 4px;
    gap: 3px;
    flex-shrink: 0;
  }
  .site-switcher .switcher-btn {
    padding: 3px 13px;
    min-width: 76px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.04em;
  }
  .navbar-right {
    gap: 8px;
    flex-shrink: 0;
    order: 2;
    margin-right: 0;
    margin-left: auto;
  }

  /* Hero */
  .section-home {
    height: calc(100vw * 873 / 1903);
    min-height: 200px;
    max-height: calc(100vh - var(--navbar-h));
  }
  .section-home .section-bg {
    background-attachment: scroll;
  }
  .section-home .section-content {
    max-width: 100%;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100svh - var(--navbar-h));
    padding-top: 18px;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
    max-width: 100%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    transform: none !important;
  }
  .hero-badge {
    font-size: 9px;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: clamp(24px, 6.8vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .hero-subtitle {
    font-size: clamp(14px, 3.9vw, 18px);
    line-height: 1.5;
    margin-bottom: 12px;
    padding: 0;
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-description {
    font-size: clamp(13px, 3.55vw, 15px);
    line-height: 1.65;
    margin-bottom: 20px;
    padding: 14px 16px;
    max-width: 34ch;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    border-radius: 18px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .hero-actions .btn { width: 100%; justify-content: center; flex: none; font-size: 14px; padding: 13px 20px; }
  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 14px 18px;
    width: 100%;
    box-sizing: border-box;
  }
  .stat-num { font-size: 20px; }
  .stat-divider { display: none; }

  /* Секции */
  .section-content {
    padding: 32px 16px 36px;
  }
  .section-title { font-size: clamp(22px, 5.8vw, 32px); word-break: break-word; }
  .section-subtitle { font-size: clamp(13px, 3.2vw, 16px); }
  .section-header { margin-bottom: 16px; }

  /* Карточки экскурсий */
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .section-excursions .cards-grid,
  .section-sightseeing .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .exc-card-img, .exc-card-placeholder { height: 150px; }
  .exc-card-footer { padding: 8px 10px; }
  .exc-card-name { font-size: 12px; }
  .exc-card-price { font-size: 11px; }
  .exc-card--overlay { min-height: 185px; border-radius: 16px; }
  .exc-card--overlay .exc-card-topline,
  .exc-card--overlay .exc-card-bottomline { left: 14px; right: 14px; }
  .exc-card--overlay .exc-card-topline { top: 14px; gap: 10px; }
  .exc-card--overlay .exc-card-bottomline { bottom: 12px; }
  .exc-card--overlay .exc-card-name { max-width: calc(100% - 42px); font-size: 14px; }
  .exc-card--overlay .exc-card-price { font-size: 12px; }
  .exc-card-arrow { width: 32px; height: 32px; font-size: 26px; }

  /* Автопарк */
  .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .fleet-name-overlay { font-size: 12px; padding: 4px 8px; top: 8px; left: 8px; }

  /* Контакты */
  .section-contacts .section-header.contacts-header-with-reviews {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "subtitle"
      "reviewhead";
    row-gap: 12px;
  }
  .contacts-layout { grid-template-columns: 1fr; gap: 24px; }
  .contacts-layout.contacts-layout-with-reviews { grid-template-columns: 1fr; }
  .contacts-info.full-width { max-width: 100%; }
  .contacts-reviews-title { font-size: clamp(20px, 5.5vw, 30px); }
  .contacts-reviews-list { max-width: 100%; margin-left: 0; margin-right: 0; }
  .review-card { padding: 12px 14px; }
  .review-card-top { flex-direction: column; align-items: flex-start; }
  .contact-messengers { gap: 8px; flex-wrap: nowrap; }
  .contact-mess-btn { padding: 9px 10px; font-size: 12px; gap: 6px; }

  /* Услуги */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-item { flex-direction: column; align-items: stretch; padding: 18px 16px; gap: 12px; border-radius: 18px; }
  .service-item-head { flex-direction: row; align-items: center; justify-content: space-between; }
  .service-item-foot { flex-direction: row; align-items: center; justify-content: space-between; }
  .service-icon { width: 52px; height: 52px; border-radius: 14px; font-size: 22px; }
  .service-icon img { width: 26px; height: 26px; }

  /* Почему нас выбирают */
  .section-whychoose .section-title { font-size: clamp(26px, 6.5vw, 40px); max-width: none; }
  .section-whychoose .section-subtitle,
  .section-whychoose .section-description { font-size: 14px; }
  .whychoose-grid { gap: 28px 40px; }
  .whychoose-card { gap: 14px; }
  .whychoose-icon { width: 52px; height: 52px; font-size: 24px; }
  .whychoose-icon img { width: 34px; height: 34px; }
  .whychoose-title { font-size: 18px; }
  .whychoose-desc { font-size: 14px; }
  .whychoose-header { margin-bottom: 28px; }

  /* Футер */
  .footer {
    padding: 18px 0 calc(18px + env(safe-area-inset-bottom));
  }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 0 14px; }
  .footer-copy { font-size: 11px; }

  /* Детальная страница экскурсии */
  .exc-detail-page { padding: 70px 14px 36px; }
  .exc-detail-layout { grid-template-columns: 1fr; gap: 22px; }
  .exc-detail-slider { aspect-ratio: 1.16 / 1; }
  .exc-detail-content { padding-top: 0; }
  .exc-detail-title { font-size: 22px; margin-bottom: 14px; }
  .exc-detail-price { font-size: 20px; margin-bottom: 14px; }
  .exc-detail-book-btn { width: 100%; min-width: 0; }
  .exc-detail-thumbs { grid-template-columns: repeat(5, minmax(58px, 1fr)); gap: 6px; }
  .exc-detail-thumb { aspect-ratio: 1 / 0.78; }
  .exc-detail-text { font-size: 15px; }
  .exc-detail-slider-btn { width: 44px; height: 44px; font-size: 28px; }

  /* Лайтбокс */
  .lb-prev { left: 4px; width: 38px; height: 38px; font-size: 20px; }
  .lb-next { right: 4px; width: 38px; height: 38px; font-size: 20px; }
  .exc-lightbox.lb-nalajte .lb-prev,
  .exc-lightbox.lb-nalajte .lb-next { display: none; }
}

@media (max-width: 480px) {
  :root {
    --navbar-h: 41px;
  }

  /* Одна колонка для карточек на iPhone */
  .cards-grid { grid-template-columns: 1fr; gap: 12px; }
  .section-excursions .cards-grid,
  .section-sightseeing .cards-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .service-item {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 14px;
  }
  .service-item-head,
  .service-item-foot {
    align-items: center;
  }
  .service-icon { width: 48px; height: 48px; font-size: 20px; border-radius: 12px; flex-shrink: 0; }
  .service-icon img { width: 24px; height: 24px; }
  .service-chip { white-space: normal; text-align: center; }

  .whychoose-grid { grid-template-columns: 1fr; gap: 20px; }
  .whychoose-title { font-size: 19px; }
  .whychoose-desc { font-size: 14px; }

  .hero-title { font-size: clamp(24px, 7vw, 30px); }
  .hero-subtitle { font-size: clamp(13px, 3.9vw, 16px); }
  .hero-description {
    font-size: 13px;
    line-height: 1.6;
    padding: 12px 14px;
    max-width: 100%;
  }
  .hero-stats { padding: 12px 14px; gap: 8px 14px; }
  .stat-num { font-size: 18px; }
  .hero-actions .btn { font-size: 13.5px; padding: 12px 16px; }

  .exc-card-img, .exc-card-placeholder { height: 200px; }
  .exc-card--overlay { min-height: 220px; }
  .exc-card--overlay .exc-card-topline,
  .exc-card--overlay .exc-card-bottomline { left: 16px; right: 16px; }
  .exc-card--overlay .exc-card-name { font-size: 16px; }
  .exc-card--overlay .exc-card-price { font-size: 13px; }
  .exc-card-arrow { width: 34px; height: 34px; font-size: 28px; }

  .section-content { padding: 24px 14px 28px; }
  .section-title { font-size: clamp(20px, 5.6vw, 28px); }

  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 12px; }

  .exc-detail-close { left: 14px; top: 14px; font-size: 12px; padding: 8px 14px; }
  .exc-detail-page { padding: 66px 12px 28px; }
  .exc-detail-slider { aspect-ratio: 1 / 1; }
  .exc-detail-thumbs { grid-template-columns: repeat(4, minmax(52px, 1fr)); }
  .exc-detail-title { font-size: 20px; }
  .exc-detail-price { font-size: 18px; }

  .contacts-reviews-list { grid-template-columns: 1fr; }

  .mob-link { font-size: 15px; padding: 14px 22px; }
  .mob-phone { font-size: 15px; padding: 14px 22px; }
  .mob-order-btn { margin: 10px 22px 0; width: calc(100% - 44px); }

  .mobile-switcher {
    padding: 10px 22px;
    gap: 8px;
  }

  .navbar-logo-img {
    height: 31px !important;
    max-width: min(46vw, 110px);
  }
  .site-switcher .switcher-btn {
    min-height: 22px;
    padding: 3px 8px;
    font-size: 10px;
  }
}

@media (max-width: 768px) {
/* Почему нас выбирают */
  .section-whychoose .section-title { font-size: clamp(26px, 6.5vw, 40px); max-width: none; }
  .section-whychoose .section-subtitle,
  .section-whychoose .section-description { font-size: 14px; }
  .whychoose-grid { gap: 28px 40px; }
  .whychoose-card { gap: 14px; }
  .whychoose-icon { width: 52px; height: 52px; font-size: 24px; }
  .whychoose-icon img { width: 34px; height: 34px; }
  .whychoose-title { font-size: 18px; }
  .whychoose-desc { font-size: 14px; }
  .whychoose-header { margin-bottom: 28px; }

  /* Футер */
  .footer {
    padding: 18px 0 calc(18px + env(safe-area-inset-bottom));
  }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 0 14px; }
  .footer-copy { font-size: 11px; }

  /* Детальная страница экскурсии */
  .exc-detail-page { padding: 70px 14px 36px; }
  .exc-detail-layout { grid-template-columns: 1fr; gap: 22px; }
  .exc-detail-slider { aspect-ratio: 1.16 / 1; }
  .exc-detail-content { padding-top: 0; }
  .exc-detail-title { font-size: 22px; margin-bottom: 14px; }
  .exc-detail-price { font-size: 20px; margin-bottom: 14px; }
  .exc-detail-book-btn { width: 100%; min-width: 0; }
  .exc-detail-thumbs { grid-template-columns: repeat(5, minmax(58px, 1fr)); gap: 6px; }
  .exc-detail-thumb { aspect-ratio: 1 / 0.78; }
  .exc-detail-text { font-size: 15px; }
  .exc-detail-slider-btn { width: 44px; height: 44px; font-size: 28px; }

  /* Лайтбокс */
  .lb-prev { left: 4px; width: 42px; height: 42px; font-size: 26px; }
  .lb-next { right: 4px; width: 42px; height: 42px; font-size: 26px; }
  .exc-lightbox.lb-nalajte .lb-prev,
  .exc-lightbox.lb-nalajte .lb-next { display: none; }
}

@media (max-width: 480px) {
  /* Одна колонка для карточек экскурсий и автопарка */
  .cards-grid { grid-template-columns: 1fr; gap: 12px; }
  .section-excursions .cards-grid,
  .section-sightseeing .cards-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  /* Услуги — 1 колонка на узких */
  .services-grid { grid-template-columns: 1fr; }
  .service-item { flex-direction: column; align-items: stretch; padding: 16px; gap: 12px; }
  .service-item-head { flex-direction: row; align-items: center; justify-content: space-between; }
  .service-icon { width: 46px; height: 46px; font-size: 20px; border-radius: 12px; flex-shrink: 0; }
  .service-icon img { width: 24px; height: 24px; }
  .service-info { flex: 1; }
  .service-item-foot { flex-direction: row; align-items: center; justify-content: space-between; }

  /* Why choose — 1 колонка */
  .whychoose-grid { grid-template-columns: 1fr; gap: 20px; }
  .whychoose-title { font-size: 19px; }
  .whychoose-desc { font-size: 14px; }

  /* Hero */
  .hero-title { font-size: clamp(21px, 7vw, 28px); }
  .hero-subtitle { font-size: clamp(12px, 3.8vw, 15px); }
  .hero-description { font-size: 12.5px; padding: 9px 12px; }
  .hero-stats { padding: 12px 14px; gap: 8px 14px; }
  .stat-num { font-size: 18px; }
  .hero-actions .btn { font-size: 13.5px; padding: 12px 16px; }

  /* Карточки одиночные — фото выше */
  .exc-card-img, .exc-card-placeholder { height: 200px; }
  .exc-card--overlay { min-height: 220px; }
  .exc-card--overlay .exc-card-topline,
  .exc-card--overlay .exc-card-bottomline { left: 16px; right: 16px; }
  .exc-card--overlay .exc-card-name { font-size: 16px; }
  .exc-card--overlay .exc-card-price { font-size: 13px; }
  .exc-card-arrow { width: 34px; height: 34px; font-size: 28px; }

  /* Секции */
  .section-content { padding: 24px 14px 28px; }
  .section-title { font-size: clamp(20px, 5.5vw, 28px); }

  /* Отзывы */
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 12px; }

  /* Детальная */
  .exc-detail-close { left: 14px; top: 14px; font-size: 12px; padding: 8px 14px; }
  .exc-detail-page { padding: 66px 12px 28px; }
  .exc-detail-slider { aspect-ratio: 1 / 1; }
  .exc-detail-thumbs { grid-template-columns: repeat(4, minmax(52px, 1fr)); }
  .exc-detail-title { font-size: 20px; }
  .exc-detail-price { font-size: 18px; }

  /* Контакты */
  .contacts-reviews-list { grid-template-columns: 1fr; }

  /* Мобильное меню */
  .mob-link { font-size: 15px; padding: 14px 22px; }
  .mob-phone { font-size: 15px; padding: 14px 22px; }
  .mob-order-btn { margin: 10px 22px 0; width: calc(100% - 44px); }

  /* Navbar на 375px */
  .navbar-logo-img { height: 29px !important; }
  .site-switcher .switcher-btn { padding: 3px 6px; font-size: 9.5px; }
}


/* Почему нас выбирают */
.section-whychoose {
  position: relative;
  background: #f7f8fa;
}

.section-whychoose .section-bg {
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 100%);
}

.whychoose-content {
  max-width: 1180px;
}

.whychoose-header {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-whychoose .section-label,
.whychoose-rail,
.whychoose-highlights {
  display: none;
}

.section-whychoose .section-title {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #0b2345;
}

.whychoose-copy {
  margin-top: 22px;
  display: grid;
  gap: 6px;
}

.section-whychoose .section-subtitle {
  margin: 0;
  max-width: 690px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(17, 24, 39, 0.78);
}

.section-whychoose .section-description {
  margin: 0;
  max-width: 690px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(17, 24, 39, 0.78);
  font-weight: 700;
}

.whychoose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px 72px;
}

.whychoose-card {
  min-width: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.whychoose-card::before,
.whychoose-card::after,
.whychoose-card-orbit,
.whychoose-card-top,
.whychoose-card-bottom,
.whychoose-badge,
.whychoose-arrow,
.whychoose-progress,
.whychoose-highlight,
.whychoose-card-featured {
  display: none !important;
}

.whychoose-icon-wrap {
  flex-shrink: 0;
}

.whychoose-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.whychoose-card-body {
  display: none;
}

.whychoose-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3b8fd3;
  background: transparent;
  box-shadow: none;
  border: 2px solid rgba(59, 143, 211, 0.08);
  font-size: 30px;
}

.whychoose-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.whychoose-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
  color: #0b2345;
}

.whychoose-desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.62;
  color: rgba(17, 24, 39, 0.72);
}

@media (max-width: 960px) {
  .whychoose-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .whychoose-header {
    margin-bottom: 34px;
  }

  .section-whychoose .section-title {
    max-width: none;
    font-size: 40px;
  }

  .section-whychoose .section-subtitle,
  .section-whychoose .section-description,
  .whychoose-desc {
    font-size: 16px;
  }

  .whychoose-card {
    gap: 16px;
  }

  .whychoose-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .whychoose-icon img {
    width: 38px;
    height: 38px;
  }

  .whychoose-title {
    font-size: 21px;
  }
}

/* ============ REVIEWS ============ */
.section-reviews {
  background: var(--sky-light);
  align-items: flex-start;
}
.section-reviews .section-bg {
  background: linear-gradient(145deg, #EBF5FF 0%, #DDF0E8 100%);
}
.section-reviews .section-overlay {
  background: none;
}
.section-reviews .section-label { color: var(--accent-green); }
.section-reviews .section-title { color: var(--navy); }
.section-reviews .section-subtitle { color: var(--text-mid); }

/* Review cards on light background (tour style) */
.section-reviews .review-card {
  background: #ffffff;
  border: 1px solid rgba(27,79,138,0.12);
  box-shadow: 0 8px 24px rgba(27,79,138,0.08);
}
.section-reviews .review-card.is-link:hover {
  background: #f0f8ff;
  border-color: rgba(27,79,138,0.22);
  box-shadow: 0 16px 36px rgba(27,79,138,0.14);
}
.section-reviews .review-service-logo,
.section-reviews .review-avatar {
  background: var(--sky-light);
  border-color: rgba(27,79,138,0.12);
}
.section-reviews .review-service-logo.is-fallback span,
.section-reviews .review-avatar.is-fallback span { color: var(--navy); }
.section-reviews .review-service-name { color: var(--navy); }
.section-reviews .review-star { color: rgba(27,79,138,0.18); }
.section-reviews .review-author-name { color: var(--navy); }
.section-reviews .review-author-caption { color: var(--text-muted); }
.section-reviews .review-text { color: var(--text-mid); }
.section-reviews .review-link-hint { color: var(--accent-green); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

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

/* ===== Reviews slider (>3 cards) ===== */
.reviews-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.reviews-slider-row {
  display: flex;
  align-items: center;
}

.reviews-slider-viewport {
  flex: 1;
  overflow: hidden;
  padding: 14px 10px 28px;
}

.reviews-track {
  display: flex;
  gap: 18px;
  transition: transform 0.46s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Equal-height cards set via JS */
.reviews-track .review-card {
  flex-shrink: 0;
  min-width: 0;
}

/* Bottom row: prev — dots — next */
.reviews-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

/* Dots hidden */
.reviews-dots { display: none !important; }

/* ===== Reviews nav buttons ===== */
.reviews-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.80);
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s, border-color 0.22s, color 0.22s;
  user-select: none;
}
.reviews-nav svg { display: block; flex-shrink: 0; }
.reviews-nav:hover:not(:disabled) {
  background: rgba(255,255,255,0.22);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.20);
}
.reviews-nav:disabled { opacity: 0.22; cursor: default; pointer-events: none; }

/* Tours (light bg) nav buttons */
.section-reviews .reviews-nav {
  background: #ffffff;
  border: 1.5px solid rgba(27,79,138,0.16);
  box-shadow: 0 4px 18px rgba(27,79,138,0.12);
  color: var(--navy);
}
.section-reviews .reviews-nav:hover:not(:disabled) {
  background: var(--sky-light);
  border-color: rgba(27,79,138,0.34);
  box-shadow: 0 8px 28px rgba(27,79,138,0.22);
  transform: scale(1.08);
}
.section-reviews .reviews-nav:disabled { opacity: 0.35; box-shadow: none; }

/* ===== Reviews bubble redesign (tour) ===== */
.review-card.review-card-bubble {
  position: relative;
  display: block;
  height: 100%;
  padding: 0 0 20px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  text-decoration: none;
}

.review-card.review-card-bubble .review-card-body {
  position: relative;
  min-height: 100%;
  border-radius: 16px;
  padding: 10px 12px 38px;
  transition: transform 0.30s cubic-bezier(0.34, 1.36, 0.64, 1), box-shadow 0.30s ease, border-color 0.30s ease;
}

.review-card.review-card-bubble .review-card-body::after {
  content: '';
  position: absolute;
  right: 24px;
  bottom: -10px;
  width: 20px;
  height: 20px;
  border-radius: 0 0 10px 0;
  transform: rotate(45deg);
}

.review-card.review-card-bubble .review-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.review-card.review-card-bubble .review-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-wrap: nowrap;
}

.review-card.review-card-bubble .review-star {
  font-size: var(--review-star-size, 12px);
}

.review-card.review-card-bubble .review-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: 54%;
  padding: 4px 8px 4px 5px;
  border-radius: 12px;
}

.review-card.review-card-bubble .review-service-logo {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.review-card.review-card-bubble .review-service-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-card.review-card-bubble .review-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.review-card.review-card-bubble .review-link-hint {
  margin-top: 12px;
}

.review-card.review-card-bubble .review-author-chip {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 5px 9px 5px 6px;
  border-radius: 10px;
}

.review-card.review-card-bubble .review-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}

.review-card.review-card-bubble .review-author-meta {
  min-width: 0;
}

.review-card.review-card-bubble .review-author-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}

.review-card.review-card-bubble .review-author-caption {
  margin-top: 1px;
  letter-spacing: 0.08em;
  font-size: 9px;
}

.section-reviews .review-card.review-card-bubble {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.section-reviews .review-card.review-card-bubble .review-card-body {
  background: linear-gradient(145deg, #ffffff 0%, #eef7ff 62%, #e2f2ea 100%);
  border: 1px solid rgba(27,79,138,0.14);
  box-shadow: none;
}

.section-reviews .review-card.review-card-bubble .review-card-body::after {
  background: linear-gradient(145deg, #eef7ff 0%, #e2f2ea 100%);
  border-right: 1px solid rgba(27,79,138,0.14);
  border-bottom: 1px solid rgba(27,79,138,0.14);
}

.section-reviews .review-card.review-card-bubble:hover,
.section-reviews .review-card.review-card-bubble.is-link:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.section-reviews .review-card.review-card-bubble:hover .review-card-body,
.section-reviews .review-card.review-card-bubble.is-link:hover .review-card-body {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(27,79,138,0.18);
  border-color: rgba(27,79,138,0.22);
}


.section-reviews .review-card.review-card-bubble .review-service-badge {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(27,79,138,0.12);
  box-shadow: 0 8px 16px rgba(27,79,138,0.08);
}

.section-reviews .review-card.review-card-bubble .review-service-logo {
  background: linear-gradient(145deg, #ffffff 0%, #e7f3ff 100%);
  border: 1px solid rgba(27,79,138,0.12);
}

.section-reviews .review-card.review-card-bubble .review-service-logo.is-fallback span,
.section-reviews .review-card.review-card-bubble .review-avatar.is-fallback span {
  color: var(--navy);
}

.section-reviews .review-card.review-card-bubble .review-service-name,
.section-reviews .review-card.review-card-bubble .review-author-name {
  color: var(--navy);
}

.section-reviews .review-card.review-card-bubble .review-star {
  color: rgba(27,79,138,0.22);
}

.section-reviews .review-card.review-card-bubble .review-star.filled {
  color: #f2bf49;
}

.section-reviews .review-card.review-card-bubble .review-text {
  color: #31485d;
}

.section-reviews .review-card.review-card-bubble .review-link-hint {
  color: #2E86C1;
}

.section-reviews .review-card.review-card-bubble .review-author-chip {
  background: linear-gradient(135deg, #1f4e7a 0%, #2E86C1 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
}

.section-reviews .review-card.review-card-bubble .review-avatar {
  background: linear-gradient(145deg, #ffffff 0%, #e7f4ff 100%);
  border: 1px solid rgba(255,255,255,0.35);
}

.section-reviews .review-card.review-card-bubble .review-author-name {
  color: #ffffff;
}

.section-reviews .review-card.review-card-bubble .review-author-caption {
  color: rgba(255,255,255,0.66);
}

@media (max-width: 900px) {
  .review-card.review-card-bubble .review-service-badge {
    max-width: 58%;
  }
}

@media (max-width: 640px) {
  .review-card.review-card-bubble {
    padding-bottom: 28px;
  }

  .review-card.review-card-bubble .review-card-body {
    padding: 18px 16px 52px;
    border-radius: 22px;
  }

  .review-card.review-card-bubble .review-card-body::after {
    right: 22px;
  }

  .review-card.review-card-bubble .review-card-head {
    gap: 10px;
  }

  .review-card.review-card-bubble .review-service-badge {
    max-width: 64%;
    padding-right: 8px;
  }

  .review-card.review-card-bubble .review-author-chip {
    left: 14px;
    right: 14px;
    max-width: calc(100% - 28px);
    padding: 9px 14px 9px 10px;
  }

  .review-card.review-card-bubble .review-author-name {
    font-size: 13px;
  }
}

/* ===== Mobile reviews slider — consistent card size ===== */
@media (max-width: 540px) {
  /* Reduce side padding so card fills more width */
  .reviews-slider-viewport {
    padding-left: 4px;
    padding-right: 4px;
  }

  /* Clamp long reviews so no single card dominates height */
  .reviews-track .review-card.review-card-bubble .review-text {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Larger, more readable text */
  .reviews-track .review-card.review-card-bubble .review-text {
    font-size: 14.5px;
    line-height: 1.65;
  }

  /* Tighter card-body padding for mobile */
  .reviews-track .review-card.review-card-bubble .review-card-body {
    padding: 16px 16px 56px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(27,79,138,0.10);
  }

  /* Slightly bigger author chip on mobile */
  .reviews-track .review-card.review-card-bubble .review-author-chip {
    padding: 10px 14px 10px 10px;
    border-radius: 12px;
  }

  /* Bigger avatar for better readability */
  .reviews-track .review-card.review-card-bubble .review-avatar {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .reviews-track .review-card.review-card-bubble .review-author-name {
    font-size: 14px;
  }

  /* Slightly larger stars */
  .reviews-track .review-card.review-card-bubble .review-star {
    font-size: var(--review-star-size, 14px);
  }

  /* Service badge adjustments */
  .reviews-track .review-card.review-card-bubble .review-service-badge {
    padding: 5px 10px 5px 6px;
    border-radius: 14px;
  }

  .reviews-track .review-card.review-card-bubble .review-service-logo {
    width: 28px;
    height: 28px;
  }

  .reviews-track .review-card.review-card-bubble .review-service-name {
    font-size: 11px;
  }

  /* Nav buttons — smaller on mobile */
  .reviews-bottom .reviews-nav {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
  }
}

/* Desktop: compact review cards with ellipsis on overflow */
@media (min-width: 601px) {
  .reviews-track .review-card.review-card-bubble .review-text {
    font-size: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ============ GALLERY ACCORDION ============ */
.section-gallery {
  background: #f8fafd;
}
.section-gallery .section-bg {
  background: #f8fafd;
}
.section-gallery .section-overlay {
  display: none;
}
.section-gallery .section-label {
  color: var(--green-mid);
}
.section-gallery .section-title {
  color: var(--navy);
}
/* Расширяем галерею на всю ширину — убираем max-width и горизонтальный padding */
/* Весь контент — без ограничений ширины, нет горизонтальных отступов */
.section-gallery .section-content {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
/* Заголовок + кнопки на одной строке */
.gallery-header {
  /* Left edge mirrors standard section-content (max-width:1280px + padding:60px) on all viewport widths */
  padding-left: max(60px, calc(50vw - 580px));
  padding-right: 32px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gallery-header .section-label { margin-bottom: 8px; }
.gallery-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}
.gallery-title-row .section-title { margin-bottom: 0; }
.gallery-nav-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* Аккордеон и точки — небольшой отступ от краёв */
.section-gallery .gallery-row,
.section-gallery .gallery-bottom {
  padding-left: 32px;
  padding-right: 32px;
}
.gallery-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.gallery-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.gallery-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(27,79,138,0.20);
  background: #fff;
  box-shadow: 0 2px 10px rgba(27,79,138,0.10);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s, box-shadow 0.22s, border-color 0.22s, transform 0.22s;
  user-select: none;
}
.gallery-nav svg { display: block; }
.gallery-nav:hover:not(:disabled) {
  background: var(--sky-light);
  border-color: rgba(27,79,138,0.36);
  box-shadow: 0 6px 20px rgba(27,79,138,0.18);
  transform: scale(1.08);
}
.gallery-nav:disabled {
  opacity: 0.32;
  cursor: default;
  pointer-events: none;
}
/* ---- Gallery: horizontal strip, equal-height photos ---- */
.gallery-accordion {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  min-width: 0;
}
/* Scrollable track inside the viewport */
.gallery-track {
  display: flex;
  gap: 12px;
  transition: transform 0.44s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gallery-item {
  flex: 0 0 auto;
  height: 360px;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s;
}
.gallery-item:hover {
  transform: scale(1.018);
  box-shadow: 0 8px 28px rgba(27,79,138,0.20);
  z-index: 1;
}
.gallery-item img {
  height: 100%;
  width: auto;
  display: block;
  pointer-events: none;
  user-select: none;
}
/* Dots not needed — hide them */
.gallery-dots { display: none !important; }

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .gallery-header { padding-left: 20px; padding-right: 20px; margin-bottom: 12px; }
  .section-gallery .gallery-row { padding-left: 14px; padding-right: 14px; }
  .gallery-title-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .gallery-nav-group { gap: 8px; align-self: center; }
  .gallery-nav { width: 38px; height: 38px; }
  .gallery-accordion { border-radius: 12px; }
  .gallery-item { height: 220px; border-radius: 10px; }
  .gallery-track { gap: 8px; }
}

/* ===== DOLЫAMI: кнопка в секции whychoose (туры) ===== */
.whychoose-dolyami-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.whychoose-dolyami-logo {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 20px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}
.whychoose-dolyami-logo:hover {
  box-shadow: 0 0 0 3px #FFDD2D, 0 8px 32px rgba(255, 221, 45, 0.45);
  transform: translateY(-2px);
}
.whychoose-dolyami-text {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}
.whychoose-dolyami-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 14px;
  border: 2px solid rgba(228,160,63,0.45);
  background: rgba(228,160,63,0.08);
  color: #b86b00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.22s;
  box-shadow: 0 4px 20px rgba(228,160,63,0.12);
}
.whychoose-dolyami-btn:hover {
  background: rgba(228,160,63,0.16);
  border-color: rgba(228,160,63,0.75);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(228,160,63,0.22);
}
.whychoose-dolyami-btn .dolyami-logo-badge {
  font-size: 9px;
  padding: 3px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}
.whychoose-dolyami-btn svg {
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.2s;
}
.whychoose-dolyami-btn:hover svg { transform: translateX(4px); opacity: 1; }
@media (max-width: 600px) {
  .whychoose-dolyami-btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 13px; }
  .whychoose-dolyami-text { font-size: 17px; white-space: normal; }
}

/* ===== DOLYAMI MODAL (туры / index) ===== */
.dlm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.dlm-overlay.open { opacity: 1; pointer-events: auto; }
.dlm-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 28px 28px 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  transform: scale(0.96);
  transition: transform 0.22s;
  scrollbar-width: none;
}
.dlm-modal::-webkit-scrollbar { display: none; }
.dlm-overlay.open .dlm-modal { transform: scale(1); }
.dlm-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.dlm-modal-title-row { display: flex; align-items: center; gap: 10px; }
.dlm-modal-title { font-size: 17px; font-weight: 700; color: #111; }
.dlm-close {
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: #f0f0f0; color: #555;
  font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.dlm-close:hover { background: #e0e0e0; color: #111; }
.dlm-modal-sub { font-size: 13px; color: #666; margin: 0 0 18px; }
.dlm-tours { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.dlm-tour-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 16px; cursor: pointer;
  border: 1.5px solid #e8e8e8; background: #fafafa;
  transition: all 0.15s;
}
.dlm-tour-item:hover { border-color: #FFDD2D; background: #fffde7; }
.dlm-tour-item.dlm-selected { border-color: #f5a623; background: #fff8e1; }
.dlm-tour-check {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  border: 2px solid #ddd; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  transition: all 0.15s;
}
.dlm-tour-item.dlm-selected .dlm-tour-check {
  background: linear-gradient(135deg, #f5a623, #e08c00);
  border-color: #f5a623; color: #fff;
}
.dlm-tour-item input[type="checkbox"] { display: none; }
.dlm-tour-name { flex: 1; font-size: 13.5px; font-weight: 600; color: #222; }
.dlm-tour-qty {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f0e1aa;
}
.dlm-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #fff3bf;
  color: #9a5a00;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}
.dlm-qty-btn:hover { background: #ffe680; }
.dlm-qty-input {
  width: 34px;
  border: none;
  background: transparent;
  color: #222;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  outline: none;
  appearance: textfield;
}
.dlm-qty-input::-webkit-inner-spin-button,
.dlm-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.dlm-qty-input:disabled { opacity: 0.45; }
.dlm-tour-price { font-size: 13px; font-weight: 700; color: #b86b00; white-space: nowrap; }
.dlm-modal-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 16px; border-top: 1px solid #f0f0f0;
}
.dlm-total-block { display: flex; flex-direction: column; gap: 2px; }
.dlm-total-label { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: 0.5px; }
.dlm-total-amount strong { font-size: 20px; font-weight: 800; color: #111; }
.dlm-total-parts { font-size: 12px; color: #888; }
.dlm-pay-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 12px; border: none;
  background: #FFDD2D; color: #000; font-size: 13.5px; font-weight: 800;
  cursor: pointer; transition: all 0.18s; white-space: nowrap;
}
.dlm-pay-btn:hover:not(:disabled) { background: #f5d000; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,166,35,0.3); }
.dlm-pay-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.dlm-result {
  margin-top: 14px; padding: 12px 16px; border-radius: 10px;
  font-size: 13px; line-height: 1.5; word-break: break-all;
}
.dlm-result.success { background: #e8f5e9; color: #2e7d32; }
.dlm-result.success a { color: #1b5e20; }
.dlm-result.error { background: #fdecea; color: #c62828; }
/* ============ NALAJTE SECTION ============ */
.section-nalajte {
  background: #fff;
}
.nalajte-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 48px;
}
.nalajte-body--full { grid-template-columns: 1fr; }
.nalajte-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}
.nalajte-description {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  text-align: justify;
}
.nalajte-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.nalajte-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: transform .3s ease;
}
.nalajte-photo { cursor: zoom-in; }
.nalajte-photo:hover { transform: scale(1.03); box-shadow: 0 8px 32px rgba(0,0,0,.18); }
.nalajte-photos-grid .nalajte-photo:only-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.nalajte-photos-grid .nalajte-photo:first-child:nth-last-child(3),
.nalajte-photos-grid .nalajte-photo:nth-child(3):last-child {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.nalajte-text2 {
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fc 100%);
  border-radius: 20px;
  padding: 32px 40px;
  margin-bottom: 44px;
  border-left: 4px solid var(--accent);
}
.nalajte-text2 p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
}
.nalajte-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: stretch;
}
.btn-nalajte {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 20px;
  text-decoration: none;
  flex: 1;
  min-width: 260px;
  max-width: 410px;
  box-shadow: 0 12px 34px rgba(27,79,138,.18);
  transform: translateY(0);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, filter .24s ease;
}
.btn-nalajte::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 1;
  transition: opacity .24s ease;
}
.btn-nalajte::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -35%;
  width: 55%;
  height: 220%;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transform: rotate(18deg) translateX(-130%);
  transition: transform .55s ease;
}
.btn-nalajte:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(27,79,138,.24);
  border-color: rgba(255,255,255,.62);
  filter: saturate(1.08);
}
.btn-nalajte:hover::after { transform: rotate(18deg) translateX(290%); }
.btn-nalajte:focus-visible {
  outline: 3px solid rgba(91,164,207,.35);
  outline-offset: 4px;
}
.btn-nalajte-icon {
  font-size: 25px;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 8px 18px rgba(13,43,78,.12);
  backdrop-filter: blur(8px);
}
.btn-nalajte-icon-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}
.btn-nalajte-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.btn-nalajte-label {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.btn-nalajte-desc {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.84);
  line-height: 1.45;
}
.btn-nalajte-menu::before {
  background: linear-gradient(135deg, var(--forest) 0%, var(--navy) 48%, var(--sky-mid) 100%);
}
.btn-nalajte-menu {
  box-shadow: 0 12px 34px rgba(27,79,138,.24);
}
.btn-nalajte-delivery::before {
  background: linear-gradient(135deg, #0D2B4E 0%, #1B4F8A 42%, #74C0FC 100%);
}
.btn-nalajte-delivery {
  box-shadow: 0 12px 34px rgba(58,134,200,.22);
}
@media (max-width: 960px) {
  .nalajte-body { grid-template-columns: 1fr; gap: 32px; }
  .nalajte-text2 { padding: 24px 28px; }
}
@media (max-width: 600px) {
  .nalajte-text2 { padding: 20px; border-radius: 14px; }
  .btn-nalajte { min-width: 100%; max-width: 100%; padding: 16px 20px; gap: 14px; }
  .btn-nalajte-icon { width: 46px; height: 46px; font-size: 22px; }
  .btn-nalajte-label { font-size: 15px; }
  .nalajte-actions { gap: 12px; }
}

@media (max-width: 480px) {
  .dlm-modal { padding: 20px 16px 18px; }
  .dlm-tour-item { flex-wrap: wrap; }
  .dlm-tour-name { min-width: 180px; }
  .dlm-modal-footer { flex-direction: column; align-items: stretch; }
  .dlm-pay-btn { justify-content: center; }
}


/* ===== STARFISH SECTION ===== */
.section-starfish {
  position: relative;
  overflow: hidden;
}
.section-starfish .section-content {
  position: relative;
  z-index: 2;
}
.starfish-description {
  max-width: 920px;
  margin: -12px auto 34px;
  text-align: center;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.75;
  color: var(--text-muted, #566575);
}
.starfish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: stretch;
  max-width: 1040px;
  margin: 10px auto 0;
}
.section-starfish .exc-card--overlay {
  aspect-ratio: 1.25 / 1;
  min-height: 220px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(10, 31, 50, 0.16);
}
.section-starfish .exc-card--overlay:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 34px rgba(10, 31, 50, 0.22);
}
.section-starfish .exc-card--overlay .exc-card-topline,
.section-starfish .exc-card--overlay .exc-card-bottomline {
  left: 16px;
  right: 16px;
}
.section-starfish .exc-card--overlay .exc-card-topline {
  top: 15px;
  gap: 12px;
}
.section-starfish .exc-card--overlay .exc-card-bottomline {
  bottom: 14px;
}
.section-starfish .exc-card--overlay .exc-card-name {
  max-width: calc(100% - 44px);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.18;
}
.section-starfish .exc-card--overlay .exc-card-price {
  font-size: clamp(13px, 1vw, 15px);
}
.section-starfish .exc-card-arrow {
  width: 34px;
  height: 34px;
}
.starfish-videos {
  margin-top: clamp(42px, 6vw, 72px);
}
.starfish-video-header {
  margin-bottom: 22px;
}
.starfish-video-heading {
  margin: 8px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-dark, #12304A);
}
.starfish-video-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.starfish-video-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(20, 74, 130, .08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(16, 54, 93, .12);
}
.starfish-video-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0F3E6D, #56A9E8);
}
.starfish-video-media video,
.starfish-video-media iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}
.starfish-video-title {
  padding: 16px 18px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark, #12304A);
}
@media (max-width: 640px) {
  .starfish-description { text-align: left; margin-bottom: 26px; }
  .starfish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: none;
  }
  .section-starfish .exc-card--overlay {
    aspect-ratio: 1 / 1.05;
    min-height: 175px;
    border-radius: 14px;
  }
  .section-starfish .exc-card--overlay .exc-card-topline,
  .section-starfish .exc-card--overlay .exc-card-bottomline {
    left: 12px;
    right: 12px;
  }
  .section-starfish .exc-card--overlay .exc-card-topline { top: 12px; gap: 8px; }
  .section-starfish .exc-card--overlay .exc-card-bottomline { bottom: 11px; }
  .section-starfish .exc-card--overlay .exc-card-name {
    max-width: calc(100% - 36px);
    font-size: 13px;
    line-height: 1.15;
  }
  .section-starfish .exc-card--overlay .exc-card-price { font-size: 11.5px; }
  .section-starfish .exc-card-arrow { width: 28px; height: 28px; }
  .section-starfish .exc-card-arrow svg { width: 16px; height: 16px; }
  .starfish-video-list { grid-template-columns: 1fr; gap: 16px; }
  .starfish-video-card { border-radius: 18px; }
}

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

/* ============ OUR PARTNERS ============ */
.section-ourpartners {
  position: relative;
  overflow: hidden;
}
.section-ourpartners .section-content {
  position: relative;
  z-index: 2;
}
.ourpartners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.ourpartners-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(10,31,60,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ourpartners-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,31,60,0.16);
}
.ourpartners-logo {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ourpartners-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.ourpartners-logo-placeholder {
  font-size: 48px;
  font-weight: 700;
  color: #B0C4DE;
}
.ourpartners-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ourpartners-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a2b3c;
  margin: 0;
  text-align: center;
}
.ourpartners-modal-link {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 24px;
  border-radius: 50px;
  background: linear-gradient(90deg, #3B82F6, #06B6D4);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ourpartners-modal-link:hover { opacity: 0.88; }
.partners-modal-desc { text-align: justify; }

@media (max-width: 768px) {
  .ourpartners-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
}
@media (max-width: 480px) {
  .ourpartners-grid { grid-template-columns: 1fr; }
}

/* ===== REGISTRATION MODAL ===== */
.reg-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.reg-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.reg-modal {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
  padding: 36px 32px 32px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s ease;
  text-align: center;
}
.reg-modal-overlay.open .reg-modal {
  transform: translateY(0) scale(1);
}
.reg-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(27, 79, 138, 0.08);
  color: #1b4f8a;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.reg-modal-close:hover { background: rgba(27, 79, 138, 0.16); }
.reg-modal-icon {
  font-size: 42px;
  margin-bottom: 10px;
}
.reg-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #1b4f8a;
  margin: 0 0 8px;
}
.reg-modal-subtitle {
  font-size: 14px;
  color: #6b7a90;
  margin: 0 0 22px;
  line-height: 1.5;
}
.reg-form { text-align: left; }
.reg-form-group { margin-bottom: 16px; }
.reg-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1b4f8a;
  margin-bottom: 6px;
}
.reg-form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(27, 79, 138, 0.18);
  border-radius: 12px;
  background: #f7fbff;
  color: #1a2a3a;
  font-size: 15px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}
.reg-form-input:focus {
  border-color: #1b4f8a;
  box-shadow: 0 0 0 3px rgba(27, 79, 138, 0.1);
}
.reg-form-input.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
}
.reg-form-error {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 4px;
  min-height: 16px;
}
.reg-form-privacy {
  font-size: 12px;
  color: #6b7a90;
  margin-bottom: 16px;
  line-height: 1.5;
  text-align: center;
}
.reg-form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1b4f8a 0%, #2d72c8 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
}
.reg-form-submit:hover:not(:disabled) { opacity: 0.92; transform: translateY(-1px); }
.reg-form-submit:active:not(:disabled) { transform: translateY(0); }
.reg-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.reg-form-global-error {
  font-size: 13px;
  color: #e53e3e;
  text-align: center;
  margin-top: 10px;
  min-height: 18px;
}
.reg-success { text-align: center; padding: 10px 0 4px; }
.reg-success-icon { font-size: 52px; margin-bottom: 12px; }
.reg-success-title {
  font-size: 22px;
  font-weight: 700;
  color: #1b4f8a;
  margin: 0 0 10px;
}
.reg-success-text {
  font-size: 15px;
  color: #4a6080;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 480px) {
  .reg-modal { padding: 28px 18px 24px; }
  .reg-modal-title { font-size: 19px; }
}
/* ===== /REGISTRATION MODAL ===== */
