*, ::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 svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.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, .nav.nav--white {
  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, .nav.nav--white img.normal-logo {
  display: block;
}
.nav.scrolled img.transparent-logo, .nav.nav--white img.transparent-logo {
  display: none;
}
.nav.scrolled .nav-logo-name, .nav.nav--white .nav-logo-name {
  color: #1b2563;
}
.nav.scrolled .nav-logo-sub, .nav.nav--white .nav-logo-sub {
  color: #64748b;
}
.nav.scrolled .nav-link, .nav.nav--white .nav-link {
  color: #334155;
}
.nav.scrolled .nav-link:hover, .nav.scrolled .nav-link.active, .nav.nav--white .nav-link:hover, .nav.nav--white .nav-link.active {
  color: #1a60d1;
  background: #eff6ff;
}
.nav.scrolled .nav-hamburger span, .nav.nav--white .nav-hamburger span {
  background: #1b2563;
}
.nav.scrolled .btn-primary, .nav.nav--white .btn-primary {
  background: #1a60d1;
  border: none;
  color: #fff;
}
.nav:not(.scrolled):not(.nav--white) .btn-primary {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.nav:not(.scrolled):not(.nav--white) .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;
  }
}

.hero-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 16px 0;
}

.hero-tab {
  padding: 10px 22px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: inherit;
}
.hero-tab:hover {
  background: rgba(0, 0, 0, 0.04);
}
.hero-tab.active {
  background: #1a60d1;
  color: #fff;
  border-color: #1a60d1;
}

.hero-form {
  display: none;
}
.hero-form.active {
  display: block;
}

.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;
}
.hf-stepper {
  position: relative;
}
.hf-stepper-controls {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.hf-step-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  font-size: 1rem;
  font-weight: 700;
  color: #1b2563;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.hf-step-btn:hover {
  background: #1a60d1;
  border-color: #1a60d1;
  color: #fff;
}

.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-address {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: #475569;
  line-height: 1.35;
}
.tour-card-address svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.tour-card-address span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.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;
}

.tc-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.tc-img-fill {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.tc-img-empty {
  display: flex;
  width: 100%;
  height: 100%;
  background: #e2e8f0;
  align-items: center;
  justify-content: center;
}
.tc-img-empty svg {
  width: 64px;
  height: 64px;
  color: #94a3b8;
}

.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.35) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
}
.page-hero-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-top: 0.75rem;
  line-height: 1.2;
}

.page-body {
  padding: 3.5rem 0 4rem;
}

.page-prose {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #1e293b;
}
.page-prose h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: #1b2563;
}
.page-prose h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: #1b2563;
}
.page-prose p {
  margin: 0 0 1rem;
}
.page-prose ul, .page-prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.page-prose li {
  margin-bottom: 0.35rem;
}
.page-prose img {
  max-width: 100%;
  border-radius: 12px;
  margin: 1rem 0;
}
.page-prose a {
  color: #1a60d1;
  text-decoration: underline;
}
.page-prose blockquote {
  border-left: 4px solid #dbeafe;
  padding: 0.75rem 1rem;
  margin: 1.5rem 0;
  background: #f8fafc;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #475569;
}

.page-reviews-section {
  background: #f8fafc;
}

.reviews-track-wrap {
  position: relative;
}

.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
}
.review-nav svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.review-nav:hover {
  background: #1a60d1;
  color: #fff;
  border-color: #1a60d1;
}
.review-nav.review-prev {
  left: -20px;
}
.review-nav.review-next {
  right: -20px;
}
@media (max-width: 900px) {
  .review-nav.review-prev {
    left: 0;
  }
  .review-nav.review-next {
    right: 0;
  }
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
}
.review-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.review-card-stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}
.review-card-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.review-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}
.review-card-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: #dbeafe;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a60d1;
  font-size: 1.1rem;
}
.review-card-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review-card-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card-author-info strong {
  font-size: 0.9rem;
  color: #1b2563;
}
.review-card-author-info span {
  font-size: 0.78rem;
  color: #94a3b8;
}

.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;
  margin-bottom: 16px;
}
.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-toggle-list {
  margin-top: 12px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.footer-toggle-list:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.footer-toggle-list.expanded .footer-toggle-chev {
  transform: rotate(180deg);
}
.footer-toggle-chev {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.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-links--contact-inline {
  margin-top: 4px;
}
.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-dev {
  font-size: 0.8rem;
  color: #94a3b8;
}
.footer-dev a {
  color: #cbd5e1;
  transition: color 0.2s;
}
.footer-dev 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;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: #64748b;
}
.breadcrumb li a {
  color: #64748b;
  transition: color 0.2s;
}
.breadcrumb li a:hover {
  color: #1a60d1;
}
.breadcrumb li.active {
  color: #94a3b8;
}
.breadcrumb .sep {
  display: flex;
  align-items: center;
  color: #cbd5e1;
}
.breadcrumb .sep svg {
  width: 13px;
  height: 13px;
}
.breadcrumb--light li {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb--light li a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb--light li a:hover {
  color: #fff;
}
.breadcrumb--light li.active {
  color: rgba(255, 255, 255, 0.45);
}
.breadcrumb--light .sep {
  color: rgba(255, 255, 255, 0.35);
}

.explore-hero {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 128px 0 56px;
  position: relative;
  overflow: hidden;
}
.explore-hero::after {
  display: none;
}
.explore-hero .breadcrumb--light li {
  color: #64748b;
}
.explore-hero .breadcrumb--light li a {
  color: #64748b;
}
.explore-hero .breadcrumb--light li a:hover {
  color: #1a60d1;
}
.explore-hero .breadcrumb--light li.active {
  color: #94a3b8;
}
.explore-hero .breadcrumb--light .sep {
  color: #cbd5e1;
}
.explore-hero-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #1b2563;
  line-height: 1.1;
  margin: 14px 0 8px;
}
.explore-hero-desc {
  font-size: 0.95rem;
  color: #475569;
  max-width: 520px;
}

.explore-body {
  padding: 40px 0 80px;
}

.explore-layout {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .explore-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .explore-sidebar {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    align-items: flex-start;
    justify-content: flex-end;
  }
  .explore-sidebar.open {
    display: flex;
  }
  .explore-sidebar.open .sidebar-inner {
    transform: translateX(0);
  }
  .explore-sidebar .sidebar-inner {
    width: 310px;
    height: 100vh;
    overflow-y: auto;
    border-radius: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
}

.sidebar-inner {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 120px;
}

.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.sidebar-head-title {
  font-size: 0.93rem;
  font-weight: 700;
  color: #1b2563;
}

.sidebar-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  transition: color 0.2s;
}
.sidebar-clear-btn svg {
  width: 13px;
  height: 13px;
}
.sidebar-clear-btn:hover {
  color: #1a60d1;
}

.filter-group {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}
.filter-group:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 10px;
}

.filter-price-display {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a60d1;
  text-transform: none;
  letter-spacing: 0;
}

.filter-search-wrap {
  position: relative;
}
.filter-search-wrap svg {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #94a3b8;
  pointer-events: none;
}

.filter-search-input {
  width: 100%;
  padding: 9px 12px 9px 34px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.86rem;
  background: #f8fafc;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.filter-search-input:focus {
  border-color: #1a60d1;
  background: #fff;
}
.filter-search-input::-moz-placeholder {
  color: #94a3b8;
}
.filter-search-input::placeholder {
  color: #94a3b8;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-chip {
  padding: 5px 12px;
  border-radius: 50px;
  border: 1.5px solid #e2e8f0;
  font-size: 0.76rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #fff;
}
.filter-chip.active, .filter-chip:hover {
  border-color: #1a60d1;
  background: #1a60d1;
  color: #fff;
}

.filter-select-wrap {
  position: relative;
}
.filter-select-wrap svg {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #94a3b8;
  pointer-events: none;
}

.filter-select {
  width: 100%;
  padding: 9px 34px 9px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.86rem;
  background: #f8fafc;
  color: #0f172a;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.filter-select:focus {
  border-color: #1a60d1;
}

.filter-range {
  position: relative;
  height: 28px;
  padding-top: 10px;
}

.filter-range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.filter-range-track {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  pointer-events: none;
}

.filter-range-fill {
  position: absolute;
  height: 100%;
  background: #1a60d1;
  border-radius: 2px;
}

.filter-date-wrap {
  position: relative;
}
.filter-date-wrap svg {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #94a3b8;
  pointer-events: none;
}

.filter-date-input {
  width: 100%;
  padding: 9px 12px 9px 34px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.86rem;
  background: #f8fafc;
  color: #0f172a;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.filter-date-input:focus {
  border-color: #1a60d1;
}

.filter-apply-btn {
  width: 100%;
  padding: 11px;
  background: #1a60d1;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.25s ease;
  margin-top: 6px;
}
.filter-apply-btn svg {
  width: 14px;
  height: 14px;
}
.filter-apply-btn:hover {
  background: #1449a8;
  transform: translateY(-1px);
}

.explore-main {
  min-width: 0;
}

.explore-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 12px;
  flex-wrap: wrap;
}

.explore-count {
  font-size: 0.88rem;
  color: #475569;
}
.explore-count strong {
  color: #1b2563;
}

.explore-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.active-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #eff6ff;
  color: #1a60d1;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 600;
}
.active-filter-tag a {
  color: #1a60d1;
  opacity: 0.65;
  font-size: 0.9rem;
  line-height: 1;
}
.active-filter-tag a:hover {
  opacity: 1;
}

.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.mobile-filter-btn svg {
  width: 15px;
  height: 15px;
}
@media (max-width: 900px) {
  .mobile-filter-btn {
    display: flex;
  }
}

.filter-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a60d1;
  border: 2px solid #fff;
}

.explore-grid {
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
}
@media (max-width: 640px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }
}

.explore-pagination {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.fp {
  display: flex;
  justify-content: center;
  width: 100%;
}
.fp-list {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.fp-item {
  display: inline-flex;
}
.fp-item.active .fp-link {
  background: #1a60d1;
  color: #fff;
  border-color: #1a60d1;
  cursor: default;
}
.fp-item.disabled .fp-link {
  color: #cbd5e1;
  background: transparent;
  border-color: rgba(0, 0, 0, 0.06);
  cursor: not-allowed;
  opacity: 0.6;
}
.fp-link {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1b2563;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.fp-link svg {
  width: 16px;
  height: 16px;
}
.fp-link:hover {
  background: #1a60d1;
  color: #fff;
  border-color: #1a60d1;
}
.fp-link--ellipsis {
  border: none;
  background: transparent;
  cursor: default;
}
.fp-link--ellipsis:hover {
  background: transparent;
  color: #94a3b8;
  border: none;
}

.explore-empty {
  text-align: center;
  padding: 72px 24px;
}
.explore-empty h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1b2563;
  margin: 16px 0 8px;
}
.explore-empty p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 24px;
}
.explore-empty-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: #94a3b8;
}
.explore-empty-icon svg {
  width: 34px;
  height: 34px;
}

.detail-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 52px;
  overflow: hidden;
}
.detail-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.detail-hero-bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 24, 0.88) 0%, rgba(5, 10, 24, 0.5) 50%, rgba(5, 10, 24, 0.32) 100%);
  z-index: 1;
}
.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  width: 100%;
}
.detail-hero-content {
  max-width: 720px;
}
.detail-hero-title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 10px 0 16px;
}
.detail-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.detail-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}
.detail-meta-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.detail-meta-item.detail-meta-price {
  font-weight: 700;
  color: #f59e0b;
  font-size: 0.98rem;
}

.detail-meta-arrow {
  opacity: 0.55;
}

.detail-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.07em;
  backdrop-filter: blur(6px);
}

.detail-body {
  padding: 44px 0 80px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 336px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
}

.detail-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-gallery {
  border-radius: 20px;
  overflow: hidden;
}
.detail-gallery-single img {
  width: 100%;
  max-height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.detail-gallery-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.detail-gallery-two .detail-gallery-item {
  display: block;
}
.detail-gallery-two .detail-gallery-item img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.detail-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  aspect-ratio: 2/1;
}
.detail-gallery-main {
  display: block;
  position: relative;
  overflow: hidden;
  grid-column: 1;
  grid-row: 1/span 2;
}
.detail-gallery-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.detail-gallery-main:hover img {
  transform: scale(1.04);
}
.detail-gallery-thumbs {
  display: contents;
}
.detail-gallery-thumb {
  display: block;
  overflow: hidden;
}
.detail-gallery-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.detail-gallery-thumb:hover img {
  transform: scale(1.05);
}
.detail-gallery-more {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}
.detail-gallery-hidden {
  display: none;
}

.detail-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
}
.detail-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b2563;
  margin-bottom: 20px;
}
.detail-card-title svg {
  width: 20px;
  height: 20px;
  color: #1a60d1;
  flex-shrink: 0;
}

.detail-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.6;
}
.detail-highlights li svg {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-prose {
  font-size: 0.92rem;
  line-height: 1.85;
  color: #334155;
}
.detail-prose p {
  margin-bottom: 14px;
}
.detail-prose h1, .detail-prose h2, .detail-prose h3, .detail-prose h4 {
  color: #1b2563;
  font-weight: 700;
  margin: 20px 0 10px;
}
.detail-prose ul, .detail-prose ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.detail-prose li {
  margin-bottom: 6px;
}
.detail-prose strong {
  color: #0f172a;
}
.detail-prose a {
  color: #1a60d1;
  text-decoration: underline;
}

.detail-program {
  display: flex;
  flex-direction: column;
}
.detail-program-item {
  display: flex;
  gap: 16px;
  position: relative;
}
.detail-program-item:not(:last-child) {
  padding-bottom: 20px;
}
.detail-program-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}
.detail-program-step {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a60d1;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.detail-program-body {
  flex: 1;
}
.detail-program-title {
  font-size: 0.93rem;
  font-weight: 700;
  color: #1b2563;
  margin-bottom: 6px;
}
.detail-program-desc {
  font-size: 0.87rem;
  color: #475569;
  line-height: 1.65;
}
.detail-program-classes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.detail-program-class {
  padding: 3px 10px;
  background: #eff6ff;
  color: #1a60d1;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
}

.detail-attrs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) {
  .detail-attrs {
    grid-template-columns: 1fr;
  }
}

.detail-attr-group-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 12px;
}
.detail-attr-group-title svg {
  width: 14px;
  height: 14px;
}
.detail-attr-group-title--green {
  color: #10b981;
}
.detail-attr-group-title--red {
  color: #ef4444;
}

.detail-attr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  color: #334155;
  padding: 7px 0;
  line-height: 1.5;
}
.detail-attr svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.detail-attr--include svg {
  color: #10b981;
}
.detail-attr--exclude svg {
  color: #ef4444;
}
.detail-attr + .detail-attr {
  border-top: 1px solid #f1f5f9;
}

.detail-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.detail-spec {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.detail-spec:hover {
  background: #fff;
  border-color: rgba(26, 96, 209, 0.35);
  transform: translateY(-1px);
}
.detail-spec-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 96, 209, 0.1);
  color: #1a60d1;
  border-radius: 10px;
}
.detail-spec-icon svg {
  width: 20px;
  height: 20px;
}
.detail-spec-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.25;
}
.detail-spec-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}
.detail-spec-value {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  word-break: break-word;
}
.detail-spec-value small {
  font-size: 0.8rem;
  font-weight: 500;
  color: #64748b;
}

.detail-address-text {
  font-size: 0.9rem;
  color: #64748b;
  margin: -0.25rem 0 0.75rem;
}

.detail-map {
  height: 340px;
  border-radius: 10px;
  overflow: hidden;
}
.detail-map .leaflet-control-attribution {
  display: none;
}

.detail-price-table {
  display: flex;
  flex-direction: column;
}

.detail-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.9rem;
  color: #475569;
}
.detail-price-row + .detail-price-row {
  border-top: 1px solid #f1f5f9;
}
.detail-price-row-val {
  font-weight: 700;
  color: #1b2563;
}

.detail-sidebar {
  position: sticky;
  top: 120px;
}
@media (max-width: 900px) {
  .detail-sidebar {
    position: static;
  }
}

.booking-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 10px 40px -4px rgba(0, 0, 0, 0.14);
  border: 1px solid #f1f5f9;
}
.booking-card-price {
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f1f5f9;
}

.booking-price-ask {
  font-size: 1.05rem;
  font-weight: 700;
  color: #64748b;
}

.booking-price-old {
  font-size: 0.83rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.booking-price-main {
  font-size: 1.9rem;
  font-weight: 900;
  color: #1a60d1;
  line-height: 1;
}

.booking-price-per {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 4px;
}

.booking-info-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.booking-info-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: #475569;
}
.booking-info-list li svg {
  width: 15px;
  height: 15px;
  color: #1a60d1;
  flex-shrink: 0;
}

.booking-form {
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
}
.booking-form-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1b2563;
  margin-bottom: 14px;
}

.booking-field {
  margin-bottom: 13px;
}
.booking-field-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}
.booking-field-label svg {
  width: 13px;
  height: 13px;
  color: #1a60d1;
}

.booking-select-wrap {
  position: relative;
}
.booking-select-wrap svg {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #94a3b8;
  pointer-events: none;
}

.booking-select {
  width: 100%;
  padding: 10px 34px 10px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.86rem;
  background: #f8fafc;
  color: #0f172a;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.booking-select:focus {
  border-color: #1a60d1;
}

.booking-date-input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.86rem;
  background: #f8fafc;
  color: #0f172a;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.booking-date-input:focus {
  border-color: #1a60d1;
}

.booking-people {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
}

.booking-people-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}
.booking-people-row + .booking-people-row {
  border-top: 1px solid #f1f5f9;
}

.booking-people-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.booking-people-label {
  font-size: 0.87rem;
  font-weight: 600;
  color: #1b2563;
}

.booking-people-age {
  font-size: 0.7rem;
  color: #64748b;
}

.booking-people-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a60d1;
}
.booking-people-price:empty {
  display: none;
}

.booking-counter {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.booking-counter-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  color: #475569;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.booking-counter-btn svg {
  width: 13px;
  height: 13px;
}
.booking-counter-btn:hover {
  background: #eff6ff;
  color: #1a60d1;
}
.booking-counter-val {
  width: 34px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1b2563;
  border-left: 1.5px solid #e2e8f0;
  border-right: 1.5px solid #e2e8f0;
  line-height: 30px;
}

.booking-summary {
  background: #f8fafc;
  border-radius: 10px;
  padding: 13px;
  margin-bottom: 12px;
}
.booking-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: #475569;
  padding: 3px 0;
}
.booking-summary-row--total {
  font-weight: 700;
  color: #1b2563;
  border-top: 1px solid #e2e8f0;
  margin-top: 7px;
  padding-top: 9px;
}
.booking-summary-total {
  color: #1a60d1;
  font-size: 0.98rem;
}

.booking-cta-btn {
  margin-bottom: 8px;
}

.booking-contact-btn {
  margin-top: 6px;
}

.booking-hero {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 128px 0 44px;
}
.booking-hero::after {
  display: none;
}
.booking-hero .breadcrumb--light li {
  color: #64748b;
}
.booking-hero .breadcrumb--light li a {
  color: #64748b;
}
.booking-hero .breadcrumb--light li a:hover {
  color: #1a60d1;
}
.booking-hero .breadcrumb--light li.active {
  color: #94a3b8;
}
.booking-hero .breadcrumb--light .sep {
  color: #cbd5e1;
}
.booking-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.booking-hero-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #1b2563;
  line-height: 1.1;
  margin-bottom: 8px;
}
.booking-hero-desc {
  font-size: 0.95rem;
  color: #475569;
  max-width: 460px;
}

.booking-section {
  padding: 44px 0 80px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 356px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
}

.booking-form-col {
  min-width: 0;
}

.booking-steps {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-step span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  transition: color 0.2s;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .booking-step span {
    display: none;
  }
}
.booking-step.active .booking-step-num {
  background: #1a60d1;
  color: #fff;
  border-color: #1a60d1;
}
.booking-step.active span {
  color: #1b2563;
}
.booking-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: #94a3b8;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.booking-step-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  margin: 0 8px;
}

.booking-success {
  background: #fff;
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
}
.booking-success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: #10b981;
}
.booking-success-icon svg {
  width: 34px;
  height: 34px;
}
.booking-success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1b2563;
  margin-bottom: 10px;
}
.booking-success-desc {
  font-size: 0.93rem;
  color: #64748b;
  margin-bottom: 22px;
  line-height: 1.65;
}
.booking-success-code-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #eff6ff;
  border-radius: 10px;
  padding: 12px 22px;
  margin-bottom: 26px;
  font-size: 0.88rem;
  color: #475569;
}
.booking-success-code {
  font-size: 1.25rem;
  font-weight: 900;
  color: #1a60d1;
  letter-spacing: 0.12em;
}
.booking-success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-form-section {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  margin-bottom: 22px;
}
.booking-form-section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.booking-form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1b2563;
  margin-bottom: 4px;
}
.booking-form-section-desc {
  font-size: 0.84rem;
  color: #64748b;
}

.booking-section-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1a60d1;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bf-grid {
  display: grid;
  gap: 16px;
}
.bf-grid--2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .bf-grid--2 {
    grid-template-columns: 1fr;
  }
}

.bf-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.bf-field:last-child {
  margin-bottom: 0;
}

.bf-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bf-required {
  color: #ef4444;
}

.bf-input {
  padding: 11px 13px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.89rem;
  background: #f8fafc;
  color: #0f172a;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.bf-input:focus {
  border-color: #1a60d1;
  background: #fff;
}
.bf-input::-moz-placeholder {
  color: #94a3b8;
}
.bf-input::placeholder {
  color: #94a3b8;
}
.bf-input--error {
  border-color: #ef4444;
  background: #fff5f5;
}

.bf-textarea {
  padding: 11px 13px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.89rem;
  background: #f8fafc;
  color: #0f172a;
  outline: none;
  resize: vertical;
  min-height: 88px;
  width: 100%;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.bf-textarea:focus {
  border-color: #1a60d1;
  background: #fff;
}
.bf-textarea::-moz-placeholder {
  color: #94a3b8;
}
.bf-textarea::placeholder {
  color: #94a3b8;
}

.bf-error {
  font-size: 0.73rem;
  color: #ef4444;
  min-height: 14px;
}

.bf-form-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 10px;
  font-size: 0.87rem;
  color: #dc2626;
  margin-top: 14px;
}

.bf-people-group {
  margin-bottom: 22px;
}
.bf-people-group:last-child {
  margin-bottom: 0;
}
.bf-people-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  font-weight: 700;
  color: #1b2563;
  margin-bottom: 13px;
}
.bf-people-group-title svg {
  width: 17px;
  height: 17px;
  color: #1a60d1;
}

.bf-people-age {
  font-size: 0.72rem;
  font-weight: 400;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 4px;
}

.bf-person-card {
  background: #f8fafc;
  border: 1.5px solid #f1f5f9;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}
.bf-person-card:last-child {
  margin-bottom: 0;
}
.bf-person-card-header {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1a60d1;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 13px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.payment-option {
  display: block;
  cursor: pointer;
}
.payment-option-inner {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.25s ease;
  background: #fff;
}
.payment-option:hover .payment-option-inner, .payment-option.selected .payment-option-inner {
  border-color: #1a60d1;
  background: #eff6ff;
}
.payment-option-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s;
}
.payment-option-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #1a60d1;
  transform: scale(0);
  transition: transform 0.15s ease;
}
.payment-option.selected .payment-option-radio {
  border-color: #1a60d1;
}
.payment-option.selected .payment-option-radio::after {
  transform: scale(1);
}
.payment-option-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.payment-option-icon svg {
  width: 17px;
  height: 17px;
}
.payment-option-icon--blue {
  background: #1a60d1;
}
.payment-option-icon--amber {
  background: #f59e0b;
}
.payment-option-icon--green {
  background: #10b981;
}
.payment-option-body {
  flex: 1;
  min-width: 0;
}
.payment-option-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1b2563;
  margin-bottom: 2px;
}
.payment-option-desc {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.4;
}
.payment-option-amount {
  font-size: 0.98rem;
  font-weight: 800;
  color: #1a60d1;
  white-space: nowrap;
  flex-shrink: 0;
}

.booking-submit-btn {
  padding: 15px;
  font-size: 0.93rem;
}

.booking-submit-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-submit-loading .spin {
  animation: spin 1s linear infinite;
  width: 17px;
  height: 17px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.booking-disclaimer {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  color: #94a3b8;
  margin-top: 11px;
  justify-content: center;
}
.booking-disclaimer svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.booking-summary-col {
  position: sticky;
  top: 120px;
}
@media (max-width: 900px) {
  .booking-summary-col {
    position: static;
  }
}

.booking-summary-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 40px -4px rgba(0, 0, 0, 0.14);
  border: 1px solid #f1f5f9;
}

.bsc-trip {
  display: flex;
  gap: 13px;
  margin-bottom: 14px;
}
.bsc-trip-img {
  width: 78px;
  height: 78px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.bsc-trip-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bsc-trip-info {
  flex: 1;
  min-width: 0;
}

.bsc-category {
  font-size: 0.68rem;
  font-weight: 700;
  color: #1a60d1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.bsc-title {
  font-size: 0.93rem;
  font-weight: 700;
  color: #1b2563;
  line-height: 1.3;
  margin-bottom: 5px;
}

.bsc-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: #64748b;
}
.bsc-location svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.bsc-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 14px 0;
}

.bsc-detail-rows, .bsc-price-rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bsc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.84rem;
}
.bsc-row-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  flex-shrink: 0;
}
.bsc-row-label svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.bsc-row-val {
  font-weight: 600;
  color: #1b2563;
  text-align: right;
}

.bsc-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.93rem;
  color: #475569;
  margin-top: 4px;
}
.bsc-total strong {
  font-size: 1.35rem;
  font-weight: 900;
  color: #1a60d1;
}

.bsc-payment-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  background: #eff6ff;
  border-radius: 10px;
  padding: 11px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: #1a60d1;
  line-height: 1.55;
}
.bsc-payment-note svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.bsc-trust {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 14px;
}
.bsc-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  color: #64748b;
}
.bsc-trust-item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: #10b981;
}

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

.detail-gallery-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: inherit;
}
.detail-gallery-zoom svg {
  width: 36px;
  height: 36px;
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.detail-gallery-zoom--sm svg {
  width: 24px;
  height: 24px;
}

.detail-gallery-item,
.detail-gallery-main,
.detail-gallery-thumb {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.detail-gallery-item:hover .detail-gallery-zoom,
.detail-gallery-main:hover .detail-gallery-zoom,
.detail-gallery-thumb:hover .detail-gallery-zoom {
  opacity: 1;
}

.detail-gallery-hidden {
  display: none;
}

.gallery-lb {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-lb.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 24, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gallery-lb-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.gallery-lb-close svg {
  width: 20px;
  height: 20px;
}
.gallery-lb-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.gallery-lb-stage {
  position: relative;
  z-index: 5;
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .gallery-lb-stage {
    max-width: calc(100vw - 100px);
  }
}
@media (max-width: 640px) {
  .gallery-lb-stage {
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 200px);
  }
}

.gallery-lb-photo {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: opacity 0.15s ease;
}
.gallery-lb-photo--fade {
  opacity: 0;
}
@media (max-width: 640px) {
  .gallery-lb-photo {
    max-height: calc(100vh - 200px);
  }
}

.gallery-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.gallery-lb-nav svg {
  width: 22px;
  height: 22px;
}
.gallery-lb-nav:hover {
  background: rgba(255, 255, 255, 0.24);
}
.gallery-lb-nav.gallery-lb-prev {
  left: 20px;
}
.gallery-lb-nav.gallery-lb-next {
  right: 20px;
}
@media (max-width: 640px) {
  .gallery-lb-nav {
    width: 38px;
    height: 38px;
  }
  .gallery-lb-nav.gallery-lb-prev {
    left: 6px;
  }
  .gallery-lb-nav.gallery-lb-next {
    right: 6px;
  }
  .gallery-lb-nav svg {
    width: 18px;
    height: 18px;
  }
}

.gallery-lb-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 16px 24px 20px;
  background: linear-gradient(to top, rgba(5, 10, 24, 0.7) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gallery-lb-counter {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.gallery-lb-thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  max-width: min(600px, 100vw - 40px);
  padding: 2px 4px 4px;
  scrollbar-width: none;
}
.gallery-lb-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-lb-thumb {
  flex-shrink: 0;
  width: 52px;
  height: 40px;
  border-radius: 7px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.55;
}
.gallery-lb-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery-lb-thumb.active {
  border-color: #fff;
  opacity: 1;
}
.gallery-lb-thumb:hover {
  opacity: 0.85;
}

.filter-hf {
  margin-bottom: 0;
}

.filter-hf-panel {
  z-index: 100;
}

.filter-hf-opt {
  padding: 10px 14px;
}
.filter-hf-opt.selected {
  background: #eff6ff;
}
.filter-hf-opt:hover:not(.selected) {
  background: #f8fafc;
}
.filter-hf-opt .hf-opt-label {
  font-size: 0.87rem;
  font-weight: 500;
  color: #334155;
}
.filter-hf-opt.selected .hf-opt-label {
  color: #1a60d1;
  font-weight: 600;
}

.filter-price-nums {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.filter-price-num-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-price-num-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.filter-price-num {
  width: 100%;
  padding: 9px 10px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.87rem;
  font-weight: 600;
  color: #1b2563;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s;
  text-align: center;
  -moz-appearance: textfield;
}
.filter-price-num:focus {
  border-color: #1a60d1;
  background: #fff;
}
.filter-price-num::-webkit-outer-spin-button, .filter-price-num::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filter-price-sep {
  font-size: 0.9rem;
  color: #cbd5e1;
  padding-top: 18px;
  flex-shrink: 0;
}

.blog-hero {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 128px 0 56px;
  position: relative;
  overflow: hidden;
}
.blog-hero::after {
  display: none;
}
.blog-hero .breadcrumb--light li {
  color: #64748b;
}
.blog-hero .breadcrumb--light li a {
  color: #64748b;
}
.blog-hero .breadcrumb--light li a:hover {
  color: #1a60d1;
}
.blog-hero .breadcrumb--light li.active {
  color: #94a3b8;
}
.blog-hero .breadcrumb--light .sep {
  color: #cbd5e1;
}

.blog-hero-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1b2563;
  line-height: 1.2;
  margin: 14px 0 8px;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.blog-hero-desc {
  font-size: 0.95rem;
  color: #475569;
  max-width: 520px;
}

.blog-body {
  padding: 60px 0 80px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@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);
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.blog-card:hover {
  box-shadow: 0 10px 40px -4px rgba(0, 0, 0, 0.14);
  transform: translateY(-3px);
}

.blog-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f1f5f9;
  flex-shrink: 0;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1a60d1;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
}
.blog-card-cat:hover {
  background: #1b2563;
}

.blog-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #94a3b8;
  margin-bottom: 10px;
}
.blog-card-meta svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1b2563;
  line-height: 1.45;
  margin-bottom: 16px;
  flex: 1;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-card-title a:hover {
  color: #1a60d1;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a60d1;
  text-decoration: none;
  padding-top: 14px;
  border-top: 1.5px solid #f1f5f9;
  margin-top: auto;
  transition: all 0.25s ease;
}
.blog-card-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s;
}
.blog-card-link:hover {
  color: #1b2563;
}
.blog-card-link:hover svg {
  transform: translateX(3px);
}

.blog-pagination {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}

.blog-empty {
  background: #fff;
  border-radius: 20px;
  padding: 64px 32px;
  text-align: center;
  color: #94a3b8;
}
.blog-empty svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: block;
}
.blog-empty p {
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .blog-sidebar-wrap {
    display: none;
  }
}

.blog-sidebar-sticky {
  position: sticky;
  top: 116px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-widget {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
}

.blog-widget-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1b2563;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #1a60d1;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.blog-cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog-cat-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 0.87rem;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  transition: all 0.25s ease;
}
.blog-cat-list li a span {
  background: #f1f5f9;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.blog-cat-list li a:hover, .blog-cat-list li a.active {
  background: #eff6ff;
  color: #1a60d1;
}
.blog-cat-list li a:hover span, .blog-cat-list li a.active span {
  background: #1a60d1;
  color: #fff;
}

.blog-recent {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}
.blog-recent:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.blog-recent:first-child {
  padding-top: 0;
}

.blog-recent-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.blog-recent-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s;
}
.blog-recent-img:hover img {
  transform: scale(1.07);
}

.blog-recent-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.blog-recent-date {
  font-size: 0.73rem;
  color: #94a3b8;
  font-weight: 500;
}

.blog-recent-title {
  font-size: 0.83rem;
  font-weight: 600;
  color: #1b2563;
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.blog-recent-title:hover {
  color: #1a60d1;
}

.blog-detail-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 52px;
  overflow: hidden;
  background: #1b2563;
}

.blog-detail-hero-bg {
  position: absolute;
  inset: 0;
}
.blog-detail-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.35;
}

.blog-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
}

.blog-detail-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  width: 100%;
}

.blog-detail-hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  flex-wrap: wrap;
}

.blog-detail-cat {
  background: #1a60d1;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
}
.blog-detail-cat:hover {
  background: #f59e0b;
  color: #1b2563;
}

.blog-detail-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}
.blog-detail-date svg {
  width: 13px;
  height: 13px;
}

.blog-detail-hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  max-width: 820px;
}

.blog-detail-body {
  padding: 60px 0 80px;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }
}

.blog-detail-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 52px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
}
@media (max-width: 640px) {
  .blog-detail-card {
    padding: 28px 22px;
  }
}

.blog-prose {
  font-size: 1rem;
  line-height: 1.85;
  color: #1e293b;
}
.blog-prose h1, .blog-prose h2, .blog-prose h3, .blog-prose h4, .blog-prose h5, .blog-prose h6 {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: #1b2563;
  line-height: 1.3;
  margin: 1.8em 0 0.7em;
}
.blog-prose h1:first-child, .blog-prose h2:first-child, .blog-prose h3:first-child, .blog-prose h4:first-child, .blog-prose h5:first-child, .blog-prose h6:first-child {
  margin-top: 0;
}
.blog-prose h1 {
  font-size: 2rem;
}
.blog-prose h2 {
  font-size: 1.5rem;
}
.blog-prose h3 {
  font-size: 1.25rem;
}
.blog-prose h4 {
  font-size: 1.1rem;
}
.blog-prose p {
  margin-bottom: 1.3em;
}
.blog-prose a {
  color: #1a60d1;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-prose a:hover {
  color: #1b2563;
}
.blog-prose ul, .blog-prose ol {
  margin: 1em 0 1.3em 1.5em;
}
.blog-prose ul li, .blog-prose ol li {
  margin-bottom: 0.4em;
}
.blog-prose blockquote {
  border-left: 4px solid #1a60d1;
  padding: 16px 20px;
  margin: 1.5em 0;
  background: #eff6ff;
  border-radius: 0 12px 12px 0;
  color: #334155;
  font-style: italic;
}
.blog-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 1.5em auto;
}
.blog-prose code {
  background: #f1f5f9;
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.88em;
  color: #1b2563;
}
.blog-prose pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 20px 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 1.5em 0;
}
.blog-prose pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.blog-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 0.92rem;
}
.blog-prose table th {
  background: #1b2563;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.blog-prose table td {
  padding: 9px 14px;
  border-bottom: 1px solid #e2e8f0;
}
.blog-prose table tr:nth-child(even) td {
  background: #f8fafc;
}
.blog-prose hr {
  border: none;
  border-top: 2px solid #f1f5f9;
  margin: 2em 0;
}

.blog-related {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 2px solid #f1f5f9;
}

.blog-related-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1b2563;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 28px;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 640px) {
  .blog-related-grid {
    grid-template-columns: 1fr;
  }
}

.cmt-body {
  padding: 48px 0 80px;
}

.cmt-card {
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 10px 40px -4px rgba(0, 0, 0, 0.14);
}
@media (max-width: 640px) {
  .cmt-card {
    padding: 24px 20px;
  }
}

.cmt-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1.5px solid #f1f5f9;
}
.cmt-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cmt-section-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1b2563;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.cmt-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
@media (max-width: 640px) {
  .cmt-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cmt-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cmt-option-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.87rem;
  font-weight: 500;
  color: #334155;
  transition: all 0.25s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.cmt-option-label:hover {
  border-color: #1a60d1;
  color: #1a60d1;
}
.cmt-option input:checked + .cmt-option-label {
  border-color: #1a60d1;
  background: #eff6ff;
  color: #1a60d1;
}
.cmt-option input:checked + .cmt-option-label .cmt-option-check {
  background: #1a60d1;
  border-color: #1a60d1;
  color: #fff;
}
.cmt-option input:checked + .cmt-option-label .cmt-option-check--radio::after {
  opacity: 1;
}
.cmt-option-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.cmt-option-check svg {
  width: 11px;
  height: 11px;
  opacity: 0;
}
.cmt-option-check--radio {
  border-radius: 50%;
  position: relative;
}
.cmt-option-check--radio::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.15s;
}
.cmt-option input:checked + .cmt-option-label .cmt-option-check svg {
  opacity: 1;
}

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

.cmt-response {
  margin-left: 16px;
}

.contact-hero {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 128px 0 56px;
  position: relative;
  overflow: hidden;
}
.contact-hero::after {
  display: none;
}
.contact-hero .breadcrumb--light li {
  color: #64748b;
}
.contact-hero .breadcrumb--light li a {
  color: #64748b;
}
.contact-hero .breadcrumb--light li a:hover {
  color: #1a60d1;
}
.contact-hero .breadcrumb--light li.active {
  color: #94a3b8;
}
.contact-hero .breadcrumb--light .sep {
  color: #cbd5e1;
}

.contact-hero-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1b2563;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 18px 0 10px;
}

.contact-hero-sub {
  color: #475569;
  font-size: 0.97rem;
  max-width: 520px;
}

.contact-body {
  padding: 60px 0 80px;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
@media (max-width: 900px) {
  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.25s ease;
}
.contact-info-card:hover {
  box-shadow: 0 10px 40px -4px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #eff6ff;
  color: #1a60d1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 5px;
}

.contact-info-value {
  font-size: 0.92rem;
  color: #334155;
  font-weight: 500;
  display: block;
  line-height: 1.55;
}
.contact-info-value--link {
  color: #1b2563;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-value--link:hover {
  color: #1a60d1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 10px 40px -4px rgba(0, 0, 0, 0.14);
}
@media (max-width: 640px) {
  .contact-form-card {
    padding: 28px 22px;
  }
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1b2563;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 28px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form-group--full {
  margin-bottom: 24px;
}

.contact-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}
.contact-label span {
  color: #ef4444;
  margin-left: 2px;
}

.contact-input {
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.92rem;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  transition: all 0.25s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  width: 100%;
}
.contact-input:focus {
  border-color: #1a60d1;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 96, 209, 0.1);
}

.contact-textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.captcha-field {
  margin: 8px 0 20px;
}
.captcha-field .h-captcha,
.captcha-field .g-recaptcha {
  display: inline-block;
}

.contact-response {
  font-size: 0.87rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px;
}
.contact-response:empty {
  display: none;
}
.contact-response--ok {
  background: #ecfdf5;
  color: #10b981;
}
.contact-response--err {
  background: #fff5f5;
  color: #ef4444;
}

.contact-map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  height: 100%;
  min-height: 400px;
}
@media (max-width: 900px) {
  .contact-map-wrap {
    min-height: 300px;
    height: 300px;
  }
}

.contact-map {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  min-height: 400px;
}
@media (max-width: 900px) {
  .contact-map {
    min-height: 300px;
  }
}

.dest-hero {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 128px 0 56px;
  position: relative;
  overflow: hidden;
}
.dest-hero::after {
  display: none;
}
.dest-hero .breadcrumb--light li {
  color: #64748b;
}
.dest-hero .breadcrumb--light li a {
  color: #64748b;
}
.dest-hero .breadcrumb--light li a:hover {
  color: #1a60d1;
}
.dest-hero .breadcrumb--light li.active {
  color: #94a3b8;
}
.dest-hero .breadcrumb--light .sep {
  color: #cbd5e1;
}
.dest-hero-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #1b2563;
  line-height: 1.1;
  margin: 14px 0 8px;
}
.dest-hero-desc {
  font-size: 0.95rem;
  color: #475569;
  max-width: 520px;
}

.dest-body {
  padding: 56px 0 80px;
}

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

.dest-card {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #e2e8f0;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px -4px rgba(0, 0, 0, 0.14);
}
.dest-card:hover .dest-card-img img {
  transform: scale(1.07);
}
.dest-card:hover .dest-card-cta {
  opacity: 1;
  transform: translateY(0);
}
.dest-card-img {
  position: absolute;
  inset: 0;
}
.dest-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card-img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2e8f0;
}
.dest-card-img--empty svg {
  width: 48px;
  height: 48px;
  color: #94a3b8;
}
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 20, 50, 0.85) 0%, rgba(10, 20, 50, 0.2) 55%, transparent 100%);
}
.dest-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 20px;
  z-index: 2;
}
.dest-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}
.dest-card-location svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.dest-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.dest-card-cta {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.dest-card-cta-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #1b2563;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.dest-card-cta-text svg {
  width: 14px;
  height: 14px;
}

.dest-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.dest-detail-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.dest-detail-hero-bg {
  position: absolute;
  inset: 0;
}
.dest-detail-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.dest-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 20, 50, 0.88) 0%, rgba(10, 20, 50, 0.45) 50%, rgba(10, 20, 50, 0.2) 100%);
}
.dest-detail-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 48px;
  width: 100%;
}
.dest-detail-hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-top: 10px;
}

.dest-detail-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 14px;
}
.dest-detail-location svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.dest-detail-body {
  padding: 48px 0 80px;
}

.dest-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .dest-detail-layout {
    grid-template-columns: 1fr;
  }
}

.dest-detail-main {
  min-width: 0;
}

.dest-trips {
  margin-top: 48px;
}
.dest-trips-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1b2563;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
}
.dest-trips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .dest-trips-grid {
    grid-template-columns: 1fr;
  }
}

.dest-recent-img {
  border-radius: 12px;
  overflow: hidden;
  width: 68px;
  height: 68px;
  flex-shrink: 0;
}
.dest-recent-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (max-width: 640px) {
  .floating-actions {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.25s ease, visibility 0.25s ease;
}
@media (max-width: 640px) {
  .floating-btn {
    width: 48px;
    height: 48px;
  }
}
.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}
.floating-btn--whatsapp {
  background: #25d366;
}
.floating-btn--whatsapp svg {
  width: 30px;
  height: 30px;
}
.floating-btn--whatsapp:hover {
  background: #1ebe5b;
}
.floating-btn--top {
  background: #1a60d1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
.floating-btn--top svg {
  width: 22px;
  height: 22px;
}
.floating-btn--top:hover {
  background: #1449a8;
}
.floating-btn--top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}