/* ============ 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: #B7E4C7;
  --green: #52B788;
  --green-mid: #40916C;
  --green-dark: #2D6A4F;
  --forest: #1B4332;
  --teal: #74C0FC;
  --text: #1C2B3A;
  --text-mid: #4A6070;
  --text-muted: #8A9BB0;
  --accent: #3A86C8;
  --accent-green: #40916C;
  --navbar-h: 80px;
  --transition: 0.3s ease;
}

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

body {
  font-family: '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;
}

/* ============ TOP NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  z-index: 1000;
  background: transparent;
  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 32px;
  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: 52px;
  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: 40px;
  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: #ffffff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.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: #ffffff;
  background: rgba(255,255,255,0.14);
}

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

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

.navbar:not(.scrolled) .navbar-nav .nav-link.active {
  color: #ffffff;
}

.navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--green-dark);
}

.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: #ffffff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.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: 14px;
  margin-left: auto;
}

.btn-nav {
  padding: 9px 20px;
  font-size: 12.5px;
  font-weight: 700;
  background: linear-gradient(135deg, #40916C, #3A86C8);
  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.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(64, 145, 108, 0.45);
}

/* 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: white; }

/* 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, #40916C, #3A86C8);
  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;
}

@supports (min-height: 100svh) {
  .section-home { min-height: 100svh; }
}

.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: 110px 60px 80px;
}

/* ============ HOME / HERO ============ */
.section-home {
  min-height: 100vh;
  align-items: flex-start;
}

.section-home .section-bg {
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-color: #87CEEB;
}

.section-home .section-bg.no-image {
  background-image: none !important;
  background: linear-gradient(
    160deg,
    #87CEEB 0%, #A8D8EA 18%, #C5E8D8 38%,
    #7EC8A0 55%, #52B788 68%, #2D6A4F 82%, #3A5A40 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, #40916C, #3A86C8);
  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: 6px;
  color: var(--text-muted);
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: scrollBounce 2.5s infinite;
}

.scroll-arrow {
  width: 16px; height: 16px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}

@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; }

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

.section-excursions .section-bg {
  background: linear-gradient(145deg, #EBF5FF 0%, #E0F4EC 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, #52B788, #95D5B2); }
.card-img-placeholder.exc3 { background: linear-gradient(135deg, #74C69D, #52B788); }
.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: #e8eef5;
}

.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, #c8e6d4);
}

.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-name-overlay {
  position: absolute;
  top: 14px; left: 14px;
  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);
  max-width: calc(100% - 28px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ============ 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;
}
.fleet-detail-slider-img {
  width: 100%;
  height: auto;
  display: block;
}
.fleet-detail-emoji {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  background: linear-gradient(135deg, #87CEEB, #52B788);
}
.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;
}
.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: #F0FAF5;
  align-items: flex-start;
}

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

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

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

.service-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-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: 62px;
  height: 62px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(82,183,136,0.15), rgba(91,164,207,0.10));
  border-radius: 18px;
  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;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.72;
}

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

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.service-more span { font-size: 15px; }

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

.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: 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-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 40px; }

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  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, #40916C, #3A86C8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text { font-size: 13px; font-weight: 800; color: var(--green-light); 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: 1px solid rgba(255,255,255,0.24);
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
  margin-right: 8px;
}
.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.08);
  border-color: rgba(27,79,138,0.08);
}
.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-gallery-nav {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}
.exc-nav-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background 0.2s;
  line-height: 1;
}
.exc-nav-btn:hover { background: white; }
.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);
}

.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: flex-start;
  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.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  backdrop-filter: blur(4px);
}

/* ============ SIGHTSEEING SECTION ============ */
.section-sightseeing {
  background: var(--sky-light);
  min-height: auto;
}
.section-sightseeing .section-bg {
  background: linear-gradient(145deg, #EBF5FF 0%, #E0F4EC 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;
}
.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, #40916C, #3A86C8);
  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-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, #52B788);
}
.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;
}
.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: 18px;
}
.exc-detail-book-btn {
  display: inline-block;
  min-width: 240px;
  padding: 14px 28px;
  background: #e4a03f;
  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(228,160,63,0.24);
  margin-bottom: 14px;
  font-family: inherit;
  text-align: center;
}
.exc-detail-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(228,160,63,0.28);
}
.exc-detail-book-btn.revealed {
  background: #c98528;
}
.exc-detail-phone-reveal:empty { display: none; }
.exc-detail-phone-reveal {
  background: rgba(228,160,63,0.12);
  border: 1px solid rgba(228,160,63,0.28);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 17px;
  font-weight: 700;
  color: #9a5d07;
  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); }

body.business-mode .mess-icon-btn.wa { color: #68E0A0; }
body.business-mode .mess-icon-btn.tg { color: #5BC8F5; }
body.business-mode .mess-icon-btn.max { color: #c09ef5; }

.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 ol {
  margin: 0;
  padding-left: 22px;
}
.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;
}
.exc-lightbox.open { opacity: 1; pointer-events: auto; }
.lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  user-select: none;
}
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.14);
  color: white;
  border: none;
  border-radius: 50%;
  width: 52px; height: 52px;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
  line-height: 1;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.28); }
.lb-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.14);
  color: white;
  border: none;
  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;
}
.lb-close:hover { background: rgba(255,255,255,0.28); }
.lb-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 600;
  pointer-events: none;
}

/* ============ CONTACT MESSENGERS ============ */
.contact-messengers {
  display: flex;
  gap: 12px;
  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;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.contact-mess-btn.wa { background: rgba(37,211,102,0.18); color: #68E0A0; }
.contact-mess-btn.tg { background: rgba(0,136,204,0.18); color: #5BC8F5; }
.contact-mess-btn.max { background: rgba(123,63,190,0.18); color: #c09ef5; }
.contact-mess-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }

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

  .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 14px;
    gap: 10px;
    justify-content: space-between;
  }
  .navbar-nav { display: none; }
  .navbar-burger { display: flex; }
  .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: 1 1 auto;
    min-width: 0;
  }
  .navbar-logo-img {
    height: 54px !important;
    width: auto;
    max-width: min(44vw, 190px);
  }

  /* Switcher — стабильно помещается на iPhone */
  .site-switcher {
    display: flex;
    margin-right: 0;
    order: 2;
    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;
  }
  .navbar-burger { order: 3; }

  /* Hero */
  .section-home {
    min-height: 100svh;
    min-height: 100vh;
  }
  .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: calc(var(--navbar-h) + 18px) 16px 48px;
  }
  .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: 24px; }

  /* Карточки экскурсий */
  .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 { flex-wrap: wrap; gap: 8px; }
  .contact-mess-btn { padding: 8px 12px; font-size: 12px; }

  /* Услуги */
  .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 { grid-template-columns: 56px 1fr; column-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 16px calc(18px + env(safe-area-inset-bottom));
  }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .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; }
}

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

  /* Одна колонка для карточек на 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: calc(var(--navbar-h) + 12px) 14px 40px; }
  .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; }
  .contact-mess-btn { flex: 1 1 calc(50% - 4px); justify-content: center; }
  .contact-messengers { gap: 6px; }

  .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: 54px !important;
    max-width: min(46vw, 176px);
  }
  .site-switcher .switcher-btn {
    min-height: 34px;
    padding: 6px 10px;
    font-size: 10.5px;
  }
}

@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 { grid-template-columns: 56px 1fr; column-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 16px calc(18px + env(safe-area-inset-bottom));
  }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .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; }
}

@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: 80px 14px 40px; }
  .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; }
  .contact-mess-btn { flex: 1 1 calc(50% - 4px); justify-content: center; }
  .contact-messengers { gap: 6px; }

  /* Мобильное меню */
  .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: 50px !important; }
  .site-switcher .switcher-btn { padding: 5px 8px; 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);
}

.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: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
  column-gap: 22px;
  row-gap: 10px;
}

.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 {
  grid-row: 1 / span 2;
}

.whychoose-card-body {
  grid-column: 1 / -1;
}

.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 {
    grid-template-columns: 64px 1fr;
    column-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 bubble redesign (tour) ===== */
.review-card.review-card-bubble {
  position: relative;
  display: block;
  height: 100%;
  padding: 0 0 34px;
  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: 24px;
  padding: 20px 20px 58px;
  transition: inherit;
}

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

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

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

.review-card.review-card-bubble .review-star {
  font-size: 14px;
}

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

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

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

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

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

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

.review-card.review-card-bubble .review-avatar {
  width: 42px;
  height: 42px;
  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: 14px;
}

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

.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: 0 18px 34px rgba(27,79,138,0.12);
}

.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.is-link:hover {
  transform: translateY(-6px);
}

.section-reviews .review-card.review-card-bubble.is-link:hover .review-card-body {
  box-shadow: 0 24px 42px rgba(27,79,138,0.16);
}

.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: #2d7f5b;
}

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

.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;
  }
}
