/* stylelint-disable */
:root {
  --bg: #eef4fb;
  --surface: #ffffff;
  --surface-2: #f6f9fd;
  --text: #13324d;
  --muted: #5f7387;
  --brand: #0c4f8d;
  --brand-2: #0a6fae;
  --brand-3: #1e9fcd;
  --gold: #f3be4d;
  --gold-2: #ffd57a;
  --shadow: 0 18px 40px rgba(11, 43, 73, 0.12);
  --shadow-soft: 0 8px 24px rgba(11, 43, 73, 0.08);
  --border: rgba(16, 48, 79, 0.08);
  --radius: 24px;
  --radius-lg: 30px;
  --container: 1280px;
  --hero-overlay: linear-gradient(180deg, rgba(6, 38, 70, 0.10) 0%, rgba(6, 38, 70, 0.48) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(26, 155, 205, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #eef4fb 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

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

.topbar {
  background: linear-gradient(90deg, #093662 0%, #0a4b81 60%, #0e5e97 100%);
  color: #fff;
  font-size: 0.92rem;
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left,
.topbar-right,
.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-left .icon,
.topbar-right .icon {
  width: 18px;
  height: 18px;
}

.topbar-right { gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
.topbar-right a { color: rgba(255, 255, 255, 0.96); }
.topbar-right strong { color: #ffd87b; }
.topbar-site { opacity: 0.78; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 61, 101, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(10, 40, 70, 0.08);
}

.header-inner {
  min-height: 86px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px 4px 18px 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #0a4c86, #1a86c8);
  box-shadow: 0 14px 24px rgba(10, 76, 134, 0.28);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 100%;
  order: 3;
  flex-wrap: wrap;
  row-gap: 4px;
  overflow: visible;
  justify-content: center;
  padding-top: 6px;
}

.site-nav a {
  position: relative;
  color: #24425d;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #ffcd63);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }

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

.header-search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 18px;
  background: #f3f7fc;
  color: #16405f;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(15, 61, 101, 0.08);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: currentColor;
  flex-shrink: 0;
}
.icon svg { width: 100%; height: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #12324d;
  background: linear-gradient(135deg, #ffd76f 0%, #f3be4d 100%);
  box-shadow: 0 14px 28px rgba(243, 190, 77, 0.34);
}
.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, #0d5d98, #0c81b8);
  box-shadow: 0 14px 28px rgba(12, 93, 152, 0.24);
}
.btn-outline {
  color: #0d5d98;
  background: #fff;
  border: 1px solid rgba(10, 77, 132, 0.14);
}
.btn-block { width: 100%; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(10, 77, 132, 0.1);
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #195078;
}

.flash {
  width: min(calc(100% - 32px), var(--container));
  margin: 18px auto 0;
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.flash-success { background: #e9fff3; color: #106040; border: 1px solid rgba(16, 96, 64, 0.14); }
.flash-error { background: #fff0f0; color: #a73131; border: 1px solid rgba(167, 49, 49, 0.14); }
.flash-info { background: #edf6ff; color: #0b5c92; border: 1px solid rgba(11, 92, 146, 0.14); }

.hero {
  position: relative;
  padding: 24px 0 0;
}

.hero-shell {
  position: relative;
  min-height: 470px;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
  background:
    var(--hero-overlay),
    url("../images/hero-beach.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 26px 0 8px;
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.hero-copy h1 span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.8rem);
  font-weight: 500;
  color: #ffde88;
  margin-bottom: 8px;
}

.hero-copy p {
  margin: 12px 0 0;
  max-width: 620px;
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-pills span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 390px;
  z-index: 1;
}

.hero-media-card {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 40px rgba(4, 22, 40, 0.24);
  border: 7px solid rgba(255, 255, 255, 0.96);
}

.hero-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-card.large {
  right: 28px;
  top: 36px;
  width: 72%;
  height: 330px;
  transform: rotate(4deg);
}

.hero-media-card.small-1 {
  right: 0;
  top: 248px;
  width: 50%;
  height: 260px;
  transform: rotate(-6deg);
}

.hero-media-card.small-2 {
  right: 92px;
  bottom: 8px;
  width: 46%;
  height: 210px;
  transform: rotate(6deg);
}

.search-panel {
  position: relative;
  z-index: 5;
  margin-top: 28px;
}

.search-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 26px;
  box-shadow: 0 24px 44px rgba(7, 35, 61, 0.18);
  padding: 12px;
  border: 1px solid rgba(10, 77, 132, 0.08);
}

.search-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.search-tab {
  border: 0;
  background: #f0f5fb;
  color: #2a4b67;
  padding: 11px 14px;
  border-radius: 16px;
  font-weight: 800;
  cursor: pointer;
}

.search-tab.is-active {
  background: linear-gradient(135deg, #0b5390, #0c7cb2);
  color: #fff;
  box-shadow: 0 16px 24px rgba(12, 92, 148, 0.24);
}

.search-form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.9fr auto;
  gap: 14px;
  align-items: end;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.88rem;
  color: #61798e;
  font-weight: 700;
}

.input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(12, 77, 132, 0.12);
  border-radius: 16px;
  padding: 0 14px;
  min-height: 48px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.input input,
.input select {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #12324d;
}

.input .icon {
  color: #0b5a92;
}

.search-note {
  margin-top: 8px;
  color: #48708d;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.service-strip {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  border: 1px solid rgba(10, 77, 132, 0.08);
}

.service-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid rgba(10, 77, 132, 0.08);
  min-width: 0;
}

.service-item .icon {
  width: 38px;
  height: 38px;
  color: #0c6ba7;
}

.service-item strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.15;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.section {
  padding: 70px 0 0;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-title::before {
  content: "";
  width: 5px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), #f3be4d);
  display: inline-block;
}

.section-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-link {
  color: #0c6ba7;
  font-weight: 800;
}

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

.tour-card,
.news-card,
.destination-card,
.promo-card,
.service-panel,
.form-card,
.content-card {
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.tour-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-media {
  position: relative;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.tour-card:hover .card-media img,
.destination-card:hover .destination-media img,
.news-card:hover .news-media img,
.promo-card:hover .promo-media img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #ee4e4e, #f29a30);
  box-shadow: 0 10px 16px rgba(238, 78, 78, 0.24);
}

.card-badge.promo { background: linear-gradient(135deg, #15a65a, #49c882); }
.card-badge.new { background: linear-gradient(135deg, #3454ff, #00b7d1); }
.card-badge.premium { background: linear-gradient(135deg, #7c57ff, #4dc2ff); }

.tour-body {
  padding: 16px 16px 18px;
  display: grid;
  gap: 12px;
}

.tour-title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.tour-meta span,
.news-meta span,
.stat-item span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tour-summary {
  color: #547089;
  font-size: 0.95rem;
  line-height: 1.6;
  min-height: 4.6em;
}

.tour-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price strong {
  color: #eb2424;
  font-size: 1.22rem;
  font-weight: 900;
}

.price small {
  color: #7890a5;
  text-decoration: line-through;
}

.favorite {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(10, 77, 132, 0.12);
  display: grid;
  place-items: center;
  color: #a5b5c4;
}

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

.promo-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  color: #fff;
}

.promo-media {
  position: absolute;
  inset: 0;
}

.promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 25, 42, 0.10) 0%, rgba(4, 25, 42, 0.68) 100%);
}

.promo-copy {
  position: relative;
  z-index: 2;
  padding: 24px;
  max-width: 62%;
  display: grid;
  gap: 10px;
}

.promo-copy h3 {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.promo-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}

.promo-copy .btn { justify-self: start; }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.destination-card {
  overflow: hidden;
}

.destination-media {
  position: relative;
}

.destination-media img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.destination-copy {
  padding: 13px 14px 16px;
}

.destination-copy strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.destination-copy span {
  color: var(--muted);
  font-size: 0.88rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.news-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 182px;
}

.news-card.featured {
  grid-template-columns: 1fr;
  min-height: 100%;
}

.news-media {
  overflow: hidden;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-copy {
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.news-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}

.news-copy h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
}

.news-copy p {
  margin: 0;
  color: #5c7286;
  line-height: 1.65;
}

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

.stat-item {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f6faff);
  border: 1px solid rgba(10, 77, 132, 0.08);
  box-shadow: var(--shadow-soft);
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.stat-item span {
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  padding: 38px 0 20px;
}

.page-banner {
  border-radius: 30px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 52, 91, 0.82), rgba(11, 115, 170, 0.72)),
    url("../images/banner-mountain.webp") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.page-banner-inner {
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.page-banner h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.page-banner p {
  margin: 14px 0 0;
  max-width: 720px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

.page-banner .btn { align-self: center; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(10, 77, 132, 0.12);
  background: #fff;
  color: #24506f;
  font-weight: 800;
}

.chip.is-active {
  background: linear-gradient(135deg, #0b5390, #0c7cb2);
  color: #fff;
  border-color: transparent;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}

.sidebar,
.content-card,
.form-card,
.service-panel {
  padding: 24px;
}

.sidebar h3,
.content-card h2,
.form-card h2,
.service-panel h2 {
  margin-top: 0;
}

.sidebar-list {
  display: grid;
  gap: 12px;
}

.sidebar-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 16px;
  background: #f7fbff;
  border: 1px solid rgba(10, 77, 132, 0.08);
  color: #284764;
  font-weight: 700;
}

.tour-list {
  display: grid;
  gap: 18px;
}

.tour-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  overflow: hidden;
}

.tour-row .card-media img {
  height: 100%;
  aspect-ratio: auto;
  min-height: 100%;
}

.tour-row .tour-body { padding: 18px; }

.detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.detail-hero {
  border-radius: 28px;
  overflow: hidden;
  min-height: 440px;
  background: #d8e7f4;
  box-shadow: var(--shadow);
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-body {
  padding: 28px;
}

.detail-body h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.detail-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.detail-metas span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 14px;
  background: #f5f9fd;
  border: 1px solid rgba(10, 77, 132, 0.08);
}

.detail-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 0;
  margin-top: 20px;
  border-top: 1px solid rgba(10, 77, 132, 0.08);
}

.detail-price strong {
  font-size: 2rem;
  color: #e32020;
}

.detail-price small {
  display: block;
  color: #8092a4;
  text-decoration: line-through;
}

.detail-copy {
  display: grid;
  gap: 16px;
  color: #41576b;
  line-height: 1.9;
}

.detail-copy img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 18px auto;
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(8, 30, 50, 0.12);
}

.detail-copy p img,
.detail-copy figure {
  margin: 0;
}

.detail-copy figure {
  display: grid;
  gap: 8px;
}

.detail-copy figure figcaption {
  font-size: 0.92rem;
  color: #6f8396;
  text-align: center;
}

.detail-copy table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1em;
  table-layout: fixed;
}

.detail-copy th,
.detail-copy td {
  border: 1px solid rgba(10, 77, 132, 0.16);
  padding: 10px 12px;
  vertical-align: top;
  word-break: break-word;
}

.detail-copy th {
  background: #f3f8fd;
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid rgba(10, 77, 132, 0.08);
}

.timeline-item strong {
  color: #0c6ba7;
}

.timeline-item p {
  margin: 4px 0 0;
  color: #52697c;
  line-height: 1.7;
}

.form-card form,
.contact-form {
  display: grid;
  gap: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #60778c;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(10, 77, 132, 0.12);
  background: #fff;
  padding: 14px 16px;
  color: #16324d;
  outline: none;
}

.field textarea { min-height: 150px; resize: vertical; }

.info-list {
  display: grid;
  gap: 12px;
}

.info-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: start;
  color: #485d71;
  line-height: 1.7;
}

.info-list ul { padding: 0; margin: 0; }
.info-list .icon { color: #0c6ba7; margin-top: 2px; }

.services-hero {
  padding: 36px 0 0;
}

.service-panels {
  display: grid;
  gap: 18px;
}

.service-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-panel h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.service-panel p {
  color: #52697c;
  line-height: 1.8;
}

.service-panel .btn { margin-top: 8px; }

.site-footer {
  margin-top: 80px;
  color: #fff;
  background: linear-gradient(180deg, #09345c 0%, #082c4d 100%);
}

.footer-grid {
  padding: 54px 0 30px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}

.brand-footer .brand-mark { background: linear-gradient(135deg, #f3be4d, #ffde7f); color: #12324d; }
.footer-brand p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.footer-brand .footer-bullets { margin-top: 18px; }

.footer-bullets,
.footer-links {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-bullets li,
.footer-links li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.footer-links a { color: rgba(255, 255, 255, 0.88); }
.footer-links a:hover { color: #ffde88; }

.footer-grid h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.08rem;
}

.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.payment-badges span {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.muted { color: var(--muted); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mt-2 { margin-top: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

@media (max-width: 1180px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .header-actions { display: none; }
  .header-inner { justify-content: space-between; }
  .site-nav.is-open {
    display: grid;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    padding: 16px;
    gap: 10px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 77, 132, 0.08);
  }
  .site-nav.is-open a { padding: 12px 0; }
  .hero-grid,
  .content-grid,
  .detail-layout,
  .footer-grid,
  .service-panel-grid,
  .news-grid,
  .promo-grid,
  .tour-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-shell { min-height: auto; }
  .hero-inner { padding-bottom: 38px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { min-height: 560px; }
  .search-form { grid-template-columns: repeat(2, 1fr); }
  .service-strip { grid-template-columns: repeat(3, 1fr); }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .hero-shell {
    background:
      var(--hero-overlay),
      url("../images/mobile/hero-beach.webp") center/cover no-repeat;
  }
  .page-banner {
    background:
      linear-gradient(135deg, rgba(5, 52, 91, 0.82), rgba(11, 115, 170, 0.72)),
      url("../images/mobile/banner-mountain.webp") center/cover no-repeat;
  }
  .topbar-inner,
  .footer-bottom,
  .section-head,
  .page-banner-inner,
  .detail-price {
    grid-template-columns: 1fr;
    display: grid;
  }
  .topbar-right,
  .header-inner,
  .footer-bottom {
    justify-content: start;
  }
  .brand { min-width: 0; }
  .brand-text strong { font-size: 1.2rem; }
  .hero-inner { padding-top: 36px; }
  .hero-copy h1 { font-size: clamp(2.8rem, 15vw, 4.2rem); }
  .hero-copy p { font-size: 1rem; }
  .hero-media { min-height: 380px; }
  .hero-media-card.large { width: 78%; height: 200px; }
  .hero-media-card.small-1 { width: 62%; height: 150px; top: 190px; }
  .hero-media-card.small-2 { width: 54%; height: 120px; right: 58px; bottom: 24px; }
  .search-panel { margin-top: 20px; }
  .search-form,
  .service-strip,
  .tour-grid,
  .promo-grid,
  .dest-grid,
  .news-grid,
  .stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .content-grid,
  .detail-layout,
  .service-panel-grid {
    grid-template-columns: 1fr;
  }
  .tour-row,
  .news-card { grid-template-columns: 1fr; }
  .page-banner-inner,
  .section-head { gap: 12px; }
  .promo-copy { max-width: 100%; }
  .hero-media-card.large { right: 6%; }
  .hero-media-card.small-1 { right: 0; }
  .service-item { padding: 14px; }
  .stat-item { padding: 18px; }
  .page-banner-inner { padding: 24px; }
  .search-card, .service-strip, .content-card, .form-card, .service-panel { padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; animation: none !important; transition: none !important; }
}
