/* Base Styles */
:root {
  --bg: #E6E6E6;
  --text: #333333;
  --accent: #0f6ab7;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
  color: var(--text);
  background: var(--bg) url('assets/desen.png') repeat;
  display: flex;
  flex-direction: column;
}

body>header {
  flex-shrink: 0;
}

body>section {
  flex-shrink: 0;
}

body>main {
  flex: 1;
}

body>footer {
  flex-shrink: 0;
}

/* Container with consistent desktop width */
.container {
  width: 100%;
  max-width: 1200px;
  /* Consistent width for desktop */
  margin: 0 auto;
  padding: 0 16px;
  /* Safe padding for mobile */
}

/* Top Bar */
.top-bar {
  background: var(--bg);
  height: 60px;
  /* Required height */
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo {
  height: 56px;
  width: auto;
  max-width: 180px;
  /* keep large PNGs sensible */
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

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

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  /* hidden on desktop */
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: white;
  align-items: center;
  justify-content: center;
}

.hamburger {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 10px 8px;
  border-radius: 6px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-list a:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #000000;
}

.nav-list a.active {
  font-weight: 700;
  color: #c69c6c;
}

/* Online Başvuru Button */
.btn-apply {
  background: #c69c6c !important;
  color: white !important;
  padding: 10px 16px !important;
  border-radius: 6px;
  font-weight: 600;
}

.btn-apply:hover {
  background: #b38a5a !important;
  color: white !important;
}

/* Slider */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 400px;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 16px;
}

.slider-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.slide.active img {
  transform: scale(1);
}

.slide-caption {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.slide-caption h2 {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
}

.slide-caption p {
  margin: 0;
  font-size: 16px;
  opacity: 0.95;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: background 200ms ease;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 500px;
  color: white;
  text-align: left;
  z-index: 10;
  padding: 24px 32px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  filter: saturate(1.05);
  transition: opacity 700ms ease;
}

/* Keep content inside container bounds even with full-width images */
.slider-content.right {
  right: calc((100vw - 1200px) / 2 + 16px);
  border-radius: 12px;
}

.slider-content.left {
  left: calc((100vw - 1200px) / 2 + 16px);
  border-radius: 12px;
}

.slide.active .slider-content {
  opacity: 1;
}

@media (max-width: 1232px) {
  .slider-content.right {
    right: 16px;
  }

  .slider-content.left {
    left: 16px;
  }
}

.slider-content h1 {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.slider-content p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.95;
}

.slider-content .slider-cta {
  float: right;
}

.slider-cta {
  display: inline-block;
  padding: 14px 32px;
  background: #c69c6c;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 200ms ease;
}

.slider-cta:hover {
  background: #b38a5a;
}

.slider-dots {
  display: none;
}

.search-wrap {
  position: relative;
  margin-top: 24px;
  /* spacing below slider */
}

.search-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.search-form {
  display: flex;
  gap: 12px;
  align-items: end;
}

.search-form .form-group {
  flex: 1;
}

.search-form .form-actions {
  flex: 0 0 auto;
}

.search-form .form-group label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

.search-form input[type="date"],
.search-form select {
  width: 100%;
  height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
}

.search-form input[type="text"] {
  width: 100%;
  height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
}

.btn-search {
  height: 42px;
  padding: 0 20px;
  border-radius: 10px;
  background: #c69c6c;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-search:hover {
  background: #b38a5a;
}

.tours-section {
  position: relative;
  margin-top: 24px;
}

.tours-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin: 0 auto;
}

.tours-card h2 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

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

.tour-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.tour-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tour-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-info {
  padding: 16px;
}

.tour-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-type {
  background: #e3f2fd;
  color: #1976d2;
}

.badge-current {
  background: #c8e6c9;
  color: #388e3c;
}

.badge-low {
  background: #fff3cd;
  color: #8a6d3b;
}

.tour-name {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.tour-price {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #c69c6c;
}

.tour-dates {
  margin: 0 0 16px;
  font-size: 13px;
  color: #666;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-info h2,
.contact-form h2 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
}

.contact-info,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info ul {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  font-size: 14px;
}

.contact-info ul li {
  margin-bottom: 8px;
}

.contact-info a {
  color: var(--text);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form form {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 16px;
  flex: 1 1 auto;
}

.contact-form .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  font-size: 13px;
  color: #555;
}

.contact-form label input,
.contact-form label textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-family: inherit;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form .actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.btn.primary {
  background: #c69c6c;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary:hover {
  background: #b38a5a;
}

.status {
  font-size: 13px;
  color: #666;
}

@media (max-width: 920px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .grid {
    grid-template-columns: 1fr;
  }
}

/* Map */
.map-wrap {
  margin-top: 16px;
  display: flex;
  flex: 1 1 auto;
  min-height: 300px;
}

.map-embed {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #f7f7f7;
}

.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Application Form */
.application-form {
  max-width: 800px;
  margin: 0 auto;
}

.application-form .form-section {
  margin-bottom: 32px;
  padding: 20px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.application-form .form-section h3 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.application-form .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.application-form .grid .full {
  grid-column: 1 / -1;
}

.application-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #555;
}

.application-form input,
.application-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font: inherit;
  background: #fff;
  transition: border-color 200ms ease;
}

.application-form input:focus,
.application-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(198, 156, 108, 0.1);
}

.application-form .actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Modal */
.modal-overlay {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999 !important;
  animation: fadeIn 300ms ease;
}

.modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: slideUp 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-icon {
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
}

.modal-content h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
}

.modal-content p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.modal-content .btn {
  min-width: 140px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .modal-content {
    padding: 30px 20px;
  }

  .modal-content h3 {
    font-size: 20px;
  }

  .modal-content p {
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  .application-form .grid {
    grid-template-columns: 1fr;
  }
}

/* Page Banner */
.page-banner-wrap {
  margin-top: 24px;
  flex-shrink: 0;
}

.page-banner {
  width: 100%;
  max-width: 1200px;
  height: 400px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #f0f0f0;
  display: none;
  /* Hidden by default, script will show it */
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1232px) {
  .page-banner {
    border-radius: 20px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    border-radius: 12px;
    height: 250px;
  }
}

/* Footer */
.site-footer {
  margin-top: 32px;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

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

.footer-col {
  font-size: 14px;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.5;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #c9c9c9;
  text-decoration: underline;
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 200ms ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.social-links svg {
  width: 20px;
  height: 20px;
}

/* Page Header */
.page-header {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, rgba(198, 156, 108, 0.1) 0%, rgba(15, 106, 183, 0.1) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.page-header h1 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
}

.page-header p {
  margin: 0;
  font-size: 16px;
  color: #666;
}

.footer-bottom {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .container {
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.fg-credit {
  display: inline-flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 200ms ease;
  cursor: default;
}

.fg-credit:hover {
  opacity: 1;
}

.fg-credit img {
  height: 20px;
  width: auto;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.btn-tour-details {
  display: block;
  width: 100%;
  padding: 10px 16px;
  text-align: center;
  background: #c69c6c;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 200ms ease;
}

.btn-tour-details:hover {
  background: #b38a5a;
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }
}

/* Detail page */
.detail-banner {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

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

.detail-content {
  padding: 32px;
}

.detail-content h2 {
  margin: 0 0 8px;
  font-size: 28px;
  color: var(--text);
}

.detail-description {
  margin: 0 0 16px;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.detail-price-box {
  background: linear-gradient(135deg, #c69c6c 0%, #b38a5a 100%);
  padding: 16px 20px;
  border-radius: 12px;
  margin: 16px 0 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(198, 156, 108, 0.3);
}

.price-label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.detail-price-box .tour-price {
  margin: 0;
  color: white;
  font-size: 32px;
  font-weight: 700;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.info-card {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  transition: all 200ms ease;
}

.info-card:hover {
  background: #f5f5f5;
  border-color: rgba(198, 156, 108, 0.3);
  transform: translateX(2px);
}

.info-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.info-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}

.info-content {
  flex: 1;
}

.info-content h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.info-content p {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
}

.info-sub {
  margin-top: 4px !important;
  font-size: 13px !important;
  color: #999 !important;
  font-weight: 600;
}

.detail-note {
  background: #fff9f0;
  border-left: 4px solid #c69c6c;
  padding: 16px 20px;
  border-radius: 8px;
  margin: 24px 0 20px;
}

.detail-note h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.detail-note p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.detail-info .actions {
  margin-top: 20px;
}

.detail-info .btn-tour-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
}

/* Related tours */
.related-section {
  padding: 0 0 48px;
  margin-top: 24px;
}

.related-section .container {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px 20px 20px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  max-width: 1168px;
  margin-left: auto;
  margin-right: auto;
}

.related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 12px;
}

.related-header h3 {
  margin: 0;
  font-size: 20px;
  color: var(--text);
}

.related-controls {
  display: flex;
  gap: 8px;
}

.rel-btn {
  border: none;
  background: #fff;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rel-btn:hover {
  opacity: 0.8;
}

#rel-prev {
  background: #fff url('assets/slider-sol.png') no-repeat center;
  background-size: 20px 20px;
}

#rel-next {
  background: #fff url('assets/slider-sag.png') no-repeat center;
  background-size: 20px 20px;
}

.related-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.related-slider::-webkit-scrollbar {
  height: 8px;
}

.related-slider::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.related-item {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.related-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.related-body {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.related-title {
  margin: 0;
  font-size: 14px;
  color: #222;
  font-weight: 700;
  line-height: 1.4;
  max-height: 2.8em;
  overflow: hidden;
}

.related-price {
  margin: 0;
  font-size: 15px;
  color: #b38a5a;
  font-weight: 700;
}

.related-actions {
  margin-top: auto;
}

.related-link {
  display: inline-block;
  padding: 10px 14px;
  font-size: 13px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: #333;
  background: #fff;
  text-decoration: none;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.related-link:hover {
  background: #b38a5a;
  color: #fff;
  border-color: #b38a5a;
}

@media (max-width: 920px) {
  .related-header h3 {
    font-size: 18px;
  }

  .related-slider {
    grid-auto-columns: minmax(180px, 240px);
  }
}

@media (max-width: 920px) {
  .detail-content {
    padding: 24px 20px;
  }

  .detail-content h2 {
    font-size: 24px;
  }

  .detail-price-box .tour-price {
    font-size: 28px;
  }

  .detail-info-grid {
    grid-template-columns: 1fr;
  }

  .search-form {
    grid-template-columns: 1fr;
  }
}

.dot {
  display: none;
}

.dot.active,
.dot:hover {
  background: none;
}

/* Main */
.main {
  padding: 24px 0 48px;
}

.hero h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

.hero p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 920px) {
  .nav-list {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: absolute;
    top: 60px;
    /* below the top bar */
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 8px 16px 16px;
    display: none;
    /* hidden until toggled */
    flex-direction: column;
    align-items: flex-start;
    background: var(--bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    gap: 6px;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list a {
    padding: 10px 12px;
  }
}