:root {
  --brand-deep: #0f2f45;
  --brand-mid: #1f5f7a;
  --brand-gold: #f4b942;
  --bg-soft: #f7f5f0;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  color: #12212c;
}

.top-banner {
  background: linear-gradient(100deg, #fff2cf, #ffe1a3);
  border-bottom: 1px solid #f0d28f;
  min-height: 68px;
}

.offer-item-single {
  min-height: 38px;
}

.offer-rotator {
  position: relative;
  min-height: 40px;
  overflow: hidden;
}

.offer-item {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.offer-item.is-active {
  opacity: 1;
  transform: translateY(0);
}

.site-header .navbar {
  background: linear-gradient(120deg, var(--brand-deep), var(--brand-mid));
}

.site-logo {
  width: 210px;
  height: auto;
  display: block;
}

.site-header .navbar-brand,
.site-header .nav-link {
  color: #fff;
}

.site-header .nav-link:hover {
  color: #ffe2a9;
}

.menu-categories {
  min-width: 320px;
}

.menu-categories .category-link {
  font-weight: 700;
}

.menu-categories .tour-link {
  padding-left: 1.5rem;
  font-size: 0.92rem;
}

.page-main {
  min-height: calc(100vh - 220px);
}

.hero-section {
  background: radial-gradient(circle at 20% 30%, #2c7da0 0%, #0f2f45 70%);
  color: #fff;
}

.hero-layer-slider {
  border-radius: 14px;
  overflow: hidden;
}

.hero-slide-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  min-height: 320px;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 26, 39, 0.3), rgba(9, 26, 39, 0.72));
}

.hero-slide-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  opacity: 0.85;
}

.hero-card,
.tour-card,
.content-card {
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(5, 26, 43, 0.1);
}

.tour-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-image-link {
  display: block;
}

.tour-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.tour-card:hover .tour-card-image {
  transform: scale(1.03);
}

.tour-link-title {
  color: #132331;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tour-link-title:hover {
  color: #e37b00;
  text-decoration: underline;
}

.tour-category-tag {
  display: inline-block;
  margin-bottom: 0.6rem;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  background: #eaf4fb;
  color: #175073;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-line {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.old-price {
  color: #8d98a1;
  text-decoration: line-through;
}

.new-price {
  font-weight: 800;
  color: #0f2f45;
}

.save-chip {
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.8rem;
  background: #fff0cc;
  color: #7a5200;
}

.tour-price-box {
  border: 1px solid #f7d690;
  background: linear-gradient(180deg, #fffef9, #fff8e8);
}

.save-widget {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem;
  border-radius: 10px;
  background: #fff3d8;
}

.save-icon {
  width: 30px;
  height: 30px;
}

.btn-book-strong {
  background: linear-gradient(120deg, #ffb703, #f48c06);
  border: 0;
  color: #132331;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(244, 140, 6, 0.35);
}

.btn-book-strong:hover {
  color: #132331;
  filter: brightness(0.98);
}

.itinerary-list li {
  margin-bottom: 0.45rem;
}

.tripadvisor-widget-placeholder {
  padding: 0.9rem;
  border: 1px dashed #adc1cf;
  border-radius: 10px;
  background: #f5fbff;
}

.map-frame-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 10px;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(5, 26, 43, 0.18);
}

.tour-detail-hero {
  background: linear-gradient(135deg, #e8f3f8, #ffffff);
}

.gallery-main-image {
  height: 460px;
  object-fit: cover;
}

.gallery-caption {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}

.gallery-thumb-button {
  border: 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  width: 112px;
  height: 72px;
  opacity: 0.8;
}

.gallery-thumb-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb-button.active,
.gallery-thumb-button:hover {
  outline: 2px solid var(--brand-gold);
  opacity: 1;
}

.category-pill {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  color: #1c3b4f;
  background: #f2f8fc;
}

.category-pill:hover {
  background: #e3f1fa;
}

.category-pill.active {
  background: #0f2f45;
  color: #fff;
}

.site-footer {
  background: #0d2434;
  color: #d6e4ee;
}

.site-footer a {
  color: #ffe2a9;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 1.25rem;
  }

  .site-logo {
    width: 165px;
  }

  .offer-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-slide-card {
    min-height: 240px;
  }

  .tour-card-image {
    height: 180px;
  }

  .gallery-main-image {
    height: 280px;
  }

  .gallery-thumb-button {
    width: 88px;
    height: 60px;
  }

  .menu-categories {
    min-width: 100%;
  }
}


.theme-category-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.theme-category-list li {
  list-style: none;
}

.theme-category-list li .category-pill {
  width: 100%;
}

.tour-trust-widget .btn {
  font-weight: 700;
}

.tursab-mini-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.tursab-mini-logo {
  width: auto;
  height: 34px;
  max-width: 120px;
  object-fit: contain;
}
