*, ::before, ::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

input, select {
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}
@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a60d1;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #1b2563;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title--flush {
  margin-bottom: 0;
}
.section-desc {
  font-size: 1rem;
  color: #64748b;
  max-width: 540px;
}
.section-head {
  margin-bottom: 48px;
}
@media (max-width: 640px) {
  .section-head {
    margin-bottom: 32px;
  }
}
.section-head.center {
  text-align: center;
}
.section-head.center .section-desc {
  margin: 0 auto;
}
.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.section--white {
  background: #fff;
}
.section-more {
  text-align: center;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #1a60d1;
  color: #fff;
}
.btn-primary:hover {
  background: #1449a8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 96, 209, 0.35);
}
.btn-secondary {
  background: #f59e0b;
  color: #0f172a;
}
.btn-secondary:hover {
  background: #d97706;
  transform: translateY(-1px);
}
.btn-outline {
  border: 2px solid #1a60d1;
  color: #1a60d1;
  padding: 10px 26px;
}
.btn-outline:hover {
  background: #1a60d1;
  color: #fff;
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.82rem;
}
.btn--full {
  width: 100%;
  justify-content: center;
}
.btn--ghost-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.25);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-blue {
  background: #eff6ff;
  color: #1a60d1;
}
.badge-amber {
  background: #fffbeb;
  color: #d97706;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: 40px;
  background: #1b2563;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.topbar.hidden {
  transform: translateY(-100%);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.topbar-item:hover {
  color: #fff;
}
.topbar-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.7;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-lang {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 640px) {
  .topbar-contacts .topbar-item:not(:first-child) {
    display: none;
  }
  .topbar-item span {
    display: none;
  }
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  background: none;
  transition: all 0.25s ease;
  letter-spacing: 0.04em;
}
.lang-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.lang-btn.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.lang-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

.nav {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: top 0.3s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.nav.topbar-gone {
  top: 0;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.nav.scrolled img.normal-logo {
  display: block;
}
.nav.scrolled img.transparent-logo {
  display: none;
}
.nav.scrolled .nav-logo-name {
  color: #1b2563;
}
.nav.scrolled .nav-logo-sub {
  color: #64748b;
}
.nav.scrolled .nav-link {
  color: #334155;
}
.nav.scrolled .nav-link:hover, .nav.scrolled .nav-link.active {
  color: #1a60d1;
  background: #eff6ff;
}
.nav.scrolled .nav-hamburger span {
  background: #1b2563;
}
.nav.scrolled .btn-primary {
  background: #1a60d1;
  border: none;
  color: #fff;
}
.nav:not(.scrolled) .btn-primary {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.nav:not(.scrolled) .btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 50px;
}
.nav-logo img.normal-logo {
  display: none;
}
.nav-logo img.transparent-logo {
  display: block;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.25s ease;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 640px) {
  .nav-actions .btn {
    display: none;
  }
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s ease;
}
@media (max-width: 640px) {
  .nav-hamburger {
    display: flex;
  }
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 999;
  backdrop-filter: blur(4px);
}
.nav-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: #fff;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.nav-mobile.open .nav-mobile-panel {
  transform: translateX(0);
}
.nav-mobile-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 24px;
}
.nav-mobile-close button {
  padding: 8px;
  border-radius: 8px;
  background: #f1f5f9;
}
.nav-mobile-link {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
}
.nav-mobile-cta {
  margin-top: 24px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5, 10, 24, 0.72) 0%, rgba(5, 10, 24, 0.45) 100%);
}
.hero-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 24px 60px;
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
}
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    padding-top: 120px;
    padding-bottom: 48px;
    min-height: auto;
  }
}
@media (max-width: 640px) {
  .hero-layout {
    padding-top: 108px;
  }
}
.hero-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.hero-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s;
  background: rgba(255, 255, 255, 0.08);
}
.hero-social-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.hero-social-btn svg {
  width: 16px;
  height: 16px;
}
.hero-right {
  color: #fff;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.1);
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
  display: inline-block;
}
.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: #1a60d1;
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.25s ease;
}
.hero-btn-primary:hover {
  background: #1449a8;
  transform: translateY(-2px);
}
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
}
.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}
.hero-stats-row {
  display: flex;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
@media (max-width: 640px) {
  .hero-stats {
    gap: 20px;
  }
}
.hero-stat {
  padding: 0 28px;
}
.hero-stat:first-child {
  padding-left: 0;
}
.hero-stat + .hero-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-stat-value {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
@media (max-width: 640px) {
  .hero-stat {
    padding: 0 16px;
  }
}

.hcard {
  background: #fff;
  border-radius: 24px;
  padding: 32px 28px 26px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}
@media (max-width: 900px) {
  .hcard {
    max-width: 480px;
  }
}
.hcard-script {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #1a60d1;
  margin-bottom: 5px;
  display: block;
}
.hcard-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1b2563;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.1;
}
.hcard-desc {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 22px;
  line-height: 1.55;
}

.hf-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: border-color 0.2s;
  position: relative;
}
.hf-field:hover, .hf-field:focus-within {
  border-color: #1a60d1;
}
.hf-icon {
  color: #94a3b8;
  flex-shrink: 0;
  display: flex;
  pointer-events: none;
}
.hf-icon svg, .hf-icon img {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.hf-body {
  flex: 1;
  min-width: 0;
  pointer-events: none;
}
.hf-lbl {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 2px;
}
.hf-val {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1b2563;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hf-val.placeholder {
  color: #475569;
  font-weight: 400;
}
.hf-chev {
  color: #cbd5e1;
  flex-shrink: 0;
  pointer-events: none;
  display: flex;
}
.hf-chev svg {
  width: 15px;
  height: 15px;
}
.hf-select {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
}
.hf-date {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: none;
  background: none;
}
.hf-dropdown {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hf-dropdown .hf-chev {
  transition: transform 0.2s ease;
}
.hf-dropdown.open .hf-chev {
  transform: rotate(180deg);
}
.hf-dropdown.open .hf-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hf-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: -1.5px;
  right: -1.5px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
  z-index: 50;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.hf-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  cursor: pointer;
  transition: background 0.15s;
}
.hf-option:hover {
  background: #f8fafc;
}
.hf-option:hover .hf-opt-icon, .hf-option.selected .hf-opt-icon {
  background: #1a60d1;
  color: #fff;
}
.hf-option.selected {
  background: #eff6ff;
}
.hf-option.selected .hf-opt-label {
  color: #1a60d1;
}
.hf-opt-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #eff6ff;
  color: #1a60d1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.hf-opt-icon svg, .hf-opt-icon img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 2px;
}
.hf-opt-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1b2563;
}
.hf-btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: #0f172a;
  color: #fff;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background 0.2s;
}
.hf-btn:hover {
  background: #1b2563;
}
.hf-btn svg {
  width: 16px;
  height: 16px;
}

.dest-carousel-wrap {
  position: relative;
}
.dest-carousel {
  overflow: hidden;
}
.dest-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.dest-track .dest-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 0;
}
@media (max-width: 900px) {
  .dest-track .dest-card {
    flex: 0 0 calc(33.333% - 11px);
  }
}
@media (max-width: 640px) {
  .dest-track .dest-card {
    flex: 0 0 calc(50% - 8px);
  }
}
.dest-carr-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s, opacity 0.25s;
}
.dest-carr-btn:hover {
  background: #1a60d1;
}
.dest-carr-btn:hover svg {
  stroke: #fff;
}
.dest-carr-btn svg {
  width: 18px;
  height: 18px;
  stroke: #334155;
  stroke-width: 2.5;
  fill: none;
  pointer-events: none;
}
.dest-carr-btn.disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.dest-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.dest-dot {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dest-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  transition: all 0.25s;
}
.dest-dot.active::after {
  width: 24px;
  border-radius: 3px;
  background: #1a60d1;
}
.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #e2e8f0;
  aspect-ratio: 2/3;
}
.dest-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.dest-card:hover img {
  transform: scale(1.07);
}
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.1) 55%, transparent 100%);
  pointer-events: none;
  transition: background 0.4s ease;
}
.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.35) 65%, transparent 100%);
}
.dest-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.dest-card:hover .dest-card-info {
  opacity: 0;
  transform: translateY(6px);
}
.dest-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.dest-card-count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 4px;
}
.dest-card-reveal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.dest-card-reveal-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.dest-card-reveal-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin-bottom: 14px;
}
.dest-card-reveal-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 5px 14px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.dest-card-reveal-link:hover {
  background: rgba(255, 255, 255, 0.25);
}
.dest-card-reveal-link:hover svg {
  transform: translateX(3px);
}
.dest-card-reveal-link svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s;
}
.dest-card:hover .dest-card-reveal {
  transform: translateY(0);
  opacity: 1;
}

#dest-prev {
  left: -22px;
}

#dest-next {
  right: -22px;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
@media (max-width: 640px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }
}

.tour-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px -4px rgba(0, 0, 0, 0.14);
}
.tour-card-img {
  position: relative;
  height: 210px;
  background: #e2e8f0;
  overflow: hidden;
}
.tour-card-img:hover .tc-arr {
  opacity: 1;
}
.tour-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
}
.tour-card-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: all 0.25s ease;
}
.tour-card-wish:hover {
  color: #ef4444;
}
.tour-card-body {
  padding: 18px;
}
.tour-card-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: #475569;
}
.tour-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tour-card-meta svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.tour-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1b2563;
  margin-bottom: 8px;
  line-height: 1.3;
}
.tour-card-desc {
  font-size: 0.83rem;
  color: #64748b;
  margin-bottom: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}
.tour-card-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.tour-card-price {
  display: flex;
  flex-direction: column;
}
.tour-card-per {
  font-size: 0.7rem;
  color: #64748b;
}
.tour-card-amount {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a60d1;
}
.tour-card-old {
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: line-through;
}
.tour-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
}
.tour-rating svg {
  color: #f59e0b;
}
.tour-rating-count {
  font-weight: 400;
  color: #64748b;
}

.tc-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.tc-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.tc-track img {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tc-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.tc-arr svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.tc-arr:hover {
  background: #fff;
}
.tc-arr.tc-prev {
  left: 8px;
}
.tc-arr.tc-next {
  right: 8px;
}
.tc-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 3;
}
.tc-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.55);
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.tc-dot.active {
  width: 18px;
  background: #fff;
}

.categories-bg {
  background: linear-gradient(135deg, #eff6ff 0%, #f0f4ff 100%);
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cat-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #e2e8f0;
}
.cat-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.cat-card:hover img {
  transform: scale(1.07);
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.15) 60%, transparent 100%);
  transition: background 0.3s ease;
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(26, 96, 209, 0.8) 0%, rgba(26, 96, 209, 0.3) 60%, transparent 100%);
}
.cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}
.cat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
  color: #fff;
}
.cat-badge svg {
  width: 22px;
  height: 22px;
}
.cat-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.cat-count {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 5px;
}
.cat-count svg {
  width: 12px;
  height: 12px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.why-icon svg {
  width: 24px;
  height: 24px;
}
.why-icon-blue {
  background: #1a60d1;
}
.why-icon-amber {
  background: #f59e0b;
}
.why-icon-green {
  background: #10b981;
}
.why-icon-purple {
  background: #8b5cf6;
}
.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1b2563;
  margin-bottom: 6px;
}
.why-desc {
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.6;
}
.why-right {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #e2e8f0;
  height: 480px;
}
@media (max-width: 900px) {
  .why-right {
    display: none;
  }
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
  }
}
.why-lead {
  margin-bottom: 40px;
}
.why-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 28px;
}
.why-stats {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 18px 20px;
  display: flex;
  gap: 20px;
}
.why-stat {
  text-align: center;
}
.why-stat-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: #1b2563;
}
.why-stat-lbl {
  font-size: 0.72rem;
  color: #64748b;
}
.why-stat-divider {
  width: 1px;
  background: #e2e8f0;
}

.reviews-bg {
  background: linear-gradient(160deg, #eef2ff 0%, #f8fafc 60%);
}
.reviews-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 48px;
}
.reviews-widget {
  background: #fff;
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}
.reviews-widget-score {
  text-align: center;
}
.reviews-widget-num {
  font-size: 3.2rem;
  font-weight: 900;
  color: #1b2563;
  line-height: 1;
  display: block;
}
.reviews-widget-stars {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin: 6px 0;
  color: #f59e0b;
}
.reviews-widget-stars svg {
  width: 16px;
  height: 16px;
}
.reviews-widget-count {
  font-size: 0.73rem;
  color: #64748b;
  white-space: nowrap;
}
.reviews-widget-divider {
  width: 1px;
  height: 56px;
  background: #e2e8f0;
  flex-shrink: 0;
}
.reviews-widget-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 140px;
}
.reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: #64748b;
}
.reviews-bar-track {
  flex: 1;
  height: 5px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}
.reviews-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: #f59e0b;
  width: var(--fill, 100%);
}
.reviews-bar-fill--light {
  background: #dbeafe;
}
.reviews-bar-fill--muted {
  background: #cbd5e1;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a60d1, #dbeafe);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px -4px rgba(0, 0, 0, 0.14);
}
.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.review-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}
.review-stars svg {
  width: 14px;
  height: 14px;
}
.review-platform {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 3px 8px;
}
.review-platform svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.review-quote-icon {
  color: #dbeafe;
  opacity: 0.5;
  margin-bottom: 10px;
}
.review-quote-icon svg {
  width: 28px;
  height: 28px;
}
.review-text {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.review-avatar--blue {
  background: #1a60d1;
}
.review-avatar--amber {
  background: #d97706;
}
.review-avatar--green {
  background: #10b981;
}
.review-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1b2563;
}
.review-loc {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 2px;
}
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.67rem;
  font-weight: 600;
  color: #059669;
  background: #ecfdf5;
  border-radius: 50px;
  padding: 3px 9px;
  flex-shrink: 0;
}
.review-badge svg {
  width: 10px;
  height: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px -4px rgba(0, 0, 0, 0.14);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-img {
  height: 180px;
  background: #e2e8f0;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card-body {
  padding: 20px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.blog-card-date {
  font-size: 0.75rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card-date svg {
  width: 12px;
  height: 12px;
}
.blog-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1b2563;
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card-title:hover {
  color: #1a60d1;
}
.blog-card-excerpt {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a60d1;
  margin-top: 12px;
}
.blog-card-read svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.blog-card-read:hover svg {
  transform: translateX(3px);
}

.cta-section {
  background: linear-gradient(135deg, #1b2563 0%, #1a60d1 100%);
  text-align: center;
  padding: 80px 24px;
}
.cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 32px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

footer {
  background: #0f172a;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 50px;
}
.footer-about {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all 0.25s ease;
}
.footer-social:hover {
  background: #1a60d1;
  color: #fff;
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 0.85rem;
  color: #94a3b8;
  transition: color 0.2s;
}
.footer-link:hover {
  color: #fff;
}
.footer-logo-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.footer-logo-slogan {
  font-size: 0.65rem;
  color: #94a3b8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact-link--address {
  align-items: flex-start;
}
.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: #94a3b8;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: #94a3b8;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 640px) {
  .search-form {
    flex-direction: column;
    gap: 0;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
  }
  .search-field:last-of-type {
    border-bottom: none;
  }
  .search-btn {
    width: calc(100% - 8px);
    justify-content: center;
  }
}
.flatpickr-calendar {
  border-radius: 14px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
  font-family: "Outfit", "Inter", sans-serif;
}
.flatpickr-calendar.arrowTop::before {
  border-bottom-color: #e2e8f0;
}
.flatpickr-calendar.arrowTop::after {
  border-bottom-color: #fff;
}

.flatpickr-months {
  padding: 4px 0;
}
.flatpickr-months .flatpickr-month {
  background: #fff;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: #64748b;
  fill: #64748b;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  color: #1a60d1;
  fill: #1a60d1;
}

.flatpickr-current-month {
  color: #1b2563;
  font-weight: 700;
  font-size: 0.95rem;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  color: #1b2563;
  font-weight: 700;
}
.flatpickr-current-month input.cur-year {
  color: #1b2563;
  font-weight: 700;
}

.flatpickr-weekdays {
  background: #fff;
}

.flatpickr-weekday {
  color: #64748b;
  font-weight: 600;
  font-size: 0.7rem;
}

.flatpickr-day {
  border-radius: 8px;
  color: #0f172a;
}
.flatpickr-day:hover:not(.disabled) {
  background: #eff6ff;
  border-color: #eff6ff;
}
.flatpickr-day.today {
  border-color: #1a60d1;
  color: #1a60d1;
  font-weight: 600;
}
.flatpickr-day.selected, .flatpickr-day.selected:hover {
  background: #1a60d1;
  border-color: #1a60d1;
  color: #fff;
}
.flatpickr-day.disabled, .flatpickr-day.disabled:hover {
  color: #cbd5e1;
  cursor: not-allowed;
}