/* Jinantours Premium UI – Jost + custom palette */
:root {
  --primary-color: #d8572c; /* deep warm orange */
  --accent-color: #f48c21; /* golden accent */
  --deep-teal: #264b5a; /* teal/blue for contrast */
  --primary-dark: #b14622;
  --text-dark: #1a1a1a;
  --text-light: #6b7280;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --black: #000000;
  --border-color: #e0e0e0;
  --dark-bg: #1a1a1a; /* dark background for footer */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Jost", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header - white bar with subtle shadow (keep existing header layout) */
.header {
  background: var(--white);
  color: var(--text-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Transparent header state for homepage */
body[data-page="homepage"] .header.transparent {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

body[data-page="homepage"] .header.transparent .header-email,
body[data-page="homepage"] .header.transparent .header-reviews,
body[data-page="homepage"] .header.transparent .mobile-menu-toggle i {
  color: var(--white);
}

body[data-page="homepage"]
  .header.transparent
  .header-top-right
  > *
  + *::before {
  background: rgba(255, 255, 255, 0.3);
}

.header-top {
  padding: 18px 0;
  padding-top: 0;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo a {
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-img {
  height: 65px;
  width: auto;
  display: block;
}

.logo-img-light {
  display: none;
}

body[data-page="homepage"] .header.transparent .logo-img-dark {
  display: none;
}

body[data-page="homepage"] .header.transparent .logo-img-light {
  display: block;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.logo-dot {
  font-size: 22px;
  color: var(--text-light);
  font-weight: 700;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Vertical separators between header items */
.header-top-right > * + * {
  position: relative;
  padding-left: 18px;
  margin-left: 18px;
}

.header-top-right > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: var(--border-color);
}

.header-email {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.header-email:hover {
  opacity: 0.8;
}

/* Mobile Header - Show only logo, reviews, hamburger */
@media (max-width: 768px) {
  .header-email {
    display: none;
  }

  .header-top-right > * + *::before {
    display: none;
  }

  .logo-img {
    height: 50px;
  }

  .header-top {
    padding: 12px 0;
  }
}

.header-reviews {
  color: var(--deep-teal);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.header-reviews:hover {
  opacity: 0.8;
}

.tripadvisor-icon {
  font-size: 22px;
  color: #00af87;
  display: inline-flex;
  align-items: center;
}
.tripadvisor-icon svg {
  display: block;
}
body[data-page="homepage"] .header.transparent .tripadvisor-icon {
  color: #ffffff;
}

.menu-dropdown-wrapper {
  position: relative;
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
  padding: 5px;
  line-height: 1;
  transition: color 0.3s;
}

body[data-page="homepage"] .header.transparent .mobile-menu-toggle {
  color: var(--white);
}

.menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1001;
  padding: 8px 0;
  margin-top: 8px;
}

.menu-dropdown-wrapper:hover .menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu-dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.menu-dropdown-item i {
  font-size: 18px;
  width: 20px;
  text-align: center;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.menu-dropdown-item:hover i {
  color: var(--primary-color);
}

.menu-dropdown-item span {
  flex: 1;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 650px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

/* Pull hero up under transparent header on homepage while keeping inner spacing */
body[data-page="homepage"] .hero-section {
  margin-top: -6rem;
  padding-top: 7rem;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 2rem 20px 0;
}

.hero-boat {
  position: absolute;
  bottom: 100px;
  right: 8%;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-title {
  font-size: 56px;
  font-weight: 200;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  line-height: 1;
}

.tripadvisor-icon {
  height: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #f2f2f2;
  max-width: 760px;
  margin: 0 auto 30px;
}

.hero-cta-buttons {
  display: inline-flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-cta-button {
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}

.hero-cta-primary {
  background: var(--accent-color);
  color: #1a1a1a;
}

.hero-cta-primary:hover {
  background: var(--primary-color);
}

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-search-panel {
  margin: 0 auto;
  margin-top: 10px;
  max-width: 900px;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 28px 32px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Booking Toggle */
.hero-booking-toggle {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-toggle-button {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-toggle-button i {
  font-size: 18px;
}

.hero-toggle-button:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

.hero-toggle-button.active {
  background: var(--accent-color);
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(216, 87, 44, 0.3);
}

.hero-toggle-button.active:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* Hero Price Display */
.hero-price-display {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-price-amount {
  font-size: 18px;
  font-weight: 700;
  color: #4ade80;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-price-quote {
  font-size: 16px;
  font-weight: 600;
  color: #60a5fa;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-price-placeholder {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* Hero Messages */
.hero-message {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.hero-message-success {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.hero-message-error {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Hero Field Input Styling - Override for text/email/tel/date/time inputs */
.hero-field-control[type="text"],
.hero-field-control[type="email"],
.hero-field-control[type="tel"],
.hero-field-control[type="date"],
.hero-field-control[type="time"] {
  width: 100%;
  padding: 16px 18px;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
}

.hero-field-control[type="text"]:focus,
.hero-field-control[type="email"]:focus,
.hero-field-control[type="tel"]:focus,
.hero-field-control[type="date"]:focus,
.hero-field-control[type="time"]:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(244, 140, 33, 0.2);
}

.hero-field-control[type="text"]::placeholder,
.hero-field-control[type="email"]::placeholder,
.hero-field-control[type="tel"]::placeholder {
  color: rgba(26, 26, 26, 0.5);
}

.hero-field-control[type="text"]:hover,
.hero-field-control[type="email"]:hover,
.hero-field-control[type="tel"]:hover,
.hero-field-control[type="date"]:hover,
.hero-field-control[type="time"]:hover {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Date and Time Input Styling */
.hero-field-control[type="date"],
.hero-field-control[type="time"] {
  color-scheme: light;
}

.hero-field-control[type="date"]::-webkit-calendar-picker-indicator,
.hero-field-control[type="time"]::-webkit-calendar-picker-indicator {
  filter: none;
  opacity: 0.7;
  cursor: pointer;
}

.hero-search-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

/* Mobile Hero Search - Stack fields vertically */
@media (max-width: 768px) {
  .hero-search-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-search-panel {
    padding: 20px;
    margin-top: 20px;
  }

  .hero-content {
    padding: 1rem 20px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-booking-toggle {
    flex-direction: column;
    gap: 8px;
  }

  .hero-toggle-button {
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero-toggle-button i {
    font-size: 16px;
  }

  .hero-price-display {
    padding: 10px 12px;
    min-height: 44px;
  }

  .hero-price-amount,
  .hero-price-quote {
    font-size: 14px;
  }
}

.hero-field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
  text-align: left;
}

.hero-field-control {
  width: 100%;
  padding: 16px 48px 16px 18px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  background: #ffffff;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.hero-field-control:hover {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-field-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(244, 140, 33, 0.2);
  background-color: #ffffff;
}

.hero-field-control option {
  padding: 12px;
  background: #ffffff;
  color: #1a1a1a;
  font-weight: 500;
}

.hero-search-button {
  width: 100%;
  padding: 18px 24px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(216, 87, 44, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-search-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.hero-search-button:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  box-shadow: 0 6px 20px rgba(216, 87, 44, 0.4);
  transform: translateY(-2px);
}

.hero-search-button:hover::before {
  left: 100%;
}

.hero-search-button:active {
  transform: translateY(0);
}

.hero-search-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.hero-search-button:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(216, 87, 44, 0.3);
}

.hero-scroll {
  margin-top: 26px;
  font-size: 13px;
  color: #f9fafb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.9;
}

.hero-scroll-arrow {
  font-size: 16px;
}

.hero-search {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.search-form {
  background: var(--white);
  border-radius: 12px;
  padding: 6px;
  display: flex;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  gap: 6px;
}

.search-inputs {
  display: flex;
  flex: 1;
  gap: 6px;
}

.search-input {
  flex: 1;
  padding: 20px 24px;
  border: none;
  font-size: 16px;
  background: transparent;
  color: var(--text-dark);
  outline: none;
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-button {
  background: var(--deep-teal);
  color: var(--white);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.search-button:hover {
  background: var(--primary-dark);
}

.search-button svg {
  width: 24px;
  height: 24px;
}

.hero-boat {
  position: absolute;
  bottom: 80px;
  right: 10%;
  z-index: 3;
  max-width: 200px;
  opacity: 0.9;
}

.hero-boat img {
  width: 100%;
  height: auto;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 42px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 50px;
  text-align: center;
  padding: 0 20px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
}

.destinations-subtitle {
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--accent-color);
}

.section-footer {
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
}

/* Top Tours Section - Horizontal Scrollable */
.top-tours-section {
  background: var(--white);
  padding: 60px 0;
}

.top-tours-section .container {
  margin-bottom: 20px;
}

.top-tours-section .section-title {
  margin-bottom: 0;
}

/* Tours Page Sidebar Layout */
.tours-page-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.tours-sidebar {
  width: 280px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  /* Firefox scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--bg-light);
}

/* Custom scrollbar for sidebar - Webkit browsers (Chrome, Safari, Edge) */
.tours-sidebar::-webkit-scrollbar {
  width: 8px;
}

.tours-sidebar::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 4px;
  margin: 8px 0;
}

.tours-sidebar::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
  transition: background 0.3s;
}

.tours-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.tours-sidebar-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.tours-filter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tours-filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tours-filter-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.tours-filter-select,
.tours-filter-input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.tours-filter-select:focus,
.tours-filter-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(216, 87, 44, 0.1);
}

.tours-filter-button {
  width: 100%;
  padding: 14px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tours-filter-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.tours-filter-button:active {
  transform: translateY(0);
}

.tours-main-content {
  flex: 1;
  min-width: 0;
}

.tours-loading,
.tours-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
  font-size: 18px;
}

.tours-container {
  position: relative;
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 30px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile: Top Tours - Show 2 columns */
@media (max-width: 768px) {
  .tours-page-layout {
    flex-direction: column;
    gap: 20px;
  }

  .tours-sidebar {
    width: 100%;
    position: static;
    max-height: none;
    top: auto;
  }

  .tours-container {
    padding: 0;
  }

  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px 15px 30px;
  }

  .tour-card {
    border-radius: 0;
  }

  .tour-card:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }

  .tour-card:nth-child(2) {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .tour-card:nth-child(odd) {
    border-right: 1px solid var(--border-color);
  }

  .top-tours-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .tours-sidebar {
    padding: 20px;
  }

  .tours-sidebar-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .tours-filter-form {
    gap: 16px;
  }

  .tours-grid {
    gap: 8px;
    padding: 15px 10px 20px;
  }

  .tour-card {
    border-radius: 0;
  }

  .tour-card:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }

  .tour-card:nth-child(2) {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .tour-card:nth-child(odd) {
    border-right: 1px solid var(--border-color);
  }
}

.tours-grid::-webkit-scrollbar {
  height: 6px;
}

.tours-grid::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 3px;
}

.tours-grid::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.tour-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--white);
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.tour-card:hover .tour-card-image img {
  transform: scale(1.05);
}

.tour-card-content {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
}

.tour-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.5;
  min-height: 45px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tour-card-divider {
  height: 1px;
  width: 100%;
  background: #e5e7eb;
  margin: 10px 0 14px;
}

.tour-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  align-items: center;
}

.tour-location {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tour-capacity {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tour-location i,
.tour-capacity i {
  font-size: 18px;
  color: var(--text-light);
}

.tour-card-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.tour-card-button {
  display: inline-block;
  background: var(--deep-teal);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.tour-card-button:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* Destinations Section */
.destinations-section {
  background: #f0f7f4;
  padding: 100px 0;
}

.destinations-section .container {
  max-width: 1400px;
}

.destinations-section .container {
  max-width: 1400px;
}

/* Generic carousel layout */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.destination-card,
.testimonial-card,
.post-card {
  scroll-snap-align: start;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 0 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}

.carousel-dot:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--primary-color);
  width: 32px;
  height: 10px;
  border-radius: 5px;
}

.destinations-grid {
  display: flex;
  gap: 30px;
}

.destination-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 280px;
  width: calc(25% - 18px);
  max-width: 320px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  position: relative;
}

@media (max-width: 1200px) {
  .destination-card {
    width: calc(33.333% - 20px);
    min-width: 260px;
  }
}

@media (max-width: 768px) {
  .destination-card {
    width: calc(50% - 15px);
    min-width: 240px;
  }
}

.destination-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.destination-card-image {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.destination-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover .destination-card-image img {
  transform: scale(1.15);
}

.destination-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.destination-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 175, 135, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.destination-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.destination-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.destination-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.destination-arrow-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--deep-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.destination-arrow-button i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-arrow-button {
  background: var(--deep-teal);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(38, 75, 90, 0.4);
}

.destination-card:hover .destination-arrow-button i {
  transform: translateX(3px);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--white);
  padding: 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.testimonials-rating {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.rating-box {
  background: var(--white);
  border: 2px solid var(--border-color);
  padding: 30px 40px;
  border-radius: 12px;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rating-stars {
  font-size: 28px;
  color: #ffb800;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.rating-score {
  font-size: 36px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.rating-count {
  font-size: 14px;
  color: var(--text-light);
}

.testimonials-grid {
  display: flex;
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  color: var(--text-dark);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 350px;
  flex-shrink: 0;
}

.testimonial-card-premium {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 16px;
}

.testimonial-date {
  font-size: 13px;
  color: var(--text-light);
}

.testimonial-rating {
  color: #ffb800;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* News Section */
.news-section {
  background: var(--white);
}

.posts-grid {
  display: flex;
  gap: 30px;
}

.post-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  min-width: 350px;
  flex-shrink: 0;
}

.post-card:hover {
  transform: translateY(-8px);
}

.post-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.post-card:hover .post-card-image img {
  transform: scale(1.1);
}

.post-card-content {
  padding: 25px;
}

.post-date {
  color: var(--primary-color);
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-author {
  font-size: 14px;
  color: var(--text-light);
}

/* Private Tours CTA */
.cta-section {
  background: var(--dark-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content .cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
  font-size: 18px;
  padding: 20px 50px;
  margin-top: 20px;
}

.cta-title {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.cta-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--deep-teal);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* Footer */
.footer {
  background: var(--deep-teal);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo .logo-text {
  font-size: 24px;
}

.footer-about h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.8);
}

.footer-column h3 {
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-input-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 14px;
}

.newsletter-form input[type="email"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  font-style: italic;
}

.newsletter-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-form button[type="submit"] {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
  white-space: nowrap;
}

.newsletter-form button[type="submit"]:hover:not(:disabled) {
  background: var(--primary-dark);
}

.social-icons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(13, 115, 119, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.8;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Chatbot Widget */
.chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

button {
  border: none;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  border: none;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.chatbot-header {
  background: var(--primary-green);
  color: var(--white);
  padding: 18px 20px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chatbot-message {
  padding: 12px 16px;
  border-radius: 12px;
  max-width: 80%;
}

.chatbot-message.bot {
  background: var(--bg-light);
  align-self: flex-start;
}

.chatbot-message.user {
  background: var(--primary-green);
  color: var(--white);
  align-self: flex-end;
}

.chatbot-input-area {
  display: flex;
  gap: 10px;
  padding: 18px;
  border-top: 1px solid var(--border-color);
}

.chatbot-input-area input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
}

.chatbot-input-area button {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.chatbot-input-area button:hover {
  background: var(--primary-dark);
}

#chatbotWidget {
  display: none;
}

.service-card {
  width: 33.3%;
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 90px;
  z-index: 1000;
}

.whatsapp-toggle {
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
  text-decoration: none;
  font-size: 28px;
}

.whatsapp-toggle:hover {
  transform: scale(1.1);
  color: var(--white);
}

/* Tour Detail Page - Highlights with Checkmark */
.highlights-list-checkmark {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlights-list-checkmark li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
}

.highlights-checkmark {
  color: var(--primary-color);
  font-size: 20px;
  line-height: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlights-list-checkmark li span {
  flex: 1;
}

/* Section Titles with Decorative Dash */
.section-title-decorated {
  position: relative;
  display: inline-block;
  padding-left: 0;
  padding-right: 0;
}

.section-title-decorated::before {
  content: '—';
  color: var(--primary-color);
  margin-right: 12px;
  font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

  .hero-title {
    font-size: 36px;
  }

  .search-inputs {
    flex-direction: column;
  }

  .search-input {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
  }

  .tour-card,
  .destination-card,
  .testimonial-card,
  .post-card {
    min-width: 280px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-subtitle {
    font-size: 36px;
  }

  .chatbot-window {
    width: calc(100vw - 40px);
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .destination-card {
    min-width: 80%;
  }

  .tour-card,
  .testimonial-card,
  .post-card {
    min-width: 50%;
    /* width: 50%; */
  }

  /* Reduce tour card inner padding and font sizes */
  .tour-card-content {
    padding: 12px 14px 14px;
  }

  .tour-card-title {
    font-size: 12px;
    min-height: 36px;
    margin-bottom: 8px;
  }

  .tour-card-divider {
    margin: 6px 0 10px;
  }

  .tour-card-meta {
    gap: 8px;
    margin-bottom: 10px;
  }

  .tour-location,
  .tour-capacity {
    font-size: 11px;
  }

  .tour-location i,
  .tour-capacity i {
    font-size: 14px;
  }

  .tour-card-button {
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
  }

  .tour-card-image {
    height: 180px;
  }
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card-overlay {
  opacity: 1;
}

.service-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.service-card-button {
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.service-card-button:hover {
  background: var(--primary-color-dark, #0056b3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.service-card-button:active {
  transform: translateY(0);
}

/* Modal Styles for Service Enquiry */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #000;
}

/* Responsive Services */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .service-card-image {
    height: 200px;
  }

  .service-card-content {
    padding: 20px;
  }

  .service-card-title {
    font-size: 20px;
  }

  .service-card-description {
    font-size: 14px;
  }

  .modal-content {
    margin: 10% auto;
    padding: 20px;
    max-width: 90%;
  }
}

/* Destination Detail Page */
.destination-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.destination-hero-slider {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.destination-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.destination-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 800px;
}

.destination-hero-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-hero-description {
  font-size: 20px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.destination-tours-section {
  padding: 60px 0;
}

.no-tours-message {
  text-align: center;
  padding: 60px 20px;
  background: var(--bg-light);
  border-radius: 12px;
  margin-top: 40px;
}

.no-tours-message p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .destination-hero {
    height: 400px;
  }
  
  .destination-hero-title {
    font-size: 32px;
  }
  
  .destination-hero-description {
    font-size: 16px;
  }
  
  .destination-tours-section {
    padding: 40px 0;
  }
}
