/*
 * FILE: app.css
 * OWNS: Global typography, layout, buttons, listing card base, daterangepicker widget, checkout page
 * LOADED ON: Every page
 * DO NOT ADD: Detail page styles (.hd-*, .td-*), card UI, search forms, filter sidebars, portal styles
 *
 * TripManga - Primary Application Stylesheet
 * Brand: #038a52 (green) · #f47c04 (orange) · #0f172a (navy)
 * Font: Poppins · Responsive: Mobile-first, breakpoints 480 / 768 / 1024 / 1280
 */

/* ═══════════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES (Design Tokens)
═══════════════════════════════════════════════════════════════ */
:root {
  /* Brand */
  --tm-green: #038a52;
  --tm-green-dark: #026d41;
  --tm-green-light: #e8f5ee;
  --tm-orange: #f47c04;
  --tm-orange-dark: #dc6e00;
  --tm-navy: #0f172a;
  --tm-navy-mid: #1e293b;

  /* Neutrals */
  --tm-gray-100: #f8fafc;
  --tm-gray-200: #f1f5f9;
  --tm-gray-300: #e2e8f0;
  --tm-gray-400: #cbd5e1;
  --tm-gray-500: #94a3b8;
  --tm-gray-600: #64748b;
  --tm-gray-700: #475569;
  --tm-gray-800: #334155;
  --tm-gray-900: #1e293b;

  /* Surfaces */
  --tm-white: #ffffff;
  --tm-surface: #f8fafc;

  /* Typography */
  --tm-font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --tm-text: #1a2b48;
  --tm-muted: #64748b;

  /* Radii */
  --tm-radius-sm: 6px;
  --tm-radius: 10px;
  --tm-radius-lg: 16px;
  --tm-radius-xl: 24px;
  --tm-radius-full: 9999px;

  /* Shadows */
  --tm-shadow-sm: 0 1px 4px rgba(0, 0, 0, .06);
  --tm-shadow: 0 4px 20px rgba(0, 0, 0, .08);
  --tm-shadow-lg: 0 8px 40px rgba(0, 0, 0, .12);
  --tm-shadow-xl: 0 16px 60px rgba(0, 0, 0, .16);

  /* Transitions */
  --tm-ease: .2s ease;
  --tm-ease-med: .3s ease;
}

/* ═══════════════════════════════════════════════════════════════
   2. RESET / BASE
═══════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--tm-font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--tm-text);
  background: var(--tm-white);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--tm-green);
  text-decoration: none;
  transition: color var(--tm-ease);
}

a:hover {
  color: var(--tm-green-dark);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tm-font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--tm-navy);
  margin-top: 0;
  margin-bottom: .5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ═══════════════════════════════════════════════════════════════
   3. GLOBAL WRAPPERS
═══════════════════════════════════════════════════════════════ */
.bc_wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-template-content {
  flex: 1;
}

.container {
  max-width: 1200px;
}

/* ═══════════════════════════════════════════════════════════════
   4. TYPOGRAPHY UTILS
═══════════════════════════════════════════════════════════════ */
.text-green {
  color: var(--tm-green) !important;
}

.text-orange {
  color: var(--tm-orange) !important;
}

.text-navy {
  color: var(--tm-navy) !important;
}

.text-muted {
  color: var(--tm-muted) !important;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   5. BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn,
button.btn {
  font-family: var(--tm-font);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--tm-radius);
  padding: 10px 24px;
  cursor: pointer;
  transition: all var(--tm-ease);
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: 1.5px solid transparent;
}

.btn-primary,
.btn-theme {
  background: var(--tm-green);
  color: var(--tm-white) !important;
  border-color: var(--tm-green);
}

.btn-primary:hover,
.btn-theme:hover {
  background: var(--tm-green-dark);
  border-color: var(--tm-green-dark);
  color: var(--tm-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(3, 138, 82, .3);
}

.btn-orange {
  background: var(--tm-orange);
  color: var(--tm-white) !important;
  border-color: var(--tm-orange);
}

.btn-orange:hover {
  background: var(--tm-orange-dark);
  border-color: var(--tm-orange-dark);
  color: var(--tm-white) !important;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--tm-green);
  border-color: var(--tm-green);
}

.btn-outline:hover {
  background: var(--tm-green);
  color: var(--tm-white) !important;
}

.btn-white {
  background: var(--tm-white);
  color: var(--tm-text);
  border-color: var(--tm-gray-300);
  box-shadow: var(--tm-shadow-sm);
}

.btn-white:hover {
  background: var(--tm-gray-100);
  border-color: var(--tm-gray-400);
}

.btn-sm {
  padding: 6px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

/* Danger */
.btn-danger {
  background: #dc3545;
  color: #fff !important;
  border-color: #dc3545;
}

.btn-danger:hover {
  background: #b02a37;
  border-color: #b02a37;
  color: #fff !important;
}

/* ═══════════════════════════════════════════════════════════════
   6. BADGES / PILLS / TAGS
═══════════════════════════════════════════════════════════════ */
.tm-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--tm-radius-full);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.tm-badge-green {
  background: var(--tm-green-light);
  color: var(--tm-green);
}

.tm-badge-orange {
  background: #fff3e0;
  color: var(--tm-orange);
}

.tm-badge-navy {
  background: var(--tm-navy);
  color: #fff;
}

.tm-badge-gray {
  background: var(--tm-gray-200);
  color: var(--tm-gray-700);
}

/* ═══════════════════════════════════════════════════════════════
   7. FORMS / INPUTS
═══════════════════════════════════════════════════════════════ */
.form-control,
.form-select,
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
textarea,
select {
  font-family: var(--tm-font);
  font-size: 14px;
  color: var(--tm-text);
  background: var(--tm-white);
  border: 1.5px solid var(--tm-gray-300);
  border-radius: var(--tm-radius);
  padding: 10px 14px;
  width: 100%;
  transition: border-color var(--tm-ease), box-shadow var(--tm-ease);
  line-height: 1.5;
  -webkit-appearance: none;
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
  box-shadow: none;
  outline: none;
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
  color: var(--tm-gray-500);
  font-weight: 400;
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--tm-gray-700);
  margin-bottom: 6px;
}

/* Input with icon */
.input-icon-wrap {
  position: relative;
}

.input-icon-wrap .form-control {
  padding-left: 42px;
}

.input-icon-wrap .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tm-green);
  font-size: 16px;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   8. SELECT2 OVERRIDES
═══════════════════════════════════════════════════════════════ */
.select2-container--default .select2-selection--single {
  border: 1.5px solid var(--tm-gray-300);
  border-radius: var(--tm-radius);
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--tm-font);
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--tm-green);
  box-shadow: 0 0 0 3px rgba(3, 138, 82, .12);
  outline: none;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--tm-green);
}

.select2-dropdown {
  border: 1.5px solid var(--tm-gray-300);
  border-radius: var(--tm-radius);
}

/* ═══════════════════════════════════════════════════════════════
   9. HEADER
═══════════════════════════════════════════════════════════════ */
.bc_header {
  background: var(--tm-white);
  border-bottom: 1px solid var(--tm-gray-200);
  position: sticky;
  top: 0;
  z-index: 500;
  transition: box-shadow var(--tm-ease-med);
  font-family: var(--tm-font);
}

.bc_header.is_sticky,
.header_sticky .bc_header {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

/* Auth / Action buttons in header-right */
.bc_header .header-right .btn-auth {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--tm-radius-full);
  background: var(--tm-green);
  color: var(--tm-white) !important;
  border: none;
  cursor: pointer;
  transition: all var(--tm-ease);
}

.bc_header .header-right .btn-auth:hover {
  background: var(--tm-green-dark);
}

/* Notification bell in header */
.bc_header .dropdown-notifications .notification-icon {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--tm-orange);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Desktop nav dropdown (Bootstrap) */
.bc_header .bc-menu .dropdown-menu {
  border: 1px solid var(--tm-gray-200);
  border-radius: var(--tm-radius);
  box-shadow: var(--tm-shadow-lg);
  padding: 8px;
  min-width: 200px;
  animation: tmFadeIn .15s ease;
}

.bc_header .bc-menu .dropdown-item {
  border-radius: var(--tm-radius-sm);
  font-size: 14px;
  padding: 9px 14px;
  color: var(--tm-text);
  font-family: var(--tm-font);
  transition: all var(--tm-ease);
}

.bc_header .bc-menu .dropdown-item:hover {
  background: var(--tm-green-light);
  color: var(--tm-green);
}

/* Desktop main nav links */
.bc_header .bc-menu .main-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.bc_header .bc-menu .main-menu>li>a {
  font-weight: 700;
  font-size: 14px;
  color: var(--tm-text);
  padding: 10px 14px;
  text-decoration: none;
  transition: color var(--tm-ease);
}

.bc_header .bc-menu .main-menu>li>a:hover {
  color: var(--tm-orange);
}

/* Nav icon spacing */
.bc_header .bc-menu .main-menu>li>a i[class*="icofont-"],
.bc_header .bc-menu .main-menu>li>a i[class*="fa-"] {
  font-size: 24px;
  margin-right: 5px;
  opacity: .8;
  vertical-align: middle;
}

.bc_header .bc-menu .main-menu>li>a:hover i[class*="icofont-"],
.bc_header .bc-menu .main-menu>li>a:hover i[class*="fa-"] {
  opacity: 1;
}

/* "Become a Supplier" - transparent outlined CTA pill */
.bc_header .bc-menu .main-menu>li.menu-item-cta>a {
  background: transparent;
  color: var(--tm-green) !important;
  border: 2px solid var(--tm-green);
  border-radius: 999px;
  padding: 7px 18px;
  font-weight: 700;
  font-size: 13px;
  transition: background .2s, color .2s, transform .12s, box-shadow .2s;
}

.bc_header .bc-menu .main-menu>li.menu-item-cta>a:hover {
  background: var(--tm-green);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(3, 138, 82, .22);
}

.bc_header .bc-menu .main-menu>li.menu-item-cta>a i[class*="icofont-"],
.bc_header .bc-menu .main-menu>li.menu-item-cta>a i[class*="fa-"] {
  opacity: 1;
  font-size: 14px;
}

@keyframes tmFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

/* Language / currency preference pill in desktop header */
.pref-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--tm-radius-full);
  border: 1.5px solid var(--tm-gray-300);
  background: transparent;
  color: var(--tm-gray-700);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--tm-font);
  transition: all var(--tm-ease);
}

.pref-trigger-btn:hover {
  border-color: var(--tm-green);
  color: var(--tm-green);
}

/* ═══════════════════════════════════════════════════════════════
   10. HERO SEARCH BANNER  (.bc-form-search-all)
═══════════════════════════════════════════════════════════════ */
.bc_wrap .page-template-content .bc-form-search-all {
  padding: 180px 0 240px;
  background: url('../images/banner.jpg') no-repeat center 85% / cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
}

.bc_wrap .page-template-content .bc-form-search-all::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, .50) 0%, rgba(15, 23, 42, .65) 100%);
  pointer-events: none;
  z-index: 0;
}

.bc_wrap .page-template-content .bc-form-search-all>* {
  position: relative;
  z-index: 1;
}

.bc_wrap .page-template-content .bc-form-search-all .text-heading {
  font-family: var(--tm-font);
  font-weight: 700;
  font-size: 42px;
  color: #fff;
  text-align: center;
  margin: 0 0 8px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.bc_wrap .page-template-content .bc-form-search-all .sub-heading {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, .85);
  text-align: center;
  margin: 0 0 28px;
  font-family: var(--tm-font);
}

/* ── g-form-control tab container ─── */
.bc_wrap .page-template-content .bc-form-search-all .g-form-control {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 10;
  text-align: center;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .tab-content {
  text-align: left;
}

/* Tab bar */
.bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs {
  border: none;
  display: inline-flex;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 12px;
  padding: 0;
  flex-wrap: nowrap;
  background: transparent;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs li {
  list-style: none;
  margin: 0;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs li a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--tm-radius-xl);
  text-decoration: none;
  transition: all .25s ease;
  font-family: var(--tm-font);
  line-height: 1.4;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs li a:hover {
  background: rgba(255, 255, 255, .25);
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs li a.active {
  background: var(--tm-green);
  color: #fff;
  border-color: var(--tm-green);
  box-shadow: 0 4px 16px rgba(3, 138, 82, .35);
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs li a i {
  font-size: 16px;
  position: static;
}

/* Tab content card */
.bc_wrap .page-template-content .bc-form-search-all .g-form-control .tab-content {
  position: relative;
  background: transparent;
  border-radius: var(--tm-radius-lg);
  box-shadow: none;
  overflow: visible;
  border: none;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .tab-content::before {
  display: none;
}

.bc_wrap .page-template-content .bc-form-search-all .g-form-control .tab-content .tab-pane {
  padding: 0;
}

/* ═══════════════════════════════════════════════════════════════
   11. SEARCH FORM  (.bc_form:not(.flight-search-form))
═══════════════════════════════════════════════════════════════ */

/* ── Standalone card form (listing pages) ── */
.bc_wrap .bc_form:not(.flight-search-form) {
  /*background: var(--tm-white);*/
  border-radius: var(--tm-radius-lg);
  box-shadow: var(--tm-shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 0;
  font-family: var(--tm-font);
  justify-content: flex-start;
}

/* ── Hero context: transparent wrapper ── */
.bc-form-search-all .bc_form:not(.flight-search-form) {
  border-radius: 0;
  border: none;
  box-shadow: none;
}

/* Fields area */
.bc_wrap .bc_form:not(.flight-search-form) .g-field-search {
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
}

.bc_wrap .bc_form:not(.flight-search-form) .g-field-search>.row {
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  min-height: 72px;
}

.bc_wrap .bc_form:not(.flight-search-form) .g-field-search>.row>[class*="col-"] {
  padding: 0;
  display: flex;
  align-items: stretch;
  border-right: 1px solid var(--tm-gray-200);
  flex: 1 1 0;
  max-width: none;
  transition: background var(--tm-ease);
}

.bc_wrap .bc_form:not(.flight-search-form) .g-field-search>.row>[class*="col-"]:last-child {
  border-right: none;
}

.bc_wrap .bc_form:not(.flight-search-form) .g-field-search>.row>[class*="col-"]:hover {
  background: var(--tm-gray-100);
}

/* Each field group */
.bc_wrap .bc_form:not(.flight-search-form) .form-group {
  margin: 0;
  margin-bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  border-bottom: none;
}

/* Field icon */
.bc_wrap .bc_form:not(.flight-search-form) .field-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--tm-green);
  z-index: 1;
  margin: 0;
}

/* Field content */
.bc_wrap .bc_form:not(.flight-search-form) .form-content {
  padding: 14px 16px 14px 52px;
  width: 100%;
  position: relative;
}

.bc_wrap .bc_form:not(.flight-search-form) .form-content label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--tm-gray-500);
  margin: 0 0 3px;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1;
}

.bc_wrap .bc_form:not(.flight-search-form) .form-content .form-control {
  border: none;
  padding: 0;
  height: auto;
  font-size: 15px;
  font-weight: 600;
  color: var(--tm-text);
  background: transparent;
  box-shadow: none;
  line-height: 1.3;
  font-family: var(--tm-font);
}

.bc_wrap .bc_form:not(.flight-search-form) .form-content .form-control:focus {
  outline: none;
  box-shadow: none;
}

.bc_wrap .bc_form:not(.flight-search-form) .form-content .form-control::placeholder {
  color: var(--tm-gray-400);
  font-weight: 400;
  font-size: 14px;
}

/* Date renders */
.bc_wrap .bc_form:not(.flight-search-form) .form-content .render,
.bc_wrap .bc_form:not(.flight-search-form) .form-content .check-in-render,
.bc_wrap .bc_form:not(.flight-search-form) .form-content .check-out-render {
  font-size: 15px;
  font-weight: 600;
  color: var(--tm-text);
  display: inline;
  line-height: 1.3;
}

.bc_wrap .bc_form:not(.flight-search-form) .form-content .date-wrapper span {
  color: var(--tm-gray-400);
  font-size: 13px;
}

/* Guest/passenger render */
.bc_wrap .bc_form:not(.flight-search-form) .form-content .wrapper-more .render {
  font-size: 15px;
  font-weight: 600;
  color: var(--tm-text);
  line-height: 1.3;
}

/* Dropdown arrow */
.bc_wrap .bc_form:not(.flight-search-form) .dropdown-toggle::after {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tm-green);
  border-top: .3em solid;
  border-right: .2em solid transparent;
  border-left: .2em solid transparent;
}

/* Guest/seat dropdowns */
.bc_wrap .bc_form:not(.flight-search-form) .select-guests-dropdown,
.bc_wrap .bc_form:not(.flight-search-form) .select-seat-type-dropdown {
  min-width: 280px;
  padding: 14px 18px;
  border-radius: var(--tm-radius);
  box-shadow: var(--tm-shadow-lg);
  border: 1px solid var(--tm-gray-300);
  font-family: var(--tm-font);
  background: var(--tm-white);
}

.bc_wrap .bc_form:not(.flight-search-form) .dropdown-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--tm-gray-200);
}

.bc_wrap .bc_form:not(.flight-search-form) .dropdown-item-row:last-child {
  border-bottom: none;
}

.bc_wrap .bc_form:not(.flight-search-form) .dropdown-item-row .label {
  font-size: 14px;
  font-weight: 500;
  color: var(--tm-gray-800);
}

.bc_wrap .bc_form:not(.flight-search-form) .dropdown-item-row .val {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bc_wrap .bc_form:not(.flight-search-form) .dropdown-item-row .val input[type="number"] {
  width: 36px;
  text-align: center;
  border: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--tm-text);
  background: transparent;
  -moz-appearance: textfield;
}

.bc_wrap .bc_form:not(.flight-search-form) .dropdown-item-row .val input[type="number"]::-webkit-inner-spin-button,
.bc_wrap .bc_form:not(.flight-search-form) .dropdown-item-row .val input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.bc_wrap .bc_form:not(.flight-search-form) .dropdown-item-row .btn-minus,
.bc_wrap .bc_form:not(.flight-search-form) .dropdown-item-row .btn-add {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--tm-gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tm-ease);
  font-size: 14px;
  color: var(--tm-gray-700);
  background: var(--tm-white);
}

.bc_wrap .bc_form:not(.flight-search-form) .dropdown-item-row .btn-minus:hover,
.bc_wrap .bc_form:not(.flight-search-form) .dropdown-item-row .btn-add:hover {
  border-color: var(--tm-green);
  color: var(--tm-green);
  background: var(--tm-green-light);
}

/* ── Submit button ── */
.bc_wrap .bc_form:not(.flight-search-form) .g-button-submit {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  max-width: none;
  position: static;
  padding: 0;
  margin-left: auto;
}

/* Hero context: full-height flush button */
.bc-form-search-all .bc_form:not(.flight-search-form) .g-button-submit {
  background: transparent;
}

.bc-form-search-all .bc_form:not(.flight-search-form) .g-button-submit button {
  height: 100%;
  width: auto;
  min-height: 72px;
  padding: 0 36px;
  background: var(--tm-orange);
  color: var(--tm-white);
  border: none;
  border-radius: 0 var(--tm-radius-lg) var(--tm-radius-lg) 0;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--tm-ease);
  font-family: var(--tm-font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1;
}

.bc-form-search-all .bc_form:not(.flight-search-form) .g-button-submit button:hover {
  background: var(--tm-orange-dark);
}

.bc-form-search-all .bc_form:not(.flight-search-form) .g-button-submit button .fa {
  font-size: 18px;
  color: #fff;
}

/* Standalone card: round button */
.bc_wrap .bc_form_search .bc_form:not(.flight-search-form) .g-button-submit {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.bc_wrap .bc_form_search .bc_form:not(.flight-search-form) .g-button-submit button {
  width: 56px;
  height: 56px;
  padding: 0;
  background: var(--tm-green);
  color: var(--tm-white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all var(--tm-ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(3, 138, 82, .3);
}

.bc_wrap .bc_form_search .bc_form:not(.flight-search-form) .g-button-submit button:hover {
  background: var(--tm-green-dark);
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(3, 138, 82, .4);
}

.bc_wrap .bc_form_search .bc_form:not(.flight-search-form) .g-button-submit button .fa {
  font-size: 20px;
  color: #fff;
}

/* Smart search / autocomplete */
.bc_wrap .bc_form:not(.flight-search-form) .smart-search {
  position: relative;
}

.bc_wrap .bc_form:not(.flight-search-form) .bc-autocomplete {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--tm-white);
  border-radius: var(--tm-radius);
  box-shadow: var(--tm-shadow-lg);
  border: 1px solid var(--tm-gray-300);
  z-index: 200;
  max-height: 280px;
  overflow-y: auto;
}

.bc_wrap .bc_form:not(.flight-search-form) .bc-autocomplete .item {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--tm-text);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background var(--tm-ease);
}

.bc_wrap .bc_form:not(.flight-search-form) .bc-autocomplete .item:hover {
  background: var(--tm-green-light);
  color: var(--tm-green);
}

.bc_wrap .bc_form:not(.flight-search-form) .bc-autocomplete .item i {
  color: var(--tm-green);
}

.bc_wrap .bc_form:not(.flight-search-form) .bc-autocomplete .h-line {
  color: var(--tm-orange);
  font-weight: 700;
}

.bc_wrap .bc_form:not(.flight-search-form) .smart-search .parent_text {
  font-size: 14px;
  font-weight: 500;
}

.bc_wrap .bc_form:not(.flight-search-form) .border-right {
  border-right: 1px solid var(--tm-gray-200);
}

/* Google Places autocomplete z-index */
.pac-container {
  z-index: 99999 !important;
  font-family: var(--tm-font) !important;
}

/* Per-service hero sections (single-service pages) */
.bc_wrap .page-template-content .bc-form-search-hotel,
.bc_wrap .page-template-content .bc-form-search-tour,
.bc_wrap .page-template-content .bc-form-search-space,
.bc_wrap .page-template-content .bc-form-search-car,
.bc_wrap .page-template-content .bc-form-search-event,
.bc_wrap .page-template-content .bc-form-search-boat {
  padding: 80px 0 50px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
  overflow: visible;
}

.bc_wrap .page-template-content .bc-form-search-hotel>.container,
.bc_wrap .page-template-content .bc-form-search-tour>.container,
.bc_wrap .page-template-content .bc-form-search-space>.container,
.bc_wrap .page-template-content .bc-form-search-car>.container,
.bc_wrap .page-template-content .bc-form-search-event>.container,
.bc_wrap .page-template-content .bc-form-search-boat>.container {
  position: relative;
  z-index: 1;
}

.bc_wrap .page-template-content .bc-form-search-hotel::before,
.bc_wrap .page-template-content .bc-form-search-tour::before,
.bc_wrap .page-template-content .bc-form-search-space::before,
.bc_wrap .page-template-content .bc-form-search-car::before,
.bc_wrap .page-template-content .bc-form-search-event::before,
.bc_wrap .page-template-content .bc-form-search-boat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .5);
  z-index: 0;
}

.bc_wrap .page-template-content .bc-form-search-hotel .g-form-control,
.bc_wrap .page-template-content .bc-form-search-tour .g-form-control,
.bc_wrap .page-template-content .bc-form-search-space .g-form-control,
.bc_wrap .page-template-content .bc-form-search-car .g-form-control,
.bc_wrap .page-template-content .bc-form-search-event .g-form-control,
.bc_wrap .page-template-content .bc-form-search-boat .g-form-control {
  position: relative;
  z-index: 2;
  margin: 50px 0 0;
}

/* Carousel hero */
/* ── Carousel (plain slider) ── */
.bc_wrap .page-template-content .bc-form-search-all.bc-form-search-slider {
  position: relative;
}

.bc_wrap .page-template-content .bc-form-search-all.bc-form-search-slider .effect {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
}

.bc_wrap .page-template-content .bc-form-search-all.bc-form-search-slider .effect .item {
  width: 100%;
  height: 100% !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.bc_wrap .page-template-content .bc-form-search-all.bc-form-search-slider .effect * {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.bc_wrap .page-template-content .bc-form-search-all.bc-form-search-slider .owl-nav,
.bc_wrap .page-template-content .bc-form-search-all.bc-form-search-slider .owl-dots {
  display: none !important;
}

.bc_wrap .page-template-content .bc-form-search-all.bc-form-search-slider>.container {
  position: relative;
  z-index: 1;
}

/* ── Carousel v2 ── */
.bc_wrap .page-template-content .bc-form-search-all.carousel_v2 {
  position: relative;
  padding: 0;
}

.bc_wrap .page-template-content .bc-form-search-all.carousel_v2 .effect {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
}

.bc_wrap .page-template-content .bc-form-search-all.carousel_v2 .effect .item {
  width: 100%;
  height: 100% !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}

.bc_wrap .page-template-content .bc-form-search-all.carousel_v2 .owl-carousel,
.bc_wrap .page-template-content .bc-form-search-all.carousel_v2 .owl-stage-outer,
.bc_wrap .page-template-content .bc-form-search-all.carousel_v2 .owl-stage,
.bc_wrap .page-template-content .bc-form-search-all.carousel_v2 .owl-item {
  height: 100%;
}

.bc_wrap .page-template-content .bc-form-search-all.carousel_v2 .owl-nav,
.bc_wrap .page-template-content .bc-form-search-all.carousel_v2 .owl-dots {
  display: none;
}

.bc_wrap .page-template-content .bc-form-search-all.carousel_v2 .g-form-control {
  position: relative;
  z-index: 2;
  margin: 0;
}

/* ── Form search banner positioning ── */
.bc_wrap .bc_form_search {
  position: relative;
  z-index: 10;
  margin-bottom: 30px;
}

/* ═══════════════════════════════════════════════════════════════
   12. SERVICE LISTING CARDS  (.bc-list-item)
═══════════════════════════════════════════════════════════════ */
.bc-list-item {
  overflow: hidden;
  transition: transform var(--tm-ease-med), box-shadow var(--tm-ease-med);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/*
.bc-list-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--tm-shadow-lg);
  border-color: var(--tm-gray-300);
}
  */
.bc-list-item .figure {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.bc-list-item .figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .4s ease;
}

.bc-list-item:hover .figure img {
  transform: scale(1.04);
}

.bc-list-item .price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--tm-white);
  border-radius: var(--tm-radius);
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--tm-green);
  box-shadow: var(--tm-shadow-sm);
}

.bc-list-item .content {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bc-list-item .content .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.bc-list-item .content .title a {
  color: inherit;
  text-decoration: none;
}

.bc-list-item .content .title a:hover {
  color: var(--tm-green);
}

.bc-list-item .content .location {
  font-size: 13px;
  color: var(--tm-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.bc-list-item .content .location i {
  color: var(--tm-green);
  font-size: 14px;
}

.bc-list-item .content .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--tm-muted);
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--tm-gray-200);
}

.bc-list-item .review-score {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: var(--tm-green);
  color: #fff;
  border-radius: var(--tm-radius-sm);
  font-size: 13px;
  font-weight: 700;
}

.bc-list-item .wishlist-btn,
.tm-card .service-wishlist,
.bc-list-item .service-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 16px;
  color: var(--tm-gray-500);
  transition: all var(--tm-ease);
  border: 1px solid #e8e8e8;
  z-index: 2;
}

.bc-list-item .wishlist-btn:hover,
.tm-card .service-wishlist:hover,
.bc-list-item .service-wishlist:hover {
  color: #e74c3c;
  transform: scale(1.1);
}

.tm-card .service-wishlist.is_wishlisted,
.tm-card .service-wishlist.active,
.bc-list-item .service-wishlist.is_wishlisted,
.bc-list-item .service-wishlist.active {
  color: #e74c3c;
}

/* ── Listing grid carousels ── */
.bc-list-hotel,
.bc-list-tour,
.bc-list-car,
.bc-list-boat,
.bc-list-event,
.bc-list-space {
  overflow: hidden;
}

/* ── Section headings above listing grids ── */
.bc_wrap .bc-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  margin-top: 24px;
}

.bc_wrap .bc-section-heading .section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--tm-navy);
  margin: 0;
}

.bc_wrap .bc-section-heading .section-subtitle {
  font-size: 14px;
  color: var(--tm-muted);
  margin: 4px 0 0;
}

.bc_wrap .bc-section-heading .see-all {
  font-size: 14px;
  font-weight: 600;
  color: var(--tm-green);
  white-space: nowrap;
}

.bc_wrap .bc-section-heading .see-all:hover {
  color: var(--tm-green-dark);
}

/* ═══════════════════════════════════════════════════════════════
   13. CATEGORY BOXES
═══════════════════════════════════════════════════════════════ */
.bc-box-category-tour .figure {
  border-radius: var(--tm-radius-lg);
  overflow: hidden;
  position: relative;
}

.bc-box-category-tour .figure img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform .4s;
}

.bc-box-category-tour .figure:hover img {
  transform: scale(1.06);
}

.bc-box-category-tour .name {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
  color: var(--tm-navy);
}

/* ═══════════════════════════════════════════════════════════════
   14. DETAIL PAGES
═══════════════════════════════════════════════════════════════ */
.bc_detail_hotel,
.bc_detail_tour,
.bc_detail_car,
.bc_detail_flight,
.bc_detail_event,
.bc_detail_boat,
.bc_detail_space {
  font-family: var(--tm-font);
}

.bc_content {
  padding: 40px 0;
}

/* Gallery / banner */
.bc-banner-detail {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  max-height: 520px;
}

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

.bc-banner-detail .gallery-thumbs {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
}

.bc-banner-detail .gallery-thumbs img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--tm-radius-sm);
  cursor: pointer;
  opacity: .8;
  transition: opacity var(--tm-ease);
  border: 2px solid #fff;
}

.bc-banner-detail .gallery-thumbs img:hover {
  opacity: 1;
}

/* Detail title */
.bc_wrap .bc_detail_hotel .title-detail,
.bc_wrap .bc_detail_tour .title-detail {
  font-size: 28px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

/* Review score box */
.bc-review-score-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--tm-green);
  border-radius: var(--tm-radius);
  color: #fff;
}

.bc-review-score-box .score {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.bc-review-score-box .label {
  font-size: 12px;
  opacity: .85;
}

/* Detail section headings */
.bc-detail-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--tm-navy);
  margin: 28px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tm-gray-200);
}

/* Sticky booking sidebar */
.bc-booking-sidebar {
  background: var(--tm-white);
  border-radius: var(--tm-radius-lg);
  box-shadow: var(--tm-shadow);
  border: 1px solid var(--tm-gray-200);
  padding: 24px;
  position: sticky;
  top: 80px;
}

.bc-booking-sidebar .price-display {
  font-size: 28px;
  font-weight: 500;
  color: var(--tm-green);
  margin-bottom: 16px;
}

.bc-booking-sidebar .price-display .period {
  font-size: 14px;
  font-weight: 400;
  color: var(--tm-muted);
}

/* Amenities / attributes */
.bc_wrap .g-all-attribute {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 14px 0;
}

.bc_wrap .g-all-attribute .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--tm-text);
}

.bc_wrap .g-all-attribute .item i {
  color: var(--tm-green);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   15. BREADCRUMB
═══════════════════════════════════════════════════════════════ */
.bc_breadcrumb {
  padding: 12px 0;
  font-size: 13px;
  color: var(--tm-muted);
}

.bc_breadcrumb ol,
.bc_breadcrumb .breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  margin: 0;
  padding: 0;
  background: transparent;
}

.bc_breadcrumb .breadcrumb-item a {
  color: var(--tm-green);
}

.bc_breadcrumb .breadcrumb-item.active {
  color: var(--tm-muted);
}

.bc_breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: '/';
  color: var(--tm-gray-400);
  padding: 0 4px;
}

/* ═══════════════════════════════════════════════════════════════
   16. PAGINATION
═══════════════════════════════════════════════════════════════ */
.bc_wrap .pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  padding: 24px 0;
}

.bc_wrap .pagination .page-item .page-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--tm-radius);
  border: 1.5px solid var(--tm-gray-300);
  color: var(--tm-text);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--tm-font);
  transition: all var(--tm-ease);
  background: var(--tm-white);
}

.bc_wrap .pagination .page-item.active .page-link {
  background: var(--tm-green);
  border-color: var(--tm-green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(3, 138, 82, .25);
}

.bc_wrap .pagination .page-item .page-link:hover {
  background: var(--tm-green-light);
  border-color: var(--tm-green);
  color: var(--tm-green);
}

/* ═══════════════════════════════════════════════════════════════
   17. SIDEBAR / FILTER
═══════════════════════════════════════════════════════════════ */
.bc-sidebar {
  background: var(--tm-white);
  border-radius: var(--tm-radius-lg);
  border: 1px solid var(--tm-gray-200);
  overflow: hidden;
}

.bc-sidebar .sidebar-section {
  border-bottom: 1px solid var(--tm-gray-200);
  padding: 18px 20px;
}

.bc-sidebar .sidebar-section:last-child {
  border-bottom: none;
}

.bc-sidebar .sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Checkboxes / radios in sidebar */
.bc-sidebar .filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--tm-text);
}

.bc-sidebar .filter-item input[type="checkbox"],
.bc-sidebar .filter-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--tm-green);
  cursor: pointer;
}

.bc-sidebar .filter-item:hover {
  color: var(--tm-green);
}

/* Price range slider */
.bc-sidebar .price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--tm-green);
  margin-top: 10px;
}

/* Star rating filter */
.bc-sidebar .star-filter {
  display: flex;
  gap: 4px;
}

.bc-sidebar .star-filter label {
  cursor: pointer;
  font-size: 20px;
  color: var(--tm-gray-400);
  transition: color var(--tm-ease);
  line-height: 1;
}

.bc-sidebar .star-filter input:checked~label,
.bc-sidebar .star-filter label:hover {
  color: var(--tm-orange);
}

/* ═══════════════════════════════════════════════════════════════
   18. REVIEWS
═══════════════════════════════════════════════════════════════ */
.bc-review-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--tm-gray-200);
  display: flex;
  gap: 16px;
}

.bc-review-item:last-child {
  border-bottom: none;
}

.bc-review-item .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--tm-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--tm-green);
  font-size: 18px;
}

.bc-review-item .reviewer-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 2px;
}

.bc-review-item .review-date {
  font-size: 12px;
  color: var(--tm-muted);
  margin-bottom: 8px;
}

.bc-review-item .review-content {
  font-size: 14px;
  color: var(--tm-text);
  line-height: 1.6;
}

.bc-review-item .review-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}

.bc-review-item .review-rating .fa-star {
  color: var(--tm-orange);
  font-size: 14px;
}

/* Review form stars */
.review-form .review-items .rates .fa {
  font-size: 22px;
  color: var(--tm-gray-400);
  cursor: pointer;
  transition: color var(--tm-ease);
}

.review-form .review-items .rates .fa.hovered,
.review-form .review-items .rates .fa.selected {
  color: var(--tm-orange);
}

/* ═══════════════════════════════════════════════════════════════
   19. BOOKING / CHECKOUT
═══════════════════════════════════════════════════════════════ */
.bc-booking-page {
  font-family: var(--tm-font);
}

.form-checkout {
  padding: 32px 0;
}

.form-section {
  background: var(--tm-white);
  border-radius: var(--tm-radius-lg);
  border: 1px solid var(--tm-gray-200);
  padding: 24px;
  margin-bottom: 24px;
}

.form-section-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--tm-gray-200);
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 20px;
}

.form-group-item {
  margin-bottom: 16px;
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Order summary card */
.bc-order-summary {
  background: var(--tm-white);
  border-radius: var(--tm-radius-lg);
  border: 1px solid var(--tm-gray-200);
  overflow: hidden;
  position: sticky;
  top: 80px;
}

.bc-order-summary .summary-header {
  background: var(--tm-navy);
  color: #fff;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
}

.bc-order-summary .summary-body {
  padding: 20px;
}

.bc-order-summary .summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--tm-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--tm-gray-100);
}

.bc-order-summary .summary-row:last-child {
  border-bottom: none;
}

.bc-order-summary .summary-total {
  font-size: 18px;
  font-weight: 500;
  color: var(--tm-green);
}

/* Payment methods */
.bc-payment-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--tm-gray-300);
  border-radius: var(--tm-radius);
  cursor: pointer;
  transition: all var(--tm-ease);
  margin-bottom: 10px;
}

.bc-payment-method:hover {
  border-color: var(--tm-green);
}

.bc-payment-method.selected {
  border-color: var(--tm-green);
  background: var(--tm-green-light);
}

.bc-payment-method img {
  height: 28px;
  width: auto;
}

.bc-payment-method .method-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--tm-text);
}

/* ═══════════════════════════════════════════════════════════════
   20. USER PROFILE / DASHBOARD
═══════════════════════════════════════════════════════════════ */
.bc-user-profile {
  font-family: var(--tm-font);
  padding: 40px 0;
}

.bc-user-sidebar {
  background: var(--tm-white);
  border-radius: var(--tm-radius-lg);
  border: 1px solid var(--tm-gray-200);
  padding: 24px;
  text-align: center;
  position: sticky;
  top: 80px;
}

.bc-user-sidebar .user-avatar-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--tm-green);
}

.bc-user-sidebar .user-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-user-sidebar .user-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--tm-navy);
}

.bc-user-sidebar .user-email {
  font-size: 13px;
  color: var(--tm-muted);
  margin-top: 4px;
}

.bc-user-nav {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  text-align: left;
}

.bc-user-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--tm-radius);
  color: var(--tm-text);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--tm-ease);
  text-decoration: none;
}

.bc-user-nav li a i {
  color: var(--tm-green);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.bc-user-nav li a:hover,
.bc-user-nav li.active>a {
  background: var(--tm-green-light);
  color: var(--tm-green);
}

/* ═══════════════════════════════════════════════════════════════
   21. ALERTS / MESSAGES
═══════════════════════════════════════════════════════════════ */
.bc_wrap .alert {
  border-radius: var(--tm-radius);
  padding: 14px 18px;
  font-size: 14px;
  border: 1.5px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--tm-font);
}

.bc_wrap .alert-success {
  background: var(--tm-green-light);
  border-color: var(--tm-green);
  color: var(--tm-green);
}

.bc_wrap .alert-danger {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #dc2626;
}

.bc_wrap .alert-info {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #2563eb;
}

.bc_wrap .alert-warning {
  background: #fff7ed;
  border-color: #fdba74;
  color: #c2410c;
}

/* ═══════════════════════════════════════════════════════════════
   22. MODALS (Bootstrap overrides)
═══════════════════════════════════════════════════════════════ */
.modal .modal-content {
  border-radius: var(--tm-radius-lg);
  border: none;
  box-shadow: var(--tm-shadow-xl);
  font-family: var(--tm-font);
}

.modal .modal-header {
  border-bottom: 1px solid var(--tm-gray-200);
  padding: 20px 24px 16px;
}

.modal .modal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--tm-navy);
}

.modal .modal-body {
  padding: 24px;
}

.modal .modal-footer {
  border-top: 1px solid var(--tm-gray-200);
  padding: 16px 24px;
}

.modal .close {
  font-size: 22px;
  color: var(--tm-gray-500);
  opacity: 1;
  line-height: 1;
}

.modal .close:hover {
  color: var(--tm-text);
}

/* ═══════════════════════════════════════════════════════════════
   23. LOGIN / REGISTER MODAL
═══════════════════════════════════════════════════════════════ */
.bc-form-login,
.bc-form-register {
  font-family: var(--tm-font);
}

.bc-form-login .btn-primary,
.bc-form-register .btn-primary {
  width: 100%;
  justify-content: center;
  height: 46px;
  font-size: 15px;
}

.bc-form-login .login-or {
  text-align: center;
  position: relative;
  margin: 18px 0;
  color: var(--tm-gray-500);
  font-size: 13px;
}

.bc-form-login .login-or::before,
.bc-form-login .login-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--tm-gray-300);
}

.bc-form-login .login-or::before {
  left: 0;
}

.bc-form-login .login-or::after {
  right: 0;
}

.bc-form-login .social-login {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.bc-form-login .social-login a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--tm-radius);
  border: 1.5px solid var(--tm-gray-300);
  font-size: 14px;
  font-weight: 600;
  color: var(--tm-text);
  transition: all var(--tm-ease);
}

.bc-form-login .social-login a:hover {
  border-color: var(--tm-gray-400);
  background: var(--tm-gray-100);
}

/* ═══════════════════════════════════════════════════════════════
   24. NOTIFICATION DROPDOWN
═══════════════════════════════════════════════════════════════ */
.dropdown-notifications .dropdown-menu {
  min-width: 320px;
  padding: 0;
  border-radius: var(--tm-radius-lg);
  box-shadow: var(--tm-shadow-lg);
  border: 1px solid var(--tm-gray-200);
  overflow: hidden;
}

.dropdown-notifications .dropdown-menu .dropdown-header {
  background: var(--tm-navy);
  color: #fff;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
}

.dropdown-notifications li.notification {
  padding: 12px 16px;
  border-bottom: 1px solid var(--tm-gray-100);
  transition: background var(--tm-ease);
}

.dropdown-notifications li.notification:last-child {
  border-bottom: none;
}

.dropdown-notifications li.notification.active {
  background: var(--tm-green-light);
}

.dropdown-notifications li.notification:hover {
  background: var(--tm-gray-100);
}

.dropdown-notifications .markAsRead {
  color: var(--tm-text);
  font-size: 13px;
  text-decoration: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* ═══════════════════════════════════════════════════════════════
   25. LAZY LOAD PLACEHOLDERS
═══════════════════════════════════════════════════════════════ */
.lazy:not([src]),
img.lazy:not([src]) {
  background: linear-gradient(90deg, var(--tm-gray-200) 25%, var(--tm-gray-100) 50%, var(--tm-gray-200) 75%);
  background-size: 200% 100%;
  animation: tmSkeleton 1.4s infinite;
}

@keyframes tmSkeleton {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   26. SKELETON LOADERS
═══════════════════════════════════════════════════════════════ */
.tm-skeleton {
  border-radius: var(--tm-radius);
  background: linear-gradient(90deg, var(--tm-gray-200) 25%, var(--tm-gray-100) 50%, var(--tm-gray-200) 75%);
  background-size: 200% 100%;
  animation: tmSkeleton 1.4s infinite;
}

/* ═══════════════════════════════════════════════════════════════
   27. MAP / SEARCH MAP PAGES
═══════════════════════════════════════════════════════════════ */
.bc-map-listing {
  display: grid;
  grid-template-columns: 1fr 420px;
  height: calc(100vh - 65px);
  overflow: hidden;
}

.bc-map-listing .listing-panel {
  overflow-y: auto;
  padding: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--tm-gray-300) transparent;
}

.bc-map-listing .map-panel {
  position: relative;
}

#map_view_engine {
  width: 100%;
  height: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   28. PANELS / TABS (Bootstrap overrides)
═══════════════════════════════════════════════════════════════ */
.panel {
  background: var(--tm-white);
  border-radius: var(--tm-radius-lg);
  border: 1px solid var(--tm-gray-200);
  box-shadow: var(--tm-shadow-sm);
  overflow: hidden;
}

.panel .panel-body {
  padding: 20px;
}

.panel .panel-heading {
  background: var(--tm-navy);
  color: #fff;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
}

.panel .panel-body .tab-content {
  padding: 16px 0 0;
}

/* Bootstrap nav-tabs (non-hero) */
.bc_wrap .nav-tabs:not(.g-form-control .nav-tabs) {
  border-bottom: 2px solid var(--tm-gray-200);
  gap: 4px;
}

.bc_wrap .nav-tabs:not(.g-form-control .nav-tabs)>li>a {
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--tm-muted);
  margin-bottom: -2px;
  transition: all var(--tm-ease);
  font-family: var(--tm-font);
}

.bc_wrap .nav-tabs:not(.g-form-control .nav-tabs)>li>a:hover {
  color: var(--tm-green);
  border-bottom-color: var(--tm-green);
}

.bc_wrap .nav-tabs:not(.g-form-control .nav-tabs)>li.active>a,
.bc_wrap .nav-tabs:not(.g-form-control .nav-tabs)>li>a.active {
  color: var(--tm-green);
  border-bottom-color: var(--tm-green);
  background: transparent;
}

/* ═══════════════════════════════════════════════════════════════
   29. TABLE STYLES
═══════════════════════════════════════════════════════════════ */
.bc_wrap .table {
  font-family: var(--tm-font);
  font-size: 14px;
  border-collapse: separate;
  border-spacing: 0;
}

.bc_wrap .table thead th {
  background: var(--tm-navy);
  color: #fff;
  font-weight: 600;
  padding: 12px 16px;
  border: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.bc_wrap .table tbody tr {
  transition: background var(--tm-ease);
}

.bc_wrap .table tbody tr:hover {
  background: var(--tm-gray-100);
}

.bc_wrap .table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--tm-gray-200);
  vertical-align: middle;
}

.bc_wrap .table-striped tbody tr:nth-of-type(odd) {
  background: var(--tm-gray-100);
}

/* ═══════════════════════════════════════════════════════════════
   30. UTILITY CLASSES
═══════════════════════════════════════════════════════════════ */
.tm-divider {
  border: none;
  border-top: 1px solid var(--tm-gray-200);
  margin: 24px 0;
}

.tm-card {
  background: var(--tm-white);
  border-radius: var(--tm-radius-lg);
  border: 1px solid var(--tm-gray-200);
  padding: 0;
  box-shadow: var(--tm-shadow-sm);
}

.tm-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--tm-green-light);
  color: var(--tm-green);
  border-radius: var(--tm-radius-full);
  font-size: 12px;
  font-weight: 600;
}

.tm-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--tm-radius);
  background: var(--tm-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tm-green);
  font-size: 20px;
  flex-shrink: 0;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Cookie agreement */
.booking_cookie_agreement {
  background: var(--tm-navy);
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  gap: 16px;
  align-items: center;
  font-family: var(--tm-font);
  z-index: 9999;
}

.booking_cookie_agreement .save-cookie {
  background: var(--tm-green);
  color: #fff;
  border: none;
  border-radius: var(--tm-radius);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--tm-font);
}

.booking_cookie_agreement .save-cookie:hover {
  background: var(--tm-green-dark);
}

/* Video background */
.background-video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.background-video-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   31. CONTACT / ENQUIRY FORMS
═══════════════════════════════════════════════════════════════ */
.bc-contact-block-form {
  background: var(--tm-white);
  border-radius: var(--tm-radius-lg);
  border: 1px solid var(--tm-gray-200);
  padding: 28px;
  box-shadow: var(--tm-shadow-sm);
  font-family: var(--tm-font);
}

.bc-contact-block-form .btn-submit {
  width: 100%;
  height: 46px;
  font-size: 15px;
  justify-content: center;
}

.bc-contact-block-form .loading {
  opacity: .6;
  pointer-events: none;
}

.bc-contact-block-form .form-mess {
  margin-top: 12px;
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════
   32. ADMIN BAR
═══════════════════════════════════════════════════════════════ */
.bc-admin-bar {
  background: var(--tm-navy);
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  padding: 6px 0;
  font-family: var(--tm-font);
  z-index: 9999;
  position: sticky;
  top: 0;
}

.bc-admin-bar a {
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-weight: 500;
}

.bc-admin-bar a:hover {
  color: var(--tm-orange);
}

/* ═══════════════════════════════════════════════════════════════
   33. OWL CAROUSEL OVERRIDES
═══════════════════════════════════════════════════════════════ */
.owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tm-white) !important;
  border: 1.5px solid var(--tm-gray-300) !important;
  box-shadow: var(--tm-shadow-sm);
  color: var(--tm-text) !important;
  font-size: 16px !important;
  transition: all var(--tm-ease);
}

.owl-carousel .owl-nav button:hover {
  background: var(--tm-green) !important;
  border-color: var(--tm-green) !important;
  color: #fff !important;
}

.owl-carousel .owl-dots .owl-dot span {
  background: var(--tm-gray-300);
  transition: all var(--tm-ease);
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--tm-green);
}

/* ═══════════════════════════════════════════════════════════════
   34. DATERANGEPICKER OVERRIDES
═══════════════════════════════════════════════════════════════ */
.daterangepicker {
  border-radius: var(--tm-radius-lg) !important;
  border: 1px solid var(--tm-gray-300) !important;
  box-shadow: var(--tm-shadow-xl) !important;
  font-family: var(--tm-font) !important;
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background: var(--tm-green) !important;
  border-radius: var(--tm-radius-sm) !important;
}

.daterangepicker td.in-range {
  background: var(--tm-green-light) !important;
}

.daterangepicker .applyBtn {
  background: var(--tm-green) !important;
  border-color: var(--tm-green) !important;
  border-radius: var(--tm-radius) !important;
}

.daterangepicker .applyBtn:hover {
  background: var(--tm-green-dark) !important;
}

/* ═══════════════════════════════════════════════════════════════
   35. PAGE TEMPLATE CONTENT
═══════════════════════════════════════════════════════════════ */
.page-template-content {
  font-family: var(--tm-font);
}

/* ─────────────  RESPONSIVE  ───────────── */

/* ═══════════════════════════════════════════════════════════════
   36. TABLET (≤1023px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* Hero title */
  .bc_wrap .page-template-content .bc-form-search-all {
    padding: 90px 0 48px;
  }

  .bc_wrap .page-template-content .bc-form-search-all .text-heading {
    font-size: 32px;
  }

  /* Search form fields: 2-col grid */
  .bc_wrap .bc_form:not(.flight-search-form) .g-field-search {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .bc_wrap .bc_form:not(.flight-search-form) .g-field-search>.row {
    flex-wrap: wrap;
    min-height: auto;
  }

  .bc_wrap .bc_form:not(.flight-search-form) .g-field-search>.row>[class*="col-"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    border-right: none;
    border-bottom: 1px solid var(--tm-gray-200);
  }

  .bc_wrap .bc_form:not(.flight-search-form) .g-field-search>.row>[class*="col-"]:nth-child(odd) {
    border-right: 1px solid var(--tm-gray-200);
  }

  .bc_wrap .bc_form:not(.flight-search-form) .form-group {
    border-bottom: none;
  }

  .bc_wrap .bc_form:not(.flight-search-form) .border-right {
    border-right: none !important;
  }

  /* Submit button full width */
  .bc-form-search-all .bc_form:not(.flight-search-form) .g-button-submit {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .bc-form-search-all .bc_form:not(.flight-search-form) .g-button-submit button {
    width: 100%;
    min-height: 54px;
    border-radius: 0 0 var(--tm-radius-lg) var(--tm-radius-lg);
    font-size: 15px;
  }

  /* Standalone form */
  .bc_wrap .bc_form_search .bc_form:not(.flight-search-form) .g-button-submit {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
  }

  .bc_wrap .bc_form_search .bc_form:not(.flight-search-form) .g-button-submit button {
    width: 100%;
    height: 48px;
    border-radius: 25px;
  }

  /* Map listing: stack */
  .bc-map-listing {
    grid-template-columns: 1fr;
    height: auto;
  }

  .bc-map-listing .map-panel {
    height: 40vh;
  }

  /* Amenities: 1 col */
  .bc_wrap .g-all-attribute {
    grid-template-columns: 1fr;
  }

  /* Booking sidebar: normal flow */
  .bc-booking-sidebar {
    position: static;
  }

  .bc-order-summary {
    position: static;
  }
}

/* ═══════════════════════════════════════════════════════════════
   37. MOBILE (≤767px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }

  /* Hero */
  .bc_wrap .page-template-content .bc-form-search-all {
    padding: 80px 0 28px;
  }

  .bc_wrap .page-template-content .bc-form-search-all .text-heading {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .bc_wrap .page-template-content .bc-form-search-all .sub-heading {
    font-size: 13px;
    margin-bottom: 18px;
  }

  /* Tabs: horizontal scroll */
  .bc_wrap .page-template-content .bc-form-search-all .g-form-control {
    margin: 0;
  }

  .bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    gap: 6px;
    margin: 0 auto 10px;
  }

  .bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs li a {
    padding: 7px 16px;
    font-size: 12px;
    border-radius: var(--tm-radius-xl);
    gap: 5px;
  }

  .bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs li a i {
    font-size: 13px;
  }

  .bc_wrap .page-template-content .bc-form-search-all .g-form-control .tab-content {
    border-radius: 14px;
  }

  /* Form fields: 1 col */
  .bc_wrap .bc_form:not(.flight-search-form) .g-field-search>.row {
    flex-direction: column;
  }

  .bc_wrap .bc_form:not(.flight-search-form) .g-field-search>.row>[class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid var(--tm-gray-200);
  }

  .bc_wrap .bc_form:not(.flight-search-form) .g-field-search>.row>[class*="col-"]:last-child {
    border-bottom: none;
  }

  .bc_wrap .bc_form:not(.flight-search-form) .field-icon {
    font-size: 18px;
    left: 14px;
  }

  .bc_wrap .bc_form:not(.flight-search-form) .form-content {
    padding: 12px 14px 12px 46px;
  }

  .bc_wrap .bc_form:not(.flight-search-form) .form-content label {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .bc_wrap .bc_form:not(.flight-search-form) .form-content .form-control {
    font-size: 14px;
  }

  .bc_wrap .bc_form:not(.flight-search-form) .form-content .render,
  .bc_wrap .bc_form:not(.flight-search-form) .form-content .check-in-render,
  .bc_wrap .bc_form:not(.flight-search-form) .form-content .check-out-render,
  .bc_wrap .bc_form:not(.flight-search-form) .form-content .wrapper-more .render {
    font-size: 14px;
  }

  /* Service banner hero titles */
  .bc_wrap .page-template-content .bc-form-search-hotel,
  .bc_wrap .page-template-content .bc-form-search-tour,
  .bc_wrap .page-template-content .bc-form-search-space,
  .bc_wrap .page-template-content .bc-form-search-car,
  .bc_wrap .page-template-content .bc-form-search-event,
  .bc_wrap .page-template-content .bc-form-search-boat {
    padding: 70px 0 40px;
  }

  .bc_wrap .page-template-content .bc-form-search-hotel .g-form-control,
  .bc_wrap .page-template-content .bc-form-search-tour .g-form-control,
  .bc_wrap .page-template-content .bc-form-search-space .g-form-control,
  .bc_wrap .page-template-content .bc-form-search-car .g-form-control,
  .bc_wrap .page-template-content .bc-form-search-event .g-form-control,
  .bc_wrap .page-template-content .bc-form-search-boat .g-form-control {
    margin-top: 20px;
  }

  /* Listing cards image height */
  .bc-list-item .figure img {
    height: 180px;
  }

  /* Section heading */
  .bc_wrap .bc-section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .bc_wrap .bc-section-heading .section-title {
    font-size: 20px;
  }

  /* Detail title */
  .bc_wrap .bc_detail_hotel .title-detail,
  .bc_wrap .bc_detail_tour .title-detail {
    font-size: 22px;
  }

  /* Checkout form */
  .form-section {
    padding: 18px;
  }

  .form-actions {
    justify-content: stretch;
  }

  .form-actions .btn {
    flex: 1;
    justify-content: center;
  }

  /* Review form */
  .review-form .review-items .rates .fa {
    font-size: 26px;
  }

  /* Pagination */
  .bc_wrap .pagination .page-item .page-link {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  /* Notifications dropdown full-width */
  .dropdown-notifications .dropdown-menu {
    min-width: 100vw;
    right: -16px !important;
    left: auto;
  }

  /* Content padding */
  .bc_content {
    padding: 24px 0;
  }

  /* Table: horizontal scroll */
  .bc_wrap .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ═══════════════════════════════════════════════════════════════
   38. SMALL MOBILE (≤480px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .bc_wrap .page-template-content .bc-form-search-all {
    padding: 70px 0 20px;
  }

  .bc_wrap .page-template-content .bc-form-search-all .text-heading {
    font-size: 20px;
  }

  .bc_wrap .page-template-content .bc-form-search-all .g-form-control .nav-tabs li a {
    padding: 6px 12px;
    font-size: 11px;
  }

  .bc_wrap .bc_form:not(.flight-search-form) .form-content {
    padding: 10px 12px 10px 42px;
  }

  .bc_wrap .bc_form:not(.flight-search-form) .field-icon {
    font-size: 16px;
    left: 12px;
  }

  .bc-booking-sidebar {
    padding: 18px;
  }

  .tm-card {
    padding: 0;
  }

  .bc-contact-block-form {
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   39. RTL OVERRIDES
═══════════════════════════════════════════════════════════════ */
.is-rtl body {
  direction: rtl;
  text-align: right;
}

.is-rtl .bc_wrap .bc_form:not(.flight-search-form) .field-icon {
  left: auto;
  right: 18px;
}

.is-rtl .bc_wrap .bc_form:not(.flight-search-form) .form-content {
  padding: 14px 52px 14px 16px;
}

.is-rtl .bc_wrap .bc_form:not(.flight-search-form) .dropdown-toggle::after {
  right: auto;
  left: 14px;
}

.is-rtl .bc_wrap .bc_form:not(.flight-search-form) .g-button-submit {
  margin-left: 0;
  margin-right: auto;
}

.is-rtl .bc-form-search-all .bc_form:not(.flight-search-form) .g-button-submit button {
  border-radius: var(--tm-radius-lg) 0 0 var(--tm-radius-lg);
}

.is-rtl .bc_wrap .pagination {
  direction: rtl;
}

.is-rtl .bc-user-nav li a {
  flex-direction: row-reverse;
}

.is-rtl .bc-review-score-box {
  direction: rtl;
}

.is-rtl .bc_breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: '\\';
}

/* ═══════════════════════════════════════════════════════════════
   40. PRINT
═══════════════════════════════════════════════════════════════ */
@media print {

  .bc_header,
  .bc_footer,
  .bc-sidebar,
  .bc-booking-sidebar,
  .bc-menu-mobile,
  .bc-admin-bar {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .bc-list-item {
    break-inside: avoid;
  }
}

/* ═══════════════════════════════════════════════════════════════
   41. GENERIC PAGE HERO  (.bc-page-hero)
   Used on static pages, location pages, blog, etc.
═══════════════════════════════════════════════════════════════ */
.bc-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--tm-navy);
  padding: 80px 0 56px;
}

.bc-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, .55) 0%, rgba(15, 23, 42, .7) 100%);
  pointer-events: none;
}

.bc-page-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.bc-page-hero__title {
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
  font-family: var(--tm-font);
}

.bc-page-hero__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, .8);
  margin: 0 0 20px;
  font-family: var(--tm-font);
}

.bc-page-hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Bravo-style breadcrumb hero (Booking module) ── */
.bravo-breadcrumb {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  padding: 60px 0;
  overflow: hidden;
}

.bravo-breadcrumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .55);
}

.bravo-breadcrumb-inner {
  position: relative;
  z-index: 2;
}

.bravo-breadcrumb-inner .breadcrumb-title {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  font-family: var(--tm-font);
}

.bravo-breadcrumb-inner .breadcrumb-nav {
  display: flex;
  gap: 8px;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.bravo-breadcrumb-inner .breadcrumb-nav .list-inline-item {
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
}

.bravo-breadcrumb-inner .breadcrumb-nav .list-inline-item a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transition: color var(--tm-ease);
}

.bravo-breadcrumb-inner .breadcrumb-nav .list-inline-item a:hover {
  color: var(--tm-orange);
}

.bravo-breadcrumb-inner .breadcrumb-nav .list-inline-item.active {
  color: #fff;
  font-weight: 600;
}

.bravo-breadcrumb-inner .breadcrumb-nav .list-inline-item+.list-inline-item::before {
  content: '/';
  margin-right: 8px;
  color: rgba(255, 255, 255, .4);
}

/* ── Generic page breadcrumb bar ── */
.bc-page-breadcrumb {
  background: var(--tm-gray-100);
  border-bottom: 1px solid var(--tm-gray-200);
  padding: 10px 0;
}

.bc-page-breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
  font-size: 13px;
  color: var(--tm-muted);
}

/* ═══════════════════════════════════════════════════════════════
   42. PADDING CONTENT / PAGE LAYOUT HELPERS
═══════════════════════════════════════════════════════════════ */
.padding-content {
  padding: 40px 0;
}

.bc-page-layout {
  font-family: var(--tm-font);
}

.bc-page-body {
  padding: 32px 0;
}

.bc-page-content {
  max-width: 800px;
}

.bc-page-main {
  flex: 1 1 0;
  min-width: 0;
}

/* ── Table of contents sidebar ── */
.bc-page-toc-sidebar {
  width: 260px;
  flex-shrink: 0;
}

.bc-toc-sticky-wrap {
  position: sticky;
  top: 90px;
}

.bc-sidebar-toc {
  background: var(--tm-white);
  border: 1px solid var(--tm-gray-200);
  border-radius: var(--tm-radius);
  padding: 18px;
  font-size: 13px;
}

.bc-sidebar-toc .toc-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--tm-gray-600);
  margin-bottom: 12px;
}

.bc-sidebar-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bc-sidebar-toc ul li {
  margin-bottom: 6px;
}

.bc-sidebar-toc ul li a {
  color: var(--tm-text);
  font-size: 13px;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  line-height: 1.4;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: all var(--tm-ease);
}

.bc-sidebar-toc ul li a:hover,
.bc-sidebar-toc ul li a.active {
  color: var(--tm-green);
  border-left-color: var(--tm-green);
}

/* ═══════════════════════════════════════════════════════════════
   43. SECTION HEADINGS (heading-section, bc-hr etc.)
═══════════════════════════════════════════════════════════════ */

/* ── Global section wrapper spacing ── */
.bc-section {
  padding: 70px 0;
}

.bc-section--sm {
  padding: 48px 0;
}

.bc-section--lg {
  padding: 90px 0;
}

.bc-section--alt {
  background: #f8fafc;
}

/* ── Eyebrow / super-label above a heading ── */
.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tm-green);
  margin-bottom: 10px;
}

/* ── Section heading block ── */
.heading-section {
  margin-bottom: 48px;
  text-align: center;
}

.heading-section.text-left {
  text-align: left;
}

/* Super-heading - large, bold, navy */
.heading-section h2,
.heading-section .title {
  font-size: 22px;
  font-weight: 500;
  color: var(--tm-navy);
  margin: 0 0 14px;
  line-height: 1.2;
  font-family: var(--tm-font);
  letter-spacing: -.4px;
}

/* Subheading - lighter, muted, readable */
.heading-section p,
.heading-section .sub-title {
  font-size: 16px;
  color: var(--tm-muted);
  margin: 0 auto;
  max-width: 580px;
  line-height: 1.7;
}

.heading-section.text-left p,
.heading-section.text-left .sub-title {
  margin: 0;
}

/* ── Thin accent underline beneath heading ── */
.heading-section h2::after,
.heading-section .title::after,
.heading-section--underline h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--tm-green);
  border-radius: 2px;
  margin: 12px auto 0;
}

.heading-section.text-left h2::after,
.heading-section.text-left .title::after {
  margin-left: 0;
}

/* ── bc-list-locations wrapper heading ── */
.bc-list-locations .title {
  font-size: 22px;
  font-weight: 500;
  color: var(--tm-navy);
  margin-bottom: 10px;
  letter-spacing: -.3px;
}

.bc-list-locations .sub-title {
  font-size: 16px;
  color: var(--tm-muted);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── bc-featured-item / bc-how-it-works / bc-faq headings ── */
.bc-featured-item .row>.container>.title,
.bc-how-it-works .title,
.bc-faq-lists .title.text-center {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -.3px;
}

.bc-hr {
  border: none;
  border-top: 1px solid var(--tm-gray-200);
  margin: 40px 0;
}

.bc-hr--green {
  border-top: 2px solid var(--tm-green);
}

/* ── Responsive heading sizes ── */
@media (max-width: 991px) {

  .heading-section h2,
  .heading-section .title {
    font-size: 30px;
  }

  .bc-list-locations .title {
    font-size: 30px;
  }

  .bc-section {
    padding: 52px 0;
  }
}

@media (max-width: 767px) {
  .heading-section {
    margin-bottom: 32px;
  }

  .heading-section h2,
  .heading-section .title {
    font-size: 24px;
  }

  .bc-list-locations .title {
    font-size: 24px;
  }

  .bc-section {
    padding: 38px 0;
  }

  .heading-section p,
  .heading-section .sub-title {
    font-size: 15px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   44. bc-meta  (service meta rows)
═══════════════════════════════════════════════════════════════ */
.bc-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--tm-gray-100);
}

.bc-meta-item:last-child {
  border-bottom: none;
}

.bc-meta-label {
  font-weight: 600;
  color: var(--tm-gray-700);
  min-width: 120px;
  flex-shrink: 0;
}

.bc-meta-value {
  color: var(--tm-text);
}

/* ═══════════════════════════════════════════════════════════════
   45. bc-checkbox  (custom checkbox)
═══════════════════════════════════════════════════════════════ */
.bc-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--tm-text);
  user-select: none;
}

.bc-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--tm-green);
  cursor: pointer;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   46. bc-featured-box  (home feature boxes)
═══════════════════════════════════════════════════════════════ */
.bc-featured-box {
  text-align: center;
  padding: 30px 24px;
  background: var(--tm-white);
  border-radius: var(--tm-radius-lg);
  border: 1px solid var(--tm-gray-200);
  box-shadow: var(--tm-shadow-sm);
  transition: all var(--tm-ease-med);
}

.bc-featured-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--tm-shadow-lg);
  border-color: var(--tm-green);
}

.bc-featured-box .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--tm-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: var(--tm-green);
}

.bc-featured-box .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 8px;
}

.bc-featured-box p {
  font-size: 13px;
  color: var(--tm-muted);
  margin: 0;
}

/* ─── Car feature box ─── */
.bc-car-term-featured-box {
  padding: 20px;
  border-radius: var(--tm-radius);
  border: 1px solid var(--tm-gray-200);
  background: var(--tm-white);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
}

.bc-car-term-featured-box .icon {
  color: var(--tm-green);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bc-car-term-featured-box .title {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--tm-navy);
}

.bc-car-term-featured-box p {
  margin: 0;
  color: var(--tm-muted);
  font-size: 13px;
}

/* ═══════════════════════════════════════════════════════════════
   47. bc-share-buttons
═══════════════════════════════════════════════════════════════ */
.bc-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bc-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--tm-radius-full);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--tm-ease);
  border: 1.5px solid var(--tm-gray-300);
  color: var(--tm-text);
  background: var(--tm-white);
  cursor: pointer;
}

.bc-share-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--tm-shadow-sm);
}

.bc-share-btn--facebook {
  border-color: #1877f2;
  color: #1877f2;
}

.bc-share-btn--facebook:hover {
  background: #1877f2;
  color: #fff;
}

.bc-share-btn--twitter {
  border-color: #1da1f2;
  color: #1da1f2;
}

.bc-share-btn--twitter:hover {
  background: #1da1f2;
  color: #fff;
}

.bc-share-btn--whatsapp {
  border-color: #25d366;
  color: #25d366;
}

.bc-share-btn--whatsapp:hover {
  background: #25d366;
  color: #fff;
}

.bc-share-btn--linkedin {
  border-color: #0a66c2;
  color: #0a66c2;
}

.bc-share-btn--linkedin:hover {
  background: #0a66c2;
  color: #fff;
}

.bc-share-btn--copy {
  border-color: var(--tm-gray-400);
}

.bc-share-btn--copy:hover {
  background: var(--tm-gray-100);
}

/* ── Sidebar variants ── */
.bc-sidebar-card {
  background: var(--tm-white);
  border: 1px solid var(--tm-gray-200);
  border-radius: var(--tm-radius);
  padding: 18px;
  margin-bottom: 20px;
  box-shadow: var(--tm-shadow-sm);
}

.bc-sidebar-card .sidebar-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .4px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tm-green);
}

.bc-sidebar-meta {
  margin-bottom: 20px;
}

.bc-sidebar-meta .meta-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--tm-muted);
  margin-bottom: 8px;
}

.bc-sidebar-meta .meta-row i {
  color: var(--tm-green);
  width: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.bc-sidebar-share {
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   48. bc-load-more
═══════════════════════════════════════════════════════════════ */
.bc-load-more-wrap {
  text-align: center;
  padding: 24px 0;
}

.bc-load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 36px;
  background: var(--tm-white);
  border: 2px solid var(--tm-green);
  color: var(--tm-green);
  border-radius: var(--tm-radius-full);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--tm-font);
  transition: all var(--tm-ease);
}

.bc-load-more-btn:hover {
  background: var(--tm-green);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(3, 138, 82, .25);
}

.bc-load-more-count {
  display: block;
  font-size: 13px;
  color: var(--tm-muted);
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   49. bc-related-carousel
═══════════════════════════════════════════════════════════════ */
.bc-related-carousel {
  position: relative;
  overflow: hidden;
}

.bc-related-track {
  display: flex;
  gap: 20px;
  transition: transform .3s ease;
}

.bc-related-slide {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}

.bc-related-nav__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tm-white);
  border: 1.5px solid var(--tm-gray-300);
  box-shadow: var(--tm-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tm-ease);
  font-size: 16px;
  color: var(--tm-text);
  z-index: 5;
}

.bc-related-nav__btn:hover {
  background: var(--tm-green);
  color: #fff;
  border-color: var(--tm-green);
}

.bc-related-nav__btn--prev {
  left: -20px;
}

.bc-related-nav__btn--next {
  right: -20px;
}

/* ═══════════════════════════════════════════════════════════════
   50. bc-video-popup
═══════════════════════════════════════════════════════════════ */
.bc-video-popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.bc-video-popup .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, .9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--tm-green);
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.bc-video-popup:hover .play-btn {
  background: var(--tm-green);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.bc_embed_video {
  border-radius: var(--tm-radius-lg);
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   51. HOTEL DETAIL SECTIONS
═══════════════════════════════════════════════════════════════ */

/* - Main gallery banner - */
.bc_banner {
  position: relative;
  overflow: hidden;
  background: var(--tm-gray-200);
  cursor: pointer;
}

.bc_banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.bc_gallery {
  position: relative;
}

.bc_gallery .count-gallery {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--tm-radius-full);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background var(--tm-ease);
}

.bc_gallery .count-gallery:hover {
  background: rgba(3, 138, 82, .8);
}

/* - Section anchors - */
.g-header,
.g-overview,
.g-price,
.g-location,
.g-rules,
.g-surrounding,
.g-attributes {
  padding: 28px 0 20px;
  border-bottom: 1px solid var(--tm-gray-200);
  scroll-margin-top: 90px;
}

.g-header:last-child,
.g-overview:last-child,
.g-price:last-child,
.g-location:last-child,
.g-rules:last-child,
.g-surrounding:last-child,
.g-attributes:last-child {
  border-bottom: none;
}

.g-header .heading,
.g-overview .heading,
.g-price .heading,
.g-location .heading,
.g-rules .heading,
.g-surrounding .heading,
.g-attributes .heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--tm-font);
}

.g-header .heading i,
.g-overview .heading i,
.g-price .heading i,
.g-location .heading i,
.g-rules .heading i,
.g-surrounding .heading i,
.g-attributes .heading i {
  color: var(--tm-green);
  font-size: 20px;
}

/* Hotel info card (star + rating summary) */
.hotel-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.hotel-info .address {
  font-size: 14px;
  color: var(--tm-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hotel-info .address i {
  color: var(--tm-green);
}

.hotel-info .star-rate {
  display: flex;
  gap: 2px;
  color: var(--tm-orange);
  font-size: 14px;
}

/* Head-rating (review badge in detail header) */
.head-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.head-rating .review-score {
  width: 42px;
  height: 42px;
  background: var(--tm-green);
  color: #fff;
  border-radius: var(--tm-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
}

/* - Room listing - */
.hotel_list_rooms {
  margin-top: 20px;
}

.hotel_rooms_form {
  font-family: var(--tm-font);
}

.hotel_room_book_status {
  font-size: 13px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--tm-radius-full);
  display: inline-block;
}

.hotel_room_book_status.available {
  background: var(--tm-green-light);
  color: var(--tm-green);
}

.hotel_room_book_status.sold-out {
  background: #fee2e2;
  color: #dc2626;
}

.room-item {
  border: 1.5px solid var(--tm-gray-200);
  border-radius: var(--tm-radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--tm-white);
  transition: border-color var(--tm-ease), box-shadow var(--tm-ease);
}

.room-item:hover {
  border-color: var(--tm-green);
  box-shadow: var(--tm-shadow);
}

.room-item .head {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 0;
}

.room-item .image {
  overflow: hidden;
  height: 140px;
}

.room-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.room-item:hover .image img {
  transform: scale(1.05);
}

.room-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 8px;
  padding: 18px 18px 0;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--tm-muted);
  padding: 8px 18px 14px;
}

.room-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.room-meta i {
  color: var(--tm-green);
}

.room-attribute-item {
  font-size: 13px;
  color: var(--tm-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.room-attribute-item i {
  color: var(--tm-green);
  width: 14px;
}

.total-room-price {
  font-size: 18px;
  font-weight: 500;
  color: var(--tm-green);
}

.col-price {
  text-align: right;
  padding-right: 18px;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.price-wrapper .unit {
  font-size: 12px;
  color: var(--tm-muted);
}

/* - Sale / discount badge - */
.box_sale,
.onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--tm-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--tm-radius-sm);
  text-transform: uppercase;
  letter-spacing: .3px;
  z-index: 5;
}

.tour-sale-box {
  background: var(--tm-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--tm-radius-sm);
  display: inline-block;
}

.sale_small {
  font-size: 10px;
}

/* - Extra items (booking add-ons) - */
.extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--tm-gray-100);
  font-size: 14px;
}

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

.extra-item .label {
  font-weight: 500;
  color: var(--tm-text);
  flex: 1;
}

.extra-price-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.extra-price-wrap .price {
  font-weight: 700;
  color: var(--tm-green);
}

/* - Hotel sticky booking form - */
.bc_single_book_wrap {
  position: sticky;
  top: 84px;
  z-index: 100;
}

.bc_single_book {
  background: var(--tm-white);
  border: 1px solid var(--tm-gray-200);
  border-radius: var(--tm-radius-lg);
  box-shadow: var(--tm-shadow-lg);
  overflow: hidden;
}

.bc_single_book .g-price {
  padding: 20px;
  border-bottom: 1px solid var(--tm-gray-200);
}

.bc_single_book .g-price .price {
  font-size: 26px;
  font-weight: 500;
  color: var(--tm-green);
}

.bc_single_book .g-price .unit {
  font-size: 13px;
  color: var(--tm-muted);
  font-weight: 400;
}

.bc_single_book .control-book {
  padding: 16px 20px;
}

.bc_single_book .control-book .btn-primary {
  width: 100%;
  justify-content: center;
  height: 48px;
  font-size: 15px;
}

/* - Mobile booking button (below detail content) - */
.bc-button-book-mobile,
.bc-more-book-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--tm-white);
  border-top: 1px solid var(--tm-gray-200);
  padding: 12px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .10);
}

.bc-button-book-mobile .price-area {
  font-size: 20px;
  font-weight: 500;
  color: var(--tm-green);
}

.bc-button-book-mobile .btn-primary {
  flex: 1;
  justify-content: center;
  height: 46px;
}

/* - Attribute display grid - */
.attribute-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--tm-text);
  padding: 5px 0;
}

.attribute-item i {
  color: var(--tm-green);
  width: 18px;
  text-align: center;
}

.attribute-item.active {
  color: var(--tm-green);
}

.attribute-item.inactive {
  color: var(--tm-gray-400);
  text-decoration: line-through;
}

/* - Service review (hotel/tour) - */
.service-review {
  font-family: var(--tm-font);
}

.service-review .review-score-summary {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  padding: 24px;
  background: var(--tm-gray-100);
  border-radius: var(--tm-radius-lg);
}

.service-review .big-score {
  font-size: 52px;
  font-weight: 500;
  color: var(--tm-green);
  line-height: 1;
}

.service-review .score-label {
  font-size: 13px;
  color: var(--tm-muted);
  margin-top: 4px;
}

.service-review .score-bars {
  flex: 1;
}

.service-review .progress {
  height: 8px;
  border-radius: var(--tm-radius-full);
  background: var(--tm-gray-300);
  overflow: hidden;
  margin-bottom: 8px;
}

.service-review .progress .progress-bar {
  background: var(--tm-green);
  border-radius: var(--tm-radius-full);
  transition: width .6s ease;
}

.booking-item-rating-stars {
  display: flex;
  gap: 2px;
  font-size: 13px;
  color: var(--tm-gray-300);
}

.booking-item-rating-stars-active {
  color: var(--tm-orange);
}

/* Enquiry form items */
.enquiry-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--tm-gray-100);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.enquiry-item .label {
  color: var(--tm-muted);
}

.enquiry-item .value {
  font-weight: 600;
  color: var(--tm-text);
}

/* ═══════════════════════════════════════════════════════════════
   52. SEARCH LAYOUT  (tm-search-layout)
   Livewire-powered two-column search results + sidebar
═══════════════════════════════════════════════════════════════ */
.tm-search-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
}

.tm-search-layout__sidebar {
  position: sticky;
  top: 84px;
  scrollbar-width: thin;
  scrollbar-color: var(--tm-gray-300) transparent;
}

.tm-search-layout__sidebar::-webkit-scrollbar {
  width: 4px;
}

.tm-search-layout__sidebar::-webkit-scrollbar-thumb {
  background: var(--tm-gray-300);
  border-radius: 4px;
}

.tm-search-layout__content {
  min-width: 0;
}

/* ── Search topbar ── */
.tm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--tm-white);
  border: 1px solid var(--tm-gray-200);
  border-radius: var(--tm-radius);
  padding: 12px 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tm-topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tm-topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tm-topbar__view-toggle {
  display: flex;
  border: 1px solid var(--tm-gray-300);
  border-radius: var(--tm-radius-sm);
  overflow: hidden;
}

.tm-topbar__view-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tm-white);
  border: none;
  cursor: pointer;
  color: var(--tm-gray-500);
  font-size: 15px;
  transition: all var(--tm-ease);
}

.tm-topbar__view-btn:hover {
  background: var(--tm-gray-100);
  color: var(--tm-text);
}

.tm-topbar__view-btn.active {
  background: var(--tm-green);
  color: #fff;
}

.tm-topbar__count {
  font-size: 14px;
  color: var(--tm-muted);
}

.tm-topbar__count strong {
  color: var(--tm-text);
  font-weight: 700;
}

.tm-topbar__select-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.tm-topbar__loading-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid var(--tm-gray-300);
  border-top-color: var(--tm-green);
  border-radius: 50%;
  animation: tmSpin 0.6s linear infinite;
  flex-shrink: 0;
}
@keyframes tmSpin {
  to { transform: rotate(360deg); }
}

.tm-topbar__select-label {
  font-size: 13px;
  color: var(--tm-muted);
  white-space: nowrap;
}

.tm-topbar__select {
  font-family: var(--tm-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--tm-text);
  border: 1.5px solid var(--tm-gray-300);
  border-radius: var(--tm-radius-sm);
  padding: 6px 28px 6px 10px;
  background: var(--tm-white);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.tm-topbar__select:focus {
  border-color: var(--tm-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(3, 138, 82, .12);
}

/* ── Search grid ── */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  min-height: 300px;
  transition: opacity var(--tm-ease);
}

.tm-grid.is-loading {
  opacity: .55;
  pointer-events: none;
}

.ajax-search-result {
  position: relative;
}

/* ── Loading banner ── */
.tm-loading-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--tm-green);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tm-ease-med);
  border-radius: var(--tm-radius);
  gap: 10px;
  font-family: var(--tm-font);
  font-size: 14px;
  font-weight: 600;
}

.tm-loading-banner--active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Empty state ── */
.tm-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.tm-empty__icon {
  font-size: 48px;
  color: var(--tm-gray-400);
  margin-bottom: 16px;
}

.tm-empty__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 8px;
  font-family: var(--tm-font);
}

.tm-empty__text {
  font-size: 14px;
  color: var(--tm-muted);
  margin: 0;
}

/* ── Pagination bar ── */
.tm-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 0 10px;
}

.tm-pagination__info {
  font-size: 13px;
  color: var(--tm-muted);
}

/* ── Mobile filter button & overlay ── */
.tm-filter-mobile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  margin-bottom: 16px;
  background: var(--tm-white);
  border: 1.5px solid var(--tm-green);
  color: var(--tm-green);
  border-radius: var(--tm-radius-full);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--tm-font);
  transition: all var(--tm-ease);
}

.tm-filter-mobile-btn:hover {
  background: var(--tm-green);
  color: #fff;
}

.tm-filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}

.tm-filter-overlay.is-open {
  pointer-events: auto;
}

.tm-filter-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .4);
  opacity: 0;
  transition: opacity .3s ease;
  backdrop-filter: blur(2px);
}

.tm-filter-overlay.is-open .tm-filter-overlay__backdrop {
  opacity: 1;
}

.tm-filter-overlay__panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: min(340px, 90vw);
  background: var(--tm-white);
  box-shadow: var(--tm-shadow-xl);
  transform: translateX(-100%);
  transition: transform .3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.tm-filter-overlay.is-open .tm-filter-overlay__panel {
  transform: translateX(0);
}

.tm-filter-overlay__close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--tm-gray-200);
  position: sticky;
  top: 0;
  background: var(--tm-white);
  z-index: 1;
}

.tm-filter-overlay__close-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tm-navy);
  font-family: var(--tm-font);
}

.tm-filter-overlay__close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--tm-gray-200);
  background: var(--tm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--tm-gray-600);
  transition: all var(--tm-ease);
}

.tm-filter-overlay__close-btn:hover {
  background: var(--tm-gray-100);
  color: var(--tm-text);
}

/* ── bc-result-item (search map popup etc.) ── */
.bc-result-item {
  background: var(--tm-white);
  border-radius: var(--tm-radius);
  overflow: hidden;
  border: 1px solid var(--tm-gray-200);
  box-shadow: var(--tm-shadow-sm);
}

.bc-result-item .figure img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.bc-result-item .content {
  padding: 12px;
}

.bc-result-item .title {
  font-size: 14px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 5px;
}

.bc-result-item .price {
  font-size: 15px;
  font-weight: 500;
  color: var(--tm-green);
}

/* ═══════════════════════════════════════════════════════════════
   53. PAYMENT GATEWAYS ACCORDION
═══════════════════════════════════════════════════════════════ */
.gateways-table.accordion .card {
  border: 1.5px solid var(--tm-gray-200);
  border-radius: var(--tm-radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: none;
}

.gateways-table.accordion .card-header {
  background: var(--tm-gray-100);
  border-bottom: none;
  padding: 0;
}

.gateways-table.accordion .card-header label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--tm-text);
  margin: 0;
  transition: background var(--tm-ease);
  width: 100%;
  font-family: var(--tm-font);
}

.gateways-table.accordion .card-header label:hover {
  background: var(--tm-green-light);
}

.gateways-table.accordion .card-header input[type="radio"] {
  accent-color: var(--tm-green);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.gateways-table.accordion .card-header img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.gateways-table.accordion .card-body {
  padding: 16px 18px;
  background: var(--tm-white);
  border-top: 1px solid var(--tm-gray-200);
}

.gateway_name {
  font-size: 14px;
  font-weight: 600;
  color: var(--tm-green);
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   54. BOOKING SUCCESS / CONFIRMATION
═══════════════════════════════════════════════════════════════ */
.booking-success-notice {
  margin-bottom: 28px;
  padding: 24px;
  background: var(--tm-green-light);
  border-radius: var(--tm-radius-lg);
  border: 1.5px solid var(--tm-green);
}

.notice-success {
  flex: 1;
}

.notice-success .line1 {
  font-size: 18px;
  font-weight: 700;
  color: var(--tm-green);
  margin-bottom: 6px;
}

.notice-success .line1 span {
  font-weight: 500;
}

.notice-success .line2 {
  font-size: 14px;
  color: var(--tm-gray-700);
  margin: 0;
}

.notice-success .line2 span {
  font-weight: 600;
  color: var(--tm-green);
}

.booking-info-detail {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--tm-white);
  border-radius: var(--tm-radius);
  border: 1px solid var(--tm-gray-200);
  overflow: hidden;
}

.booking-info-detail li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--tm-gray-100);
  color: var(--tm-text);
}

.booking-info-detail li:last-child {
  border-bottom: none;
}

.booking-info-detail li span {
  font-weight: 600;
  color: var(--tm-muted);
}

.booking-success-detail {
  margin-top: 24px;
}

/* ═══════════════════════════════════════════════════════════════
   55. BOOKING CARDS (booking history)
═══════════════════════════════════════════════════════════════ */
.booking-page {
  padding: 32px 0;
  font-family: var(--tm-font);
}

.booking-detail {
  font-family: var(--tm-font);
}

.booking-card {
  background: var(--tm-white);
  border: 1px solid var(--tm-gray-200);
  border-radius: var(--tm-radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--tm-shadow-sm);
  transition: box-shadow var(--tm-ease-med);
}

.booking-card:hover {
  box-shadow: var(--tm-shadow);
}

.booking-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: var(--tm-gray-100);
  border-bottom: 1px solid var(--tm-gray-200);
  flex-wrap: wrap;
}

.booking-card-body {
  padding: 18px 20px;
}

.booking-id {
  font-size: 13px;
  font-weight: 700;
  color: var(--tm-navy);
}

.booking-date {
  font-size: 12px;
  color: var(--tm-muted);
}

.booking-service {
  font-size: 15px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 6px;
}

.booking-amount {
  font-size: 18px;
  font-weight: 500;
  color: var(--tm-green);
}

.booking-history-type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--tm-muted);
  background: var(--tm-gray-200);
  border-radius: var(--tm-radius-full);
  padding: 3px 10px;
}

.booking-status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--tm-radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
}

.booking-status-badge.completed,
.booking-status-badge.paid {
  background: #dcfce7;
  color: #16a34a;
}

.booking-status-badge.confirmed {
  background: #dbeafe;
  color: #2563eb;
}

.booking-status-badge.processing,
.booking-status-badge.pending {
  background: #fef3c7;
  color: #d97706;
}

.booking-status-badge.cancelled {
  background: #fee2e2;
  color: #dc2626;
}

.booking-status-badge.unpaid {
  background: var(--tm-gray-200);
  color: var(--tm-gray-600);
}

/* ── Booking alert ── */
.booking-alert {
  padding: 14px 18px;
  border-radius: var(--tm-radius);
  font-size: 14px;
  margin-bottom: 16px;
  font-family: var(--tm-font);
}

.booking-alert.success {
  background: var(--tm-green-light);
  color: var(--tm-green);
  border: 1px solid var(--tm-green);
}

.booking-alert.danger {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fca5a5;
}

/* ── Booking review ── */
.booking-review {
  background: var(--tm-gray-100);
  border-radius: var(--tm-radius);
  padding: 16px;
  margin-top: 14px;
}

.booking-review-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--tm-navy);
}

.booking-review-content {
  font-size: 13px;
  color: var(--tm-text);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   56. BOOKING STEPS WIZARD
═══════════════════════════════════════════════════════════════ */
.booking-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  position: relative;
  padding: 0 16px;
}

.booking-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  height: 2px;
  background: var(--tm-gray-200);
  z-index: 0;
}

.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
}

.booking-step .step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--tm-gray-300);
  background: var(--tm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--tm-gray-400);
  transition: all .3s ease;
}

.booking-step .step-label {
  font-size: 12px;
  color: var(--tm-muted);
  font-weight: 500;
}

.booking-step.active .step-num {
  border-color: var(--tm-green);
  background: var(--tm-green);
  color: #fff;
}

.booking-step.active .step-label {
  color: var(--tm-green);
  font-weight: 700;
}

.booking-step.done .step-num {
  border-color: var(--tm-green);
  background: var(--tm-green-light);
  color: var(--tm-green);
}

.booking-step-panel {
  display: none;
}

.booking-step-panel.active {
  display: block;
}

/* ── Booking form ── */
.booking-form {
  background: var(--tm-white);
  border-radius: var(--tm-radius-lg);
  border: 1px solid var(--tm-gray-200);
  padding: 24px;
  box-shadow: var(--tm-shadow-sm);
}

.booking-form .form-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--tm-gray-200);
  font-family: var(--tm-font);
}

/* Required field marker */
.required {
  color: #dc2626;
  font-weight: 700;
}

.term-conditions-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--tm-text);
  cursor: pointer;
}

.term-conditions-checkbox a {
  color: var(--tm-green);
  font-weight: 600;
}

.alert-text {
  font-size: 14px;
  padding: 10px;
  border-radius: var(--tm-radius-sm);
}

.alert-text.danger {
  background: #fef2f2;
  color: #dc2626;
}

.alert-text.success {
  background: var(--tm-green-light);
  color: var(--tm-green);
}

/* ═══════════════════════════════════════════════════════════════
   57. NEWS / BLOG LISTING
═══════════════════════════════════════════════════════════════ */
.bc-list-news {
  font-family: var(--tm-font);
}

.bc-post-item {
  background: var(--tm-white);
  border-radius: var(--tm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--tm-gray-200);
  box-shadow: var(--tm-shadow-sm);
  transition: all var(--tm-ease-med);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bc-post-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--tm-shadow-lg);
}

.bc-post-item .figure {
  overflow: hidden;
  flex-shrink: 0;
}

.bc-post-item .figure img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s;
  display: block;
}

.bc-post-item:hover .figure img {
  transform: scale(1.04);
}

.bc-post-item .content {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bc-post-item .category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--tm-green);
  margin-bottom: 8px;
}

.bc-post-item .post-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tm-navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.bc-post-item .post-title a {
  color: inherit;
  text-decoration: none;
}

.bc-post-item .post-title a:hover {
  color: var(--tm-green);
}

.bc-post-item .excerpt {
  font-size: 13px;
  color: var(--tm-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.bc-post-item .meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--tm-muted);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--tm-gray-100);
}

.bc-post-item .meta i {
  color: var(--tm-green);
}

.bc-news {
  font-family: var(--tm-font);
}

/* ═══════════════════════════════════════════════════════════════
   58. LOCATION LISTING
═══════════════════════════════════════════════════════════════ */

/* Wrapper block */
.bc-list-locations {
  margin-top: 20px;
}

.bc-list-locations .title {
  font-size: 22px;
  font-weight: 700;
  color: var(--tm-navy);
  font-family: var(--tm-font);
  margin-bottom: 6px;
}

.bc-list-locations .sub-title {
  font-size: 14px;
  color: var(--tm-muted);
  margin-bottom: 24px;
}

/* Destination item card */
.destination-item {
  margin-bottom: 18px;
}

.destination-item .image {
  position: relative;
  height: 260px;
  border-radius: var(--tm-radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--tm-gray-200);
  cursor: pointer;
  transition: transform .4s;
}

.destination-item:hover .image {
  transform: scale(1.02);
}

.destination-item.no-image .image {
  background: var(--tm-gray-200);
}

/* Dark overlay */
.destination-item .effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15, 23, 42, .72) 100%);
  z-index: 1;
  transition: background .3s;
}

.destination-item:hover .effect {
  background: linear-gradient(180deg, transparent 10%, rgba(15, 23, 42, .82) 100%);
}

/* Text overlay */
.destination-item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 16px 18px;
}

.destination-item .content .title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: var(--tm-font);
  margin: 0 0 3px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}

.destination-item .content .desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  margin: 0;
}

/* Large first card */
.col-lg-8 .destination-item .image {
  height: 380px;
}

@media (max-width: 991px) {
  .col-lg-8 .destination-item .image {
    height: 280px;
  }
}

@media (max-width: 767px) {

  .destination-item .image,
  .col-lg-8 .destination-item .image {
    height: 200px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   59. FLIGHT PRICING
═══════════════════════════════════════════════════════════════ */
.bc-flight-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.bc-flight-price .amount {
  font-size: 22px;
  font-weight: 500;
  color: var(--tm-green);
}

.bc-flight-price .unit {
  font-size: 13px;
  color: var(--tm-muted);
}

/* ── Filter price range ── */
.bc-filter-price {
  padding: 8px 0;
}

.bc-filter-price .price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--tm-green);
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   60. bc-btn VARIANT SYSTEM
═══════════════════════════════════════════════════════════════ */
.bc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--tm-radius);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--tm-font);
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all var(--tm-ease);
  line-height: 1.4;
  white-space: nowrap;
}

.bc-btn--download {
  background: var(--tm-navy);
  color: #fff;
  border-color: var(--tm-navy);
}

.bc-btn--download:hover {
  background: #1e293b;
  color: #fff;
}

/* btn-search - inside search forms */
.btn-search {
  background: #f47c04;
  color: #fff !important;
  border: none;
  border-radius: var(--tm-radius);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--tm-font);
  transition: background var(--tm-ease);
}

.btn-search:hover {
  background: #038a52;
}

/* ═══════════════════════════════════════════════════════════════
   61. RESPONSIVE ADDITIONS
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  /* Search layout: single col */
  .tm-search-layout {
    grid-template-columns: 1fr;
    padding: 20px 0;
    gap: 0;
  }

  .tm-search-layout__sidebar {
    position: static;
    max-height: none;
  }

  /* Room item: stack */
  .room-item .head {
    grid-template-columns: 1fr;
  }

  .room-item .image {
    height: 180px;
  }

  .col-price {
    text-align: left;
    padding: 0 18px 16px;
  }

  /* Related carousel */
  .bc-related-slide {
    flex: 0 0 calc(50% - 10px);
  }

  /* Page hero */
  .bc-page-hero {
    padding: 60px 0 40px;
  }

  .bc-page-hero__title {
    font-size: 28px;
  }

  /* bc_single_book: not sticky */
  .bc_single_book_wrap {
    position: static;
  }

  /* Mobile booking bar visible */
  .bc-button-book-mobile {
    display: flex;
  }

  .bc_single_book_wrap {
    display: none;
  }
}

@media (max-width: 767px) {

  /* Topbar: stack */
  .tm-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tm-topbar__right {
    width: 100%;
    justify-content: space-between;
  }

  .tm-topbar__select-wrap {
    flex: 1;
  }

  .tm-topbar__select {
    width: 100%;
  }

  /* Grid: single col */
  .tm-grid {
    grid-template-columns: 1fr;
  }

  /* Booking steps: compact */
  .booking-steps::before {
    display: none;
  }

  .booking-step .step-label {
    font-size: 10px;
  }

  .booking-step .step-num {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  /* Room item */
  .room-item .head {
    grid-template-columns: 1fr;
  }

  /* Related carousel: single */
  .bc-related-slide {
    flex: 0 0 calc(100% - 0px);
  }

  /* Location grid: destination items */
  .col-lg-8 .destination-item .image {
    height: 220px;
  }

  /* Page hero */
  .bc-page-hero {
    padding: 50px 0 32px;
  }

  .bc-page-hero__title {
    font-size: 22px;
  }

  /* Bravo breadcrumb */
  .bravo-breadcrumb {
    padding: 40px 0;
  }

  .bravo-breadcrumb-inner .breadcrumb-title {
    font-size: 24px;
  }

  /* TM search layout filter */
  .tm-search-layout {
    padding: 16px 0;
  }

  /* Booking cards */
  .booking-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 480px) {

  /* Topbar view toggle: hide on tiny screens */
  .tm-topbar__view-toggle {
    display: none;
  }

  /* Location grid: mobile */
  .destination-item .image {
    height: 160px;
  }

  /* Booking steps: hide labels */
  .booking-step .step-label {
    display: none;
  }

  /* Share buttons: wrap */
  .bc-share-buttons {
    gap: 6px;
  }

  .bc-share-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   62. OFFER BLOCK  (.bc-offer)
   Template: themes/Base/Template/Views/frontend/blocks/offer-block/index.blade.php
   Structure: .bc-offer > .container > .row > col-lg-6/3 > .item >
              .featured-text, .featured-icon, h2.item-title, p.item-sub-title,
              a.btn.btn-default, .img-cover
═══════════════════════════════════════════════════════════════ */
.bc-offer {
  padding: 0 0 40px;
}

.bc-offer .row {
  margin-left: -8px;
  margin-right: -8px;
}

.bc-offer .row>[class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 16px;
}

/* Card */
.bc-offer .item {
  position: relative;
  border-radius: var(--tm-radius-lg);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 30px;
  background: var(--tm-gray-100);
  cursor: pointer;
  transition: box-shadow .3s;
}

.bc-offer .item:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

/* Large first card */
.bc-offer .col-lg-6 .item {
  min-height: 440px;
}

/* Background image cover */
.bc-offer .item .img-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform .45s ease;
}

.bc-offer .item:hover .img-cover {
  transform: scale(1.05);
}

/* Dark gradient overlay over image */
.bc-offer .item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .12) 0%, rgba(0, 0, 0, .62) 100%);
  z-index: 1;
  transition: background .3s;
}

.bc-offer .item:hover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .72) 100%);
}

/* All inner text above overlay */
.bc-offer .item .featured-text,
.bc-offer .item .featured-icon,
.bc-offer .item .item-title,
.bc-offer .item .item-sub-title,
.bc-offer .item .btn {
  position: relative;
  z-index: 2;
}

/* Featured label (e.g. "Hot Deals") */
.bc-offer .item .featured-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tm-orange);
  margin-bottom: 6px;
  font-family: var(--tm-font);
}

/* Icon */
.bc-offer .item .featured-icon {
  font-size: 28px;
  color: #fff;
  margin-bottom: 10px;
}

/* Heading */
.bc-offer .item h2.item-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-family: var(--tm-font);
  margin: 0 0 10px;
  line-height: 1.25;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .3);
}

/* Large first card: bigger title */
.bc-offer .col-lg-6 .item h2.item-title {
  font-size: 28px;
}

/* Description */
.bc-offer .item p.item-sub-title {
  font-size: 14px;
  color: rgba(255, 255, 255, .88);
  margin: 0 0 18px;
  line-height: 1.55;
}

/* CTA button */
.bc-offer .item .btn.btn-default {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, .85);
  border-radius: 28px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  color: #fff !important;
  background: transparent;
  text-decoration: none !important;
  transition: all .2s;
  font-family: var(--tm-font);
  width: fit-content;
}

.bc-offer .item .btn.btn-default:hover {
  background: #fff;
  color: var(--tm-navy) !important;
  border-color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .bc-offer .item {
    min-height: 280px;
    padding: 24px 22px;
  }

  .bc-offer .col-lg-6 .item {
    min-height: 320px;
  }

  .bc-offer .col-lg-6 .item h2.item-title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .bc-offer .item {
    min-height: 240px;
  }

  .bc-offer .item h2.item-title {
    font-size: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   63. FEATURED ITEMS  (.bc-featured-item)
   Template: themes/Base/Template/Views/frontend/blocks/list-featured-item/index.blade.php
   Structure: .bc-featured-item > .container > .row > col-md-4 > .featured-item >
              .image > img / .number-circle
              .content > h3.title + .desc
═══════════════════════════════════════════════════════════════ */
.bc-featured-item {
  padding: 70px 0;
  background: #f8fafc;
}

.bc-featured-item .featured-item {
  text-align: center;
  padding: 40px 28px 36px;
  background: #fff;
  border-radius: var(--tm-radius-lg);
  box-shadow: 0 2px 16px rgba(15, 23, 42, .07);
  margin-bottom: 28px;
  transition: box-shadow .3s, transform .3s;
  height: calc(100% - 28px);
}

.bc-featured-item .featured-item:hover {
  box-shadow: 0 8px 28px rgba(15, 23, 42, .13);
  transform: translateY(-4px);
}

/* Icon image */
.bc-featured-item .featured-item .image {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0faf5;
  border-radius: 50%;
}

.bc-featured-item .featured-item .image img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* Number circle (style2) */
.bc-featured-item .number-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tm-green);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--tm-font);
}

/* Title */
.bc-featured-item .featured-item .content .title {
  font-size: 17px;
  font-weight: 500;
  color: var(--tm-navy);
  font-family: var(--tm-font);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* Description */
.bc-featured-item .featured-item .content .desc {
  font-size: 14px;
  color: var(--tm-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .bc-featured-item {
    padding: 32px 0;
  }

  .bc-featured-item .featured-item {
    padding: 24px 18px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   64. HOW IT WORKS  (.bc-how-it-works)
   Template: themes/Base/Template/Views/frontend/blocks/how-it-work/index.blade.php
═══════════════════════════════════════════════════════════════ */
.bc-how-it-works {
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.bc-how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .6);
}

.bc-how-it-works .container {
  position: relative;
  z-index: 1;
}

.bc-how-it-works .title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  font-family: var(--tm-font);
  text-align: center;
  margin-bottom: 40px;
}

.bc-how-it-works .featured-item {
  text-align: center;
  padding: 24px 20px;
}

.bc-how-it-works .featured-item .image {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-how-it-works .featured-item .image img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.bc-how-it-works .number-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tm-orange);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.bc-how-it-works .featured-item .sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-family: var(--tm-font);
  margin: 0 0 8px;
}

.bc-how-it-works .featured-item .desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   65. FAQ SECTION  (.bc-faq-lists-root)
   Template: themes/Base/Template/Views/frontend/blocks/faq-list.blade.php
═══════════════════════════════════════════════════════════════ */
.bc-faq-lists-root {
  padding: 50px 0;
  background: #fff;
}

.bc-faq-lists .title.text-center {
  font-size: 28px;
  font-weight: 700;
  color: var(--tm-navy);
  font-family: var(--tm-font);
  margin-bottom: 32px;
}

/* Normalize collapse gaps */
.bc-faq-lists .row>[class*="col-"] {
  margin-bottom: 10px;
}

/* Accordion card */
.bc-faq-lists .faq-accordion {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .25s;
  height: 100%;
}

.bc-faq-lists .faq-accordion:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
}

/* Question row */
.bc-faq-lists .faq-question {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
  gap: 12px;
}

.bc-faq-lists .faq-question:hover {
  background: #f9fafb;
}

/* Title text */
.bc-faq-lists .faq-title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--tm-navy);
  font-family: var(--tm-font);
  line-height: 1.4;
}

/* Chevron icon */
.bc-faq-lists .faq-arrow {
  font-size: 12px;
  color: var(--tm-green);
  transition: transform .25s;
  flex-shrink: 0;
}

.bc-faq-lists .faq-question[aria-expanded="true"] .faq-arrow,
.bc-faq-lists .faq-accordion.active .faq-arrow {
  transform: rotate(180deg);
}

/* Answer panel */
.bc-faq-lists .faq-answer {
  padding: 0 20px 16px;
  border-top: 1px solid #f0f0f0;
}

.bc-faq-lists .faq-answer p {
  font-size: 14px;
  color: var(--tm-muted);
  line-height: 1.65;
  margin: 12px 0 0;
}

@media (max-width: 767px) {
  .bc-faq-lists-root {
    padding: 32px 0;
  }

  .bc-faq-lists .title.text-center {
    font-size: 22px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   66. CALL TO ACTION BLOCKS
   Template: .bc-call-to-action/.context with .title, .sub_title, .btn-more
═══════════════════════════════════════════════════════════════ */
.bc-call-to-action,
.bc-call-to-action .context {
  padding: 50px 0;
}

.bc-call-to-action .context {
  background: var(--tm-green);
  border-radius: var(--tm-radius-lg);
  padding: 40px 40px;
  display: flex;
  align-items: center;
}

.bc-call-to-action .context .title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-family: var(--tm-font);
  margin-bottom: 6px;
}

.bc-call-to-action .context .sub_title {
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  margin: 0;
}

.bc-call-to-action .btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 28px;
  background: #fff;
  color: var(--tm-green) !important;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--tm-font);
  text-decoration: none !important;
  transition: background .2s, box-shadow .2s;
  white-space: nowrap;
}

.bc-call-to-action .btn-more:hover {
  background: #f0f9f4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

@media (max-width: 767px) {
  .bc-call-to-action .context {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }

  .bc-call-to-action .btn-more {
    margin-top: 20px;
  }
}


/* ══════════════════════════════════════════════════════════════════════
   DATERANGEPICKER WIDGET
   Redesigns the daterangepicker library to match TripManga brand
   ══════════════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════════════════
   Global Detail Page Overrides
   Loaded on all detail pages (Car, Hotel, Tour, Space, Boat, Event, Flight)
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Hide breadcrumb on ALL detail pages ───────────────────────────────────── */
.bc_detail_car .blog-breadcrumb,
.bc_detail_hotel .blog-breadcrumb,
.bc_detail_tour .blog-breadcrumb,
.bc_detail_space .blog-breadcrumb,
.bc_detail_boat .blog-breadcrumb,
.bc_detail_event .blog-breadcrumb,
.bc_detail_flight .blog-breadcrumb {
  display: none !important;
}

/* ── Daterangepicker – Modern Redesign (matching availability calendar) ─────── */

/* Container */
body .daterangepicker {
  border-radius: 16px !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1) !important;
  padding: 20px 24px !important;
  font-family: inherit;
  margin-top: 8px !important;
  min-width: 320px;
}

body .daterangepicker::before,
body .daterangepicker::after {
  display: none !important;
}

/* Calendar panels */
body .daterangepicker .drp-calendar {
  max-width: none;
  padding: 0 !important;
}

body .daterangepicker .drp-calendar.left {
  padding-right: 20px !important;
}

body .daterangepicker .drp-calendar.right {
  padding-left: 20px !important;
  border-left: 1px solid #f3f4f6;
}

/* Month title row */
body .daterangepicker .calendar-table thead tr:first-child th {
  padding: 8px 0 16px !important;
  border-bottom: none !important;
  border-radius: 0 !important;
}

body .daterangepicker th.month {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #111827 !important;
  letter-spacing: 0 !important;
}

/* Navigation arrows – replace images with clean chevrons */
body .daterangepicker th.prev,
body .daterangepicker th.next {
  background: none !important;
  background-image: none !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  position: relative !important;
  transition: all .2s;
  cursor: pointer;
  vertical-align: middle;
}

body .daterangepicker th.prev:hover,
body .daterangepicker th.next:hover {
  background: #f3f4f6 !important;
}

body .daterangepicker th.prev span,
body .daterangepicker th.next span {
  display: none !important;
}

body .daterangepicker th.prev::after,
body .daterangepicker th.next::after {
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #374151;
  line-height: 1;
}

body .daterangepicker th.prev::after {
  content: '\f053';
}

body .daterangepicker th.next::after {
  content: '\f054';
}

/* Day-of-week headers */
body .daterangepicker .calendar-table thead tr:last-child th {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #9ca3af !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  padding: 8px 0 !important;
  border: none !important;
}

/* Day cells */
body .daterangepicker .calendar-table tbody td {
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #374151 !important;
  border-radius: 50% !important;
  border: none !important;
  padding: 0 !important;
  transition: background .15s, color .15s;
  text-align: center;
}

body .daterangepicker .calendar-table tbody td:hover {
  background: #f3f4f6 !important;
  color: #111827 !important;
}

/* Today */
body .daterangepicker .calendar-table tbody td.today {
  color: #038a52 !important;
  border: none !important;
  font-weight: 600 !important;
  position: relative;
}

body .daterangepicker .calendar-table tbody td.today:not(.active):not(.start-date):not(.end-date) {
  background: rgba(3, 138, 82, 0.1) !important;
}

/* Active / selected */
body .daterangepicker td.active,
body .daterangepicker td.active:hover {
  background-color: #038a52 !important;
  border-color: transparent !important;
  color: #fff !important;
  font-weight: 600 !important;
}

/* Start / end date */
body .daterangepicker td.start-date,
body .daterangepicker td.end-date {
  background-color: #038a52 !important;
  border-color: transparent !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

/* In-range */
body .daterangepicker td.in-range {
  background-color: rgba(3, 138, 82, 0.08) !important;
  color: #111827 !important;
  border-radius: 0 !important;
}

body .daterangepicker td.start-date {
  border-radius: 50% 0 0 50% !important;
}

body .daterangepicker td.end-date {
  border-radius: 0 50% 50% 0 !important;
}

body .daterangepicker td.start-date.end-date {
  border-radius: 50% !important;
}

/* Disabled / off days */
body .daterangepicker .calendar-table tbody td.disabled,
body .daterangepicker .calendar-table tbody td.off {
  color: #d1d5db !important;
  background: transparent !important;
  text-decoration: none !important;
  cursor: default;
}

body .daterangepicker .calendar-table tbody td.off:hover {
  background: transparent !important;
}

/* Buttons row */
body .daterangepicker .drp-buttons {
  border-top: 1px solid #f3f4f6 !important;
  padding: 12px 0 0 !important;
  margin-top: 12px;
}

body .daterangepicker .drp-buttons .btn {
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 8px 20px !important;
  border-radius: 10px !important;
  transition: all .2s;
}

body .daterangepicker .drp-buttons .applyBtn,
body .daterangepicker .drp-buttons .btn-primary {
  background: #038a52 !important;
  border-color: #038a52 !important;
  color: #fff !important;
}

body .daterangepicker .drp-buttons .applyBtn:hover,
body .daterangepicker .drp-buttons .btn-primary:hover {
  background: #026b3f !important;
  border-color: #026b3f !important;
}

body .daterangepicker .drp-buttons .cancelBtn {
  background: #fff !important;
  border: 1px solid #d1d5db !important;
  color: #374151 !important;
}

body .daterangepicker .drp-buttons .cancelBtn:hover {
  background: #f9fafb !important;
  border-color: #9ca3af !important;
}

/* Ranges sidebar */
body .daterangepicker .ranges li {
  font-size: 13px !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  transition: all .15s;
}

body .daterangepicker .ranges li:hover {
  background: #f3f4f6 !important;
  color: #111827 !important;
}

body .daterangepicker .ranges li.active {
  background: #038a52 !important;
  color: #fff !important;
}

/* Loading state spinner color */
body .daterangepicker.loading::after {
  color: #038a52 !important;
}

/* Tooltip styling */
body .daterangepicker .tooltip {
  font-size: 12px;
}

body .daterangepicker .tooltip .tooltip-inner {
  background: #111827;
  border-radius: 6px;
  padding: 4px 8px;
}

/* Availability event classes */
body .daterangepicker .calendar-table tbody td.full-book-event {
  color: #d1d5db !important;
}

body .daterangepicker .calendar-table tbody td.full-book-event::before {
  background: #f3f4f6 !important;
  border-radius: 50% !important;
}

/* Mobile single calendar */
@media (max-width: 767px) {
  body .daterangepicker {
    padding: 16px !important;
    border-radius: 12px !important;
  }

  body .daterangepicker .drp-calendar.left {
    padding-right: 0 !important;
    width: 100% !important;
  }

  body .daterangepicker .drp-calendar.right {
    display: none;
    border-left: none;
    padding-left: 0 !important;
  }

  body .daterangepicker .calendar-table tbody td {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
  }
}


/* ══════════════════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ══════════════════════════════════════════════════════════════════════ */
/* TripManga Checkout Redesign */
:root {
  --co-primary: #038a52;
  --co-primary-dark: #027548;
  --co-accent: #f47c04;
  --co-bg: #f5f7fb;
  --co-surface: #ffffff;
  --co-border: #dfe4ee;
  --co-text: #1e293b;
  --co-muted: #64748b;
  --co-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --co-radius: 14px;
  --co-radius-sm: 10px;
}

.co-page {
  background: radial-gradient(circle at 8% 10%, #eef8f2 0%, #f5f7fb 45%, #eef3fb 100%);
  padding: 28px 0 48px;
}

.co-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
}

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

.co-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--co-primary);
  font-weight: 700;
}

.co-title {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  color: var(--co-text);
}

.co-subtitle {
  margin: 10px 0 0;
  color: var(--co-muted);
  font-size: 15px;
}

.co-head-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.co-secure-chip {
  border: 1px solid #c8dfcf;
  background: #edf8f2;
  color: var(--co-primary);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.co-secure-chip i {
  margin-right: 6px;
}

.co-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius-sm);
  padding: 14px;
}

.co-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}

.co-step.active {
  opacity: 1;
}

.co-step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  color: var(--co-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  background: #fff;
}

.co-step.active .co-step-num {
  background: var(--co-primary);
  border-color: var(--co-primary);
  color: #fff;
}

.co-step-label {
  font-size: 13px;
  color: var(--co-text);
  font-weight: 600;
}

.co-step-line {
  height: 1px;
  background: #dbe2ef;
}

.co-progress-note {
  margin: 8px 2px 18px;
  font-size: 12px;
  color: var(--co-muted);
}

.co-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.co-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.co-main .form-section,
.co-main .form-group-item {
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius);
  box-shadow: var(--co-shadow);
  padding: 18px;
  margin-bottom: 16px;
}

.co-main .form-section-title {
  margin: 0 0 14px;
  color: var(--co-text);
  font-size: 18px;
  font-weight: 700;
}

.co-main hr {
  border: 0;
  border-top: 1px solid #e6eaf2;
  margin: 10px 0 16px;
}

.co-main .form-group {
  margin-bottom: 14px;
}

.co-main label {
  display: block;
  color: var(--co-text);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.co-main .form-control,
.co-main select,
.co-main textarea {
  border: 1px solid #cfd8e7;
  border-radius: 10px;
  min-height: 44px;
  font-size: 14px;
  color: var(--co-text);
  box-shadow: none;
}

.co-main textarea {
  min-height: 100px;
}

.co-main .form-control:focus,
.co-main select:focus,
.co-main textarea:focus {
  border-color: var(--co-primary);
  box-shadow: 0 0 0 3px rgba(3, 138, 82, 0.12);
}

.co-main .required {
  color: #dc2626;
}

.co-main .term-conditions-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border: 1px dashed #ccd7e8;
  border-radius: 12px;
  background: #f8fbff;
  margin-bottom: 0;
  font-size: 13px;
  color: var(--co-text);
  font-weight: 500;
}

.co-main .term-conditions-checkbox input {
  margin-top: 2px;
}

.co-main a {
  color: #1e293b;
  text-decoration: none;
}

.co-main a:hover {
  color: #f47c04;
}

.form-actions {
  margin-top: 18px;
}

.btn-co-submit {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: #038a52;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
}

.btn-co-submit:hover,
.btn-co-submit:focus {
  background: #f47c04;
  color: #fff;
}

.co-main .alert-text {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
}

.co-main .alert-text.danger {
  background: #fef2f2;
  color: #b91c1c;
}

.co-main .alert-text.success {
  background: #ecfdf5;
  color: #166534;
}

.co-gateway-card,
.co-pay-choice {
  border: 1px solid #d8e0ee;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

.co-gateway-card .card-header,
.co-pay-choice .card-header {
  background: #fff;
}

.co-gateway-label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  cursor: pointer;
  margin: 0;
  font-weight: 600;
  color: var(--co-text);
}

.co-gateway-label img {
  max-height: 22px;
  width: auto;
}

.co-credit-card .input-group-text {
  border-color: #cfd8e7;
  background: #f8fbff;
  color: var(--co-muted);
  font-weight: 600;
}

.co-credit-card .val {
  color: var(--co-primary);
  font-weight: 700;
}

.co-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.co-summary-card {
  background: var(--co-surface);
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius);
  box-shadow: var(--co-shadow);
  overflow: hidden;
}

.co-summary-top-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #065f46;
  background: #ecfdf5;
  border-bottom: 1px solid #d1fae5;
  padding: 10px 14px;
}

.co-summary-card .booking-review {
  margin: 0;
}

.co-summary-card .booking-review-title {
  margin: 0;
  padding: 14px 16px;
  font-size: 20px;
  color: var(--co-text);
  border-bottom: 1px solid #e6eaf2;
}

.co-summary-card .booking-review-content {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.co-summary-card .review-section {
  padding: 16px;
  border-bottom: 1px solid #e8edf5;
}

.co-summary-card .review-section:last-child {
  border-bottom: 0;
}

.co-summary-card .service-info {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 12px;
  align-items: start;
}

.co-summary-card .service-name a {
  color: #1e293b;
}

.co-summary-card .service-name a:hover {
  color: #f47c04;
}

.co-summary-card .address {
  color: var(--co-muted);
  font-size: 13px;
}

.co-summary-card .img-responsive {
  width: 100%;
  border-radius: 10px;
}

.co-summary-card .review-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.co-summary-card .review-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  padding: 7px 0;
  color: var(--co-text);
}

.co-summary-card .review-list li .val {
  color: #334155;
  font-weight: 600;
  text-align: right;
}

.co-summary-card .review-list li.final-total {
  margin-top: 6px;
  border-top: 1px solid #dce4ef;
  padding-top: 12px;
}

.co-summary-card .review-list li.final-total .val {
  color: var(--co-primary);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .co-layout {
    grid-template-columns: 1fr;
  }

  .co-sidebar-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .co-page {
    padding: 18px 0 30px;
  }

  .co-head {
    flex-direction: column;
  }

  .co-title {
    font-size: 25px;
  }

  .co-progress {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 12px;
  }

  .co-step-line {
    min-width: 26px;
    margin: 0 -2px;
  }

  .co-step-label {
    white-space: nowrap;
    font-size: 12px;
  }

  .co-main .form-section,
  .co-main .form-group-item {
    padding: 14px;
    margin-bottom: 12px;
  }

  .co-summary-card .service-info {
    grid-template-columns: 1fr;
  }
}