/* ==========================================================================
   Tour Detail & Hotels Directory Specific CSS
   Theme: Luxury Minimalist Editorial - Deep Pine Green & Gold Accents
   ========================================================================== */

/* Disable global background image for detail page to ensure clean contrast */
.tour-detail-page::after {
  display: none !important;
}

.tour-detail-page {
  background-color: #fbf8f3 !important;
  color: var(--color-dark-green);
  font-family: 'Mahoor', Tahoma, Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow: visible !important;
  overflow-x: visible !important;
}

.tour-detail-page h1,
.tour-detail-page h2,
.tour-detail-page h3,
.tour-detail-page h4,
.tour-detail-page h5,
.tour-detail-page h6,
.tour-detail-page button,
.tour-detail-page input,
.tour-detail-page select,
.tour-detail-page textarea {
  font-family: 'Mahoor', Tahoma, Arial, sans-serif !important;
}

.tour-detail-main {
  padding-top: 65px; /* Offset for sticky header */
}

/* --------------------------------------------------------------------------
   1. Dynamic Immersive Hero Title Section & Breadcrumbs
   -------------------------------------------------------------------------- */
.tour-detail-header-section {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 155px 24px 75px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 420px;
  justify-content: center;
  transition: background-image 0.5s ease-in-out;
}

/* Linear-gradient overlay for dark contrast backdrop */
.tour-detail-header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 46, 24, 0.3) 0%, rgba(10, 46, 24, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.tour-breadcrumbs,
.tour-header-content,
.tour-header-badges {
  position: relative;
  z-index: 2; /* Float above dynamic background and dark overlay */
}

.tour-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark-green);
  margin-bottom: 24px;
  background: #fbf8f3;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(10, 46, 24, 0.15);
  box-shadow: 0 4px 15px rgba(10, 46, 24, 0.08);
}

.tour-breadcrumbs a {
  color: rgba(10, 46, 24, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

.tour-breadcrumbs a:hover {
  color: #c9a054; /* Gold text highlight with high contrast on off-white */
}

.tour-breadcrumbs .sep {
  color: rgba(10, 46, 24, 0.4);
  font-size: 11px;
}

.tour-breadcrumbs .current {
  color: var(--color-dark-green);
  font-weight: 700;
}

.tour-header-content {
  max-width: 850px;
  margin: 0 auto;
}

.tour-tagline {
  font-size: 12px;
  font-weight: 800;
  color: #d1b46a; /* Luxury gold label */
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.tour-header-title {
  font-size: clamp(24px, 4.5vw, 38px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tour-header-subtitle {
  font-size: clamp(13px, 2.2vw, 15px);
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 32px auto;
}

.tour-header-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.header-quick-badge {
  background: #fbf8f3;
  border: 1px solid rgba(10, 46, 24, 0.15);
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark-green);
  box-shadow: 0 8px 32px rgba(10, 46, 24, 0.08);
  transition: all 0.3s ease;
}

.header-quick-badge:hover {
  background: #f5f2ed;
  transform: translateY(-2px);
  border-color: rgba(10, 46, 24, 0.25);
  box-shadow: 0 10px 24px rgba(10, 46, 24, 0.12);
}

/* --------------------------------------------------------------------------
   2. Bento Overview Section
   -------------------------------------------------------------------------- */
.tour-overview-bento {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-bottom: 35px;
}

.bento-info-card {
  background: #ffffff;
  border: 1px solid rgba(10, 46, 24, 0.04);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(10, 46, 24, 0.015);
}

.bento-title {
  font-size: 16px;
  font-weight: 850;
  color: var(--color-dark-green);
  margin-bottom: 22px;
  border-bottom: 1.5px solid rgba(10, 46, 24, 0.05);
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bento-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.bento-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #faf8f5;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(10, 46, 24, 0.03);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.bento-detail-item:hover {
  transform: translateY(-3px);
  border-color: rgba(209, 180, 106, 0.35);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 46, 24, 0.04);
}

.bento-detail-icon-wrapper {
  background: rgba(10, 46, 24, 0.05);
  color: var(--color-dark-green);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.bento-detail-item:hover .bento-detail-icon-wrapper {
  background: rgba(209, 180, 106, 0.15);
  color: #b08d3e;
}

.bento-detail-svg {
  width: 19px;
  height: 19px;
  display: block;
}

.bento-detail-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}

.detail-label {
  font-size: 11px;
  color: rgba(10, 46, 24, 0.45);
  font-weight: 700;
}

.detail-value {
  font-size: 13.5px;
  color: var(--color-dark-green);
  font-weight: 800;
}

.bento-security-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(209, 180, 106, 0.08);
  border: 1px solid rgba(209, 180, 106, 0.15);
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(10, 46, 24, 0.85);
}

.bento-shield-icon {
  width: 19px;
  height: 19px;
  color: #b08d3e;
  flex-shrink: 0;
}

.bento-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(10, 46, 24, 0.04);
  padding: 12px;
  box-shadow: 0 10px 30px rgba(10, 46, 24, 0.015);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.bento-img-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 180px;
}

.bento-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.bento-image-card:hover .bento-img {
  transform: scale(1.08);
}

.bento-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  background: linear-gradient(to top, rgba(10, 46, 24, 0.75) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
}

.bento-image-badge {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-dark-green);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: inline-block;
}

/* --------------------------------------------------------------------------
   3. Container Grid Layout
   -------------------------------------------------------------------------- */
.tour-detail-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 60px 24px 90px 24px;
}

.tour-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tour-content-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --------------------------------------------------------------------------
   4. Search & Filters Panel (Glass styling with clear state transitions)
   -------------------------------------------------------------------------- */
.tour-filters-card {
  background: #ffffff;
  border: 1px solid rgba(10, 46, 24, 0.05);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(10, 46, 24, 0.015);
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.filters-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 850;
  color: var(--color-dark-green);
  border-bottom: 1.5px solid rgba(10, 46, 24, 0.05);
  padding-bottom: 14px;
  margin: 0;
}

.title-icon {
  width: 20px;
  height: 20px;
  color: var(--color-dark-green);
  flex-shrink: 0;
}

.filters-search-wrapper {
  position: relative;
  width: 100%;
}

.filters-search-wrapper .search-icon {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  color: rgba(10, 46, 24, 0.4);
  pointer-events: none;
  transition: color 0.3s ease;
}

.filters-search-wrapper input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(10, 46, 24, 0.08);
  background: #faf8f5;
  color: var(--color-dark-green);
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  outline: none;
  box-sizing: border-box;
}

.filters-search-wrapper input:focus {
  border-color: var(--color-dark-green);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(10, 46, 24, 0.06);
}

.filters-search-wrapper input:focus + .search-icon {
  color: var(--color-dark-green);
}

.filter-groups-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.filter-group-box {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px dashed rgba(10, 46, 24, 0.05);
  padding-bottom: 14px;
}

.filter-group-box:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-group-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-dark-green);
  min-width: 85px;
  flex-shrink: 0;
}

.filter-capsules-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-capsule {
  background: transparent;
  border: 1.5px solid rgba(10, 46, 24, 0.08);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(10, 46, 24, 0.6);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  outline: none;
}

.filter-capsule:hover {
  border-color: rgba(10, 46, 24, 0.3);
  color: var(--color-dark-green);
  background-color: rgba(10, 46, 24, 0.02);
}

.filter-capsule.active {
  background-color: var(--color-dark-green);
  border-color: var(--color-dark-green);
  color: var(--color-mustard) !important;
  box-shadow: 0 5px 15px rgba(26, 46, 26, 0.12);
}

/* --------------------------------------------------------------------------
   5. Hotel Directory - Premium Minimalist Table List Directory
   -------------------------------------------------------------------------- */
.hotel-listings-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.listings-stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}

.stats-text {
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(10, 46, 24, 0.55);
}

.btn-clear-filters {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 800;
  color: #b08d3e;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
  text-decoration: underline;
}

.btn-clear-filters:hover {
  color: var(--color-dark-green);
}

.hotel-table-list {
  background: #ffffff;
  border: 1px solid rgba(10, 46, 24, 0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10, 46, 24, 0.012);
  width: 100%;
  box-sizing: border-box;
}

/* Header Row styling (Desktop only) */
.hotel-table-header {
  display: grid;
  grid-template-columns: 90px 2fr 2.2fr 1fr 0.8fr 1.3fr;
  gap: 16px;
  background: #faf6ef;
  border-bottom: 1.5px solid rgba(10, 46, 24, 0.06);
  padding: 12px 24px;
  align-items: center;
  text-align: center; /* Center-align all header titles */
  box-sizing: border-box;
}

.header-col {
  font-size: 13px;
  font-weight: 850;
  color: var(--color-dark-green);
  opacity: 0.85;
}

/* Rows Container wrapper */
.hotel-rows-container {
  display: flex;
  flex-direction: column;
}

/* Outer Hotel Card Item */
.hotel-table-item {
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 46, 24, 0.05);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  border-left: 0px solid transparent;
}

.hotel-table-item:last-child {
  border-bottom: none;
}

/* Hover Accent animations */
.hotel-table-item:hover {
  background-color: #faf6ef;
  border-left: 4px solid var(--color-gold);
}

/* Main Table Details Grid (Desktop) */
.hotel-table-row-main {
  display: grid;
  grid-template-columns: 90px 2fr 2.2fr 1fr 0.8fr 1.3fr;
  gap: 16px;
  padding: 16px 24px; /* Spacious row padding */
  align-items: center;
  box-sizing: border-box;
}

/* Sub-columns layout elements */
.row-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Image/Icon placeholder thumbnail column */
.row-col.col-img {
  width: 90px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(10, 46, 24, 0.06);
  background-color: #faf6ef; /* Soft warm cream */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-sizing: border-box;
}

.hotel-placeholder-icon {
  width: 24px;
  height: 24px;
  color: #b08d3e; /* Brand gold */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.hotel-table-item:hover .row-col.col-img {
  background-color: rgba(209, 180, 106, 0.12); /* Brighter warm gold tint */
  border-color: rgba(209, 180, 106, 0.35);
}

.hotel-table-item:hover .hotel-placeholder-icon {
  transform: scale(1.1);
  color: var(--color-dark-green);
}

/* Hotel Name and Stars column */
.row-col.col-name {
  gap: 4px;
  align-items: center;
  text-align: center;
}

.row-hotel-name {
  font-size: 14.5px;
  font-weight: 850;
  color: var(--color-dark-green);
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotel-table-item:hover .row-hotel-name {
  color: #8e702d;
}

/* Board basis pill displayed inline on mobile inside title */
.mobile-board-pill {
  display: none;
}

.hotel-stars {
  color: #d1b46a; /* Gold stars */
  font-size: 11px;
  letter-spacing: 2px;
  display: flex;
  gap: 2px;
  line-height: 1;
  justify-content: center;
}

/* Region Column */
.row-col.col-region {
  align-items: center;
  text-align: center;
}

.row-region-text {
  font-size: 13px;
  font-weight: 700;
  color: rgba(10, 46, 24, 0.7);
}

/* Board basis (Meal Plan) pill */
.row-col.col-board {
  align-items: center;
}

.row-board-pill {
  background: rgba(10, 46, 24, 0.05);
  border: 1px solid rgba(10, 46, 24, 0.08);
  color: var(--color-dark-green);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  display: inline-block;
  width: fit-content;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Features List wrapper - Gold-tinted luxury pills layout */
.hotel-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; /* Roomy gap for tag spacing */
  align-items: center;
  justify-content: center;
}

.feature-tag {
  background: rgba(209, 180, 106, 0.06); /* Soft gold/champagne tint */
  border: 1px solid rgba(209, 180, 106, 0.25); /* Subtle gold border */
  color: var(--color-dark-green);
  padding: 4px 12px;
  border-radius: 100px; /* Perfect pill badge */
  font-size: 11px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

.hotel-table-item:hover .feature-tag {
  background: rgba(209, 180, 106, 0.12); /* Slightly brighter gold on hover */
  border-color: rgba(209, 180, 106, 0.45);
  color: var(--color-dark-green);
}

/* Actions/Booking layout column (Side-by-side row on desktop) */
.row-col.col-action {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.row-price-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
}

.row-price-value {
  font-size: 12px;
  color: #b08d3e; /* Gold price color */
  font-weight: 800;
  white-space: nowrap;
}

.btn-card-inquire {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-dark-green);
  color: var(--color-mustard);
  border: 1.5px solid var(--color-dark-green);
  padding: 6.5px 15px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 800;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  outline: none;
  white-space: nowrap;
}

.hotel-table-item:hover .btn-card-inquire {
  background-color: #b08d3e;
  border-color: #b08d3e;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(176, 141, 62, 0.2);
}

.btn-card-inquire svg {
  width: 13px;
  height: 13px;
  transition: transform 0.35s ease;
}

.hotel-table-item:hover .btn-card-inquire svg {
  transform: translateX(-3px);
}

/* No Results CSS Box */
.no-results-box {
  background: #ffffff;
  border: 1.5px dashed rgba(10, 46, 24, 0.12);
  border-radius: 24px;
  padding: 55px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.no-results-icon {
  width: 44px;
  height: 44px;
  color: rgba(10, 46, 24, 0.25);
}

.no-results-box h4 {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--color-dark-green);
  margin: 0;
}

.no-results-box p {
  font-size: 13px;
  color: rgba(10, 46, 24, 0.5);
  margin: 0;
  max-width: 320px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   6. Bottom Consultation & Booking Section (Deep Forest Green & Gold)
   -------------------------------------------------------------------------- */
.tour-booking-section {
  background-color: #0A2E18; /* Luxury Deep Pine Green */
  border-top: 3px solid var(--color-gold); /* Prominent gold line top */
  padding: 85px 24px;
  width: 100%;
  box-sizing: border-box;
}

.booking-section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr; /* Info on the right, Form on the left */
  gap: 56px;
  align-items: center;
}

/* Info Pane styling */
.booking-info-pane {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 16px;
  color: #ffffff;
}

.booking-badge {
  color: #d1b46a; /* Luxury gold label */
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.booking-info-pane h3 {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 900;
  margin: 0;
  line-height: 1.4;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.booking-info-pane p {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-weight: 500;
  max-width: 500px;
}

.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.trust-indicator-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: #d1b46a; /* Gold icon */
  flex-shrink: 0;
}

.trust-indicator-item a {
  color: #d1b46a;
  text-decoration: none;
  font-weight: 800;
  transition: opacity 0.2s ease;
}

.trust-indicator-item a:hover {
  opacity: 0.85;
}

/* Form Pane styling */
.booking-form-pane {
  background: rgba(255, 255, 255, 0.03); /* Ultra soft glass transparent background */
  border: 1px solid rgba(209, 180, 106, 0.2); /* Soft gold border */
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.booking-form-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(209, 180, 106, 0.08); /* Very soft gold tint */
  border: 1px solid rgba(209, 180, 106, 0.25); /* Elegant gold border */
  border-radius: 18px;
  padding: 14px 20px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 12.5px;
  line-height: 1.75;
  font-weight: 600;
  text-align: right;
  box-sizing: border-box;
}

.notice-icon {
  width: 20px;
  height: 20px;
  color: #d1b46a; /* Gold notice phone icon */
  flex-shrink: 0;
}

.booking-form-notice a {
  color: #d1b46a;
  text-decoration: underline;
  font-weight: 800;
  transition: color 0.2s ease;
}

.booking-form-notice a:hover {
  color: #ffffff;
}

.consultation-form-horizontal {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.form-group-h {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.form-group-h.select-group {
  flex: 1 1 100%;
}

.form-group-h label {
  font-size: 12.5px;
  font-weight: 800;
  color: #d1b46a; /* Gold Labels */
  text-align: right;
}

.form-group-h input,
.form-group-h select {
  width: 100%;
  padding: 12px 8px;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
}

/* Restyle dropdown options */
.form-group-h select option {
  background-color: #0A2E18 !important;
  color: #ffffff !important;
  padding: 10px;
}

.form-group-h select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23d1b46a' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: left 4px center;
  padding-left: 28px;
  text-align: right;
  text-align-last: right;
  direction: rtl;
  cursor: pointer;
}

.form-group-h input:focus,
.form-group-h select:focus {
  border-color: #d1b46a; /* Gold border bottom on focus */
  box-shadow: none;
  background: transparent;
}

.form-group-h input::placeholder {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.submit-btn-h {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  justify-content: center;
  gap: 10px;
  display: flex;
  align-items: center;
  background-color: var(--color-mustard);
  color: var(--color-dark-green);
  border: 1.5px solid var(--color-mustard);
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  padding: 14px 20px;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  letter-spacing: 0.2px;
  box-shadow: 0 8px 24px rgba(225, 173, 1, 0.15);
  box-sizing: border-box;
}

.submit-btn-h:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--color-dark-green);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.send-icon {
  width: 17px;
  height: 17px;
}

/* --------------------------------------------------------------------------
   7. Toast Notification System
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-item {
  background: #0A2E18;
  color: #fcfaf6;
  padding: 16px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(10, 46, 24, 0.2);
  border: 1px solid rgba(209, 180, 106, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 700;
  direction: rtl;
  transform: translateY(20px);
  opacity: 0;
  animation: toastIn 0.35s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.toast-success-icon {
  width: 20px;
  height: 20px;
  color: #d1b46a;
}

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

@keyframes toastOut {
  to {
    transform: translateY(-20px);
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   8. Responsive Layout Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .tour-detail-header-section {
    padding: 125px 20px 55px 20px;
    min-height: 350px;
  }

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

  .tour-booking-section {
    padding: 60px 20px;
  }

  .booking-info-pane {
    text-align: center;
    align-items: center;
  }

  .booking-info-pane p {
    max-width: 100%;
  }

  .trust-indicators {
    align-items: center;
    width: 100%;
  }

  .booking-form-pane {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .tour-detail-container {
    padding: 35px 16px 65px 16px;
  }
  
  .tour-filters-card {
    padding: 24px 20px;
  }
  
  .filter-group-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 16px;
  }
  
  .filter-group-label {
    min-width: unset;
  }

  /* Table responsive card collapse styles on Mobile */
  .hotel-table-list {
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .hotel-table-header {
    display: none !important;
  }

  .hotel-rows-container {
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  .hotel-table-item {
    background: #ffffff;
    border: 1px solid rgba(10, 46, 24, 0.06);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 6px 15px rgba(10, 46, 24, 0.01);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hotel-table-item:hover {
    border-left: 1px solid rgba(10, 46, 24, 0.06);
    border-right: 4px solid var(--color-gold); /* Side border on hover */
    padding-left: 16px;
    background-color: #ffffff;
  }

  .hotel-table-row-main {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-template-rows: auto auto auto auto; /* 4 rows */
    gap: 12px;
    padding: 0;
    width: 100%;
  }

  .hotel-table-row-main .row-col.col-img {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 90px;
    height: 70px;
  }

  .hotel-table-row-main .row-col.col-name {
    grid-column: 2;
    grid-row: 1;
    align-items: flex-start;
  }

  .hotel-table-row-main .row-col.col-region {
    grid-column: 2;
    grid-row: 2;
    align-items: flex-start;
  }

  .hotel-table-row-main .row-col.col-board {
    display: none !important; /* Hidden because we show inline mobile-board-pill */
  }

  .mobile-board-pill {
    display: inline-block;
    background: rgba(10, 46, 24, 0.05);
    border: 1px solid rgba(10, 46, 24, 0.08);
    color: var(--color-dark-green);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    margin-right: 6px;
    vertical-align: middle;
  }

  /* Features row layout on mobile */
  .hotel-table-row-main .row-col.col-features {
    grid-column: 1 / span 2;
    grid-row: 3;
    border-top: 1px solid rgba(10, 46, 24, 0.05);
    padding-top: 10px;
    margin-top: 4px;
  }

  /* Action row occupies full width at the bottom */
  .hotel-table-row-main .row-col.col-action {
    grid-column: 1 / span 2;
    grid-row: 4; /* Shuffled to row 4 */
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(10, 46, 24, 0.06);
    padding-top: 12px;
    margin-top: 4px;
    width: 100%;
  }

  .hotel-table-row-main .btn-card-inquire {
    padding: 7px 16px;
    font-size: 12.5px;
  }
  
  .tour-overview-bento {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .bento-image-card {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .bento-details-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .tour-breadcrumbs {
    flex-wrap: wrap !important;
    justify-content: center !important;
    font-size: 11px !important;
    gap: 6px !important;
  }
  
  .tour-breadcrumbs .sep {
    font-size: 9px !important;
  }

  .filter-capsules-list {
    gap: 6px;
  }

  .filter-capsule {
    padding: 5px 12px;
    font-size: 11.5px;
  }
}
