/* Main stylesheet - trích từ giao diện index.html (trang chủ + header + footer dùng chung) */
:root {
  --primary: #0B2D6B;
  --secondary: #FF7A00;
  --success: #22C55E;
  --background: #F8FAFC;
  --text: #1E293B;
  --muted: #64748B;
  --line: #E2E8F0;
  --white: #FFFFFF;
  --blue-soft: #EAF3FF;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Be Vietnam Pro', sans-serif;
  background: var(--background);
  color: var(--text);
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

.container {
    width: min(1294px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  height: 84px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 210px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #FF9B18, #FF7A00);
  box-shadow: 0 6px 16px rgba(255, 122, 0, 0.28);
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 27px;
  height: 27px;
  stroke-width: 2.4;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  display: block;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name span {
  color: #1B56A6;
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1;
  color: #315A96;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex: 1;
  height: 100%;
}

.main-nav a {
  height: 100%;
  display: inline-flex;
  align-items: center;
  position: relative;
  color: #21365F;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a.active {
  color: var(--secondary);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid #D7E1EE;
  border-radius: 6px;
  place-items: center;
  color: var(--primary);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle .nav-toggle-close {
  display: none;
}

.site-header.nav-open .nav-toggle .nav-toggle-open {
  display: none;
}

.site-header.nav-open .nav-toggle .nav-toggle-close {
  display: block;
}

.hotline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  white-space: nowrap;
}

.hotline svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.hotline strong {
  display: block;
  font-size: 13px;
  line-height: 1;
}

.hotline span {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}

.btn {
  border: 0;
  border-radius: 6px;
  height: 38px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}

.btn-outline {
  color: var(--primary);
  background: var(--white);
  border: 1px solid #CBD5E1;
}

.btn-primary {
  color: var(--white);
  background: var(--secondary);
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.24);
}

.hero {
  min-height: 522px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 27%, rgba(255, 255, 255, 0.18) 55%, rgba(255, 255, 255, 0) 80%),
    linear-gradient(180deg, rgba(148, 211, 255, 0.5), rgba(255, 255, 255, 0.05) 44%, rgba(11, 45, 107, 0.06)),
    url("https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&w=1900&q=88");
  background-size: cover;
  background-position: center 48%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  min-height: 522px;
  z-index: 1;
}

.hero-copy {
  padding-top: 86px;
  max-width: 620px;
}

.hero h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(36px, 3.65vw, 44px);
  line-height: 1.13;
  font-weight: 800;
  letter-spacing: 0;
}

.hero p {
  margin: 22px 0 0;
  width: 520px;
  max-width: 100%;
  color: #334155;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
}

.booking-card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  width: 100%;
  min-height: 168px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.booking-tabs {
  height: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 530px;
  max-width: 100%;
  border-bottom: 1px solid var(--line);
}

.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #F8FAFC;
  color: #475569;
  font-weight: 700;
  font-size: 13px;
  position: relative;
}

.tab.active {
  color: var(--primary);
  background: var(--white);
}

.tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--secondary);
}

.tab svg {
  width: 16px;
  height: 16px;
}

.booking-form {
  padding: 22px 24px 20px;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr 0.82fr 1.15fr;
  gap: 18px;
  align-items: end;
}

.field {
  display: block;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  color: #0F2354;
  font-weight: 700;
  font-size: 12px;
}

.fake-input {
  height: 46px;
  width: 100%;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px;
  color: #94A3B8;
  background: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.fake-input svg {
  width: 15px;
  height: 15px;
  color: #94A3B8;
}

.fake-input .orange-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #FFF0E2;
  color: var(--secondary);
}

.fake-input .orange-dot svg {
  width: 11px;
  height: 11px;
  color: var(--secondary);
}

.select-input {
  color: #475569;
}

/* Select / input thật bên trong .fake-input của form đặt vé */
.booking-form .fake-input {
  cursor: pointer;
}

.bare-select {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: #475569;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.bare-select::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 24px;
  cursor: pointer;
}

select.bare-select option {
  color: var(--text);
}

.search-btn {
  height: 46px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(90deg, #FF7A00, #FF8F18);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(255, 122, 0, 0.24);
}

.booking-promises {
  height: 42px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  border-right: 1px solid var(--line);
}

.promise:last-child {
  border-right: 0;
}

.promise svg {
  width: 15px;
  height: 15px;
  color: #2563EB;
}

.page-section {
  padding: 34px 0 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.04);
}

.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  flex: 0 0 auto;
  position: relative;
}

.value-icon::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  opacity: 0.12;
  background: currentColor;
}

.value-icon svg {
  width: 27px;
  height: 27px;
  z-index: 1;
  color: #fff;
}

.value-blue {
  background: linear-gradient(135deg, #3B82F6, #0B63DF);
  color: #2563EB;
}

.value-orange {
  background: linear-gradient(135deg, #FF9B26, #FF7A00);
  color: #FF7A00;
}

.value-green {
  background: linear-gradient(135deg, #4ADE80, #16A34A);
  color: #22C55E;
}

.value-purple {
  background: linear-gradient(135deg, #A855F7, #7C3AED);
  color: #7C3AED;
}

.value-card h3 {
  margin: 0 0 5px;
  color: var(--primary);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.value-card p {
  margin: 0;
  color: #475569;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}

.section-heading {
  margin: 40px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-heading h2 {
  margin: 0;
  color: #11295A;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.section-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.section-heading svg {
  width: 16px;
  height: 16px;
}

.card-row {
  position: relative;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.travel-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

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

.travel-body {
  padding: 15px 16px 16px;
}

.travel-title {
  margin: 0;
  color: var(--primary);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.travel-meta {
  margin: 9px 0 16px;
  color: #64748B;
  font-size: 12px;
  font-weight: 500;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-row >  span {
  color: #64748B;
  font-size: 12px;
  font-weight: 500;
}

.price-row strong {
  color: var(--secondary) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  white-space: nowrap;
}

.trip-count {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64748B;
  font-size: 11px;
  font-weight: 600;
}

.trip-count svg {
  width: 15px;
  height: 15px;
  color: #2563EB;
}

.slider-next {
  position: absolute;
  right: -22px;
  top: 50%;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--primary);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.slider-next svg {
  width: 21px;
  height: 21px;
}

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

.service-card img {
  height: 154px;
}

.service-card .travel-body {
  min-height: 102px;
}

.service-card .travel-meta {
  margin-bottom: 12px;
  min-height: 34px;
  line-height: 1.55;
}

/* ===== Slider kéo ngang (card-row[data-slider]) ===== */
.card-row[data-slider] .slider-track {
  display: flex;
  gap: 20px;
  grid-template-columns: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.card-row[data-slider] .slider-track::-webkit-scrollbar {
  display: none;
}

.card-row[data-slider] .slider-track > .travel-card {
  flex: 0 0 calc((100% - 60px) / 4);
  scroll-snap-align: start;
}

.slider-prev {
  position: absolute;
  left: -22px;
  top: 50%;
  translate: 0 -50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--primary);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.slider-prev svg {
  width: 21px;
  height: 21px;
}

.slider-prev,
.slider-next {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.card-row[data-slider] .slider-prev.is-disabled,
.card-row[data-slider] .slider-next.is-disabled {
  opacity: 0;
  pointer-events: none;
}

.stats-wrap {
  margin-top: 30px;
  text-align: center;
}

.stats-wrap h2 {
  margin: 0 0 18px;
  color: #11295A;
  font-size: 24px;
  font-weight: 800;
}

.stats-strip {
  height: 86px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: var(--line);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #DCEBFF;
  color: #2563EB;
}

.stat-icon.orange {
  background: #FFF0E2;
  color: var(--secondary);
}

.stat-icon svg {
  width: 25px;
  height: 25px;
}

.stat-copy {
  text-align: left;
}

.stat-copy strong {
  display: block;
  color: var(--primary);
  font-size: 19px;
  line-height: 1.1;
  font-weight: 800;
}

.stat-copy span {
  display: block;
  margin-top: 5px;
  color: #64748B;
  font-size: 11px;
  font-weight: 600;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.04);
}

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

.news-body {
  padding: 14px 16px 16px;
}

.news-body h3 {
  min-height: 44px;
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.news-body time {
  color: #64748B;
  font-size: 12px;
  font-weight: 500;
}

.site-footer {
  margin-top: 0;
  color: #D8E8FF;
  background:
    radial-gradient(circle at 22% 12%, rgba(37, 99, 235, 0.35), transparent 28%),
    linear-gradient(135deg, #042465, #003681 62%, #063170);
}

.footer-main {
  padding: 34px 0 16px;
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1fr 1.95fr;
  gap: 42px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand {
  min-width: 0;
  color: var(--white);
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-name span {
  color: var(--white);
}

.footer-brand .brand-tagline {
  color: #B9D3FF;
}

.footer-brand p {
  margin: 16px 0;
  color: #D8E8FF;
  font-size: 13px;
  line-height: 1.58;
  font-weight: 500;
}

.socials {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1478EF;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.socials a:nth-child(2) {
  background: #EF4444;
}

.socials a:nth-child(3) {
  background: #0F172A;
}

.socials a:nth-child(4) {
  background: #E7F5FF;
  color: #0B74CE;
  font-size: 10px;
}

.socials svg {
  width: 15px;
  height: 15px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #185AC0;
  font-size: 17px;
  font-weight: 800;
}

.footer-phone svg {
  width: 19px;
  height: 19px;
}

.footer-col h3,
.newsletter h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
  color: #D8E8FF;
  font-size: 13px;
  font-weight: 500;
}

.newsletter p {
  margin: 0 0 22px;
  color: #D8E8FF;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
}

.newsletter input {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  outline: 0;
  color: var(--text);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(203, 213, 225, 0.7);
}

.newsletter input::placeholder {
  color: #94A3B8;
}

.newsletter button {
  width: 100%;
  height: 48px;
  margin-top: 14px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(90deg, #FF7A00, #FF9A19);
  font-weight: 800;
  cursor: pointer;
}

.footer-bottom {
  min-height: 58px;
  border-top: 1px solid rgba(216, 232, 255, 0.22);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.copyright {
  color: #D8E8FF;
  font-size: 12px;
  font-weight: 500;
}

.payments {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pay-badge {
  width: 54px;
  height: 30px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: #0B2D6B;
  background: var(--white);
  font-size: 10px;
  font-weight: 900;
}

.pay-master {
  color: #EF4444;
}

.pay-momo {
  color: var(--white);
  background: #B83280;
}

.pay-zalo {
  color: #0EA5E9;
}

.pay-vnpay {
  color: #0B74CE;
}

.registered {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.registered .seal {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #EF4444;
  color: var(--white);
}

.registered .seal svg {
  width: 22px;
  height: 22px;
}

/* =========================================================
 * Blog: category / archive / single post
 * ========================================================= */
.blog-breadcrumb {
  padding: 18px 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.blog-breadcrumb #breadcrumbs {
  margin: 0;
}

.blog-breadcrumb #breadcrumbs a {
  color: var(--muted);
}

.page-head {
  margin: 10px 0 26px;
}

.page-head h1 {
  margin: 0;
  color: #11295A;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}

.page-head .archive-description {
  margin-top: 12px;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.posts-pagination {
  display: flex;
  justify-content: center;
  margin: 8px 0 48px;
}

.posts-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.posts-pagination .page-numbers {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.posts-pagination .page-numbers.current {
  color: var(--white);
  background: var(--secondary);
  border-color: var(--secondary);
}

.posts-pagination .page-numbers.dots {
  border: 0;
  background: transparent;
}

.single-wrap {
  padding: 0 0 48px;
}

.single-article {
  max-width: 820px;
  margin: 0 auto;
}

.single-thumb {
  margin: 0 0 24px;
}

.single-thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.single-title {
  margin: 0 0 14px;
  color: #11295A;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.single-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.single-meta svg {
  width: 15px;
  height: 15px;
  color: #2563EB;
}

.single-meta a {
  color: var(--primary);
  font-weight: 600;
}

.single-content {
  color: #334155;
  font-size: 16px;
  line-height: 1.85;
}

.single-content > *:first-child {
  margin-top: 0;
}

.single-content h2 {
  margin: 32px 0 14px;
  color: #11295A;
  font-size: 23px;
  font-weight: 800;
}

.single-content h3 {
  margin: 26px 0 12px;
  color: #11295A;
  font-size: 19px;
  font-weight: 800;
}

.single-content p {
  margin: 0 0 18px;
}

.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 8px 0;
}

.single-content ul,
.single-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.single-content li {
  margin-bottom: 8px;
}

.single-content a {
  color: #2563EB;
  font-weight: 600;
  text-decoration: underline;
}

.single-content blockquote {
  margin: 18px 0;
  padding: 14px 20px;
  border-left: 4px solid var(--secondary);
  background: var(--blue-soft);
  color: #334155;
  border-radius: 0 8px 8px 0;
}

.single-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.single-tags a {
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  background: var(--blue-soft);
  font-size: 12px;
  font-weight: 600;
}

.related-section {
  max-width: 820px;
  margin: 40px auto 0;
}

@media (max-width: 760px) {
  .single-title {
    font-size: 26px;
  }

  .single-content {
    font-size: 15px;
  }
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 18px;
  }

  .header-actions {
    gap: 8px;
  }

  .hotline {
    display: none;
  }

  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-btn {
    grid-column: 1 / -1;
  }

  .booking-card {
    bottom: 18px;
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .value-grid,
  .route-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-row[data-slider] .slider-track > .travel-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    height: auto;
    position: static;
  }

  .header-inner {
    min-height: 84px;
    flex-wrap: wrap;
    padding: 14px 0;
    gap: 12px;
  }

  .brand {
    min-width: auto;
    flex: 1 1 auto;
  }

  .brand-name {
    font-size: 20px;
  }

  .nav-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    flex: 1 0 100%;
    order: 3;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: hidden;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    transition: max-height 0.24s ease, opacity 0.2s ease, padding 0.2s ease, border-color 0.2s ease;
  }

  html.has-mobile-menu .site-header:not(.nav-open) .main-nav {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    border-top-color: transparent;
    pointer-events: none;
  }

  .site-header.nav-open .main-nav {
    max-height: 340px;
    opacity: 1;
  }

  .main-nav a {
    height: 40px;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid #DCE6F2;
    border-radius: 6px;
    color: var(--primary);
    background: var(--white);
  }

  .main-nav a.active::after {
    display: none;
  }

  .main-nav a.active {
    color: var(--secondary);
    border-color: #FED7AA;
    background: #FFF7ED;
  }

  .btn {
    height: 36px;
    padding: 0 14px;
  }

  .hero,
  .hero-inner {
    min-height: 780px;
  }

  .hero {
    background-position: center;
  }

  .hero-copy {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 14px;
  }

  .booking-card {
    bottom: 18px;
  }

  .booking-tabs {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .tab {
    height: 48px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .booking-promises {
    height: auto;
    grid-template-columns: 1fr;
  }

  .promise {
    height: 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise:last-child {
    border-bottom: 0;
  }

  .value-grid,
  .route-grid,
  .service-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .slider-next,
  .slider-prev {
    display: none;
  }

  .card-row[data-slider] .slider-track > .travel-card {
    flex-basis: 100%;
  }

  .stats-strip {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
  }

  .stat-item {
    min-height: 92px;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 10px;
    border: 1px solid #E2E8F0;
    border-radius: 7px;
    background: #FBFDFF;
  }

  .stat-item + .stat-item::before {
    display: none;
  }

  .stat-icon {
    width: 42px;
    height: 42px;
  }

  .stat-icon svg {
    width: 22px;
    height: 22px;
  }

  .stat-copy strong {
    font-size: 18px;
  }

  .stat-copy span {
    line-height: 1.35;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    padding: 22px 0;
    text-align: center;
  }

  .payments,
  .registered {
    justify-content: center;
  }
}
