/* =====================================================================
   R&H WildQuest Tours & Travel — custom layer
   Sits on top of style.css. Brand tokens, premium refinements and the
   components the base template does not ship.
   ===================================================================== */

:root {
  /* Brand */
  --rh-maroon:        #8A1C2D;
  --rh-maroon-deep:   #6B1522;
  --rh-maroon-soft:   #B84A5C;
  --rh-orange:        #E8762C;
  --rh-orange-soft:   #F0913C;
  --rh-orange-tint:   #FDF1E7;

  /* Neutrals */
  --rh-ink:           #1A1416;
  --rh-ink-2:         #2B2124;
  --rh-body:          #6B6260;
  --rh-muted:         #8B807C;
  --rh-line:          #EDE5E2;
  --rh-line-2:        #F5EFEC;
  --rh-cream:         #FBF3F0;
  --rh-cream-2:       #FDF9F7;
  --rh-white:         #FFFFFF;

  /* Elevation — soft, warm, never grey-blue */
  --rh-shadow-xs: 0 1px 2px rgba(26, 20, 22, .05);
  --rh-shadow-sm: 0 4px 14px rgba(26, 20, 22, .06);
  --rh-shadow-md: 0 10px 30px rgba(26, 20, 22, .08);
  --rh-shadow-lg: 0 22px 60px rgba(26, 20, 22, .12);

  /* Minimal, tasteful gradients */
  --rh-grad-brand:  linear-gradient(118deg, #8A1C2D 0%, #741724 46%, #E8762C 190%);
  --rh-grad-warm:   linear-gradient(180deg, #FDF9F7 0%, #FBF3F0 100%);
  --rh-grad-line:   linear-gradient(90deg, rgba(138,28,45,0) 0%, rgba(138,28,45,.35) 45%, rgba(232,118,44,.5) 100%);

  --rh-radius:    14px;
  --rh-radius-sm: 10px;
  --rh-radius-xs: 8px;
  --rh-ease:      cubic-bezier(.22, .61, .36, 1);
}

/* =====================================================================
   1. Foundations
   ===================================================================== */

body { -webkit-font-smoothing: antialiased; letter-spacing: -0.005em; }

::selection { background: var(--rh-maroon); color: #fff; }

.sec-title,
.box-title,
.breadcumb-title,
.newsletter-title { letter-spacing: -0.022em; }

/* .sub-title keeps the template's Montez script face — only the colour
   is rebranded. Sizing and weight stay as the theme ships them. */
.sub-title { color: var(--rh-maroon); }
.sub-title.style1 { color: var(--rh-orange); }
.th-hero-wrapper .sub-title,
.th-hero-wrapper .sub-title.style1 { color: #fff; }

/* Restrained scrollbar */
* { scrollbar-width: thin; scrollbar-color: #D9CCC7 transparent; }
*::-webkit-scrollbar { width: 9px; height: 9px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: #DED2CD; border-radius: 8px; border: 2px solid #fff; }
*::-webkit-scrollbar-thumb:hover { background: var(--rh-maroon-soft); }

/* Keyboard focus that stays visible without shouting */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.th-btn:focus-visible {
  outline: 2px solid var(--rh-orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* =====================================================================
   2. Buttons
   ===================================================================== */

.th-btn {
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: var(--rh-shadow-xs);
  transition: transform .35s var(--rh-ease), box-shadow .35s var(--rh-ease), background-color .3s ease, color .3s ease;
}
.th-btn:hover { transform: translateY(-2px); box-shadow: var(--rh-shadow-md); }
.th-btn:active { transform: translateY(0); }

.th-btn.style3 { background: var(--rh-grad-brand); border: none; color: #fff; }
.th-btn.style3:hover { color: #fff; filter: saturate(1.08) brightness(1.04); }

.th-btn.style-orange { background: var(--rh-orange); color: #fff; }
.th-btn.style-orange:hover { background: #D96A22; color: #fff; }

.th-btn.style-ghost {
  background: transparent;
  color: var(--rh-maroon);
  border: 1.5px solid var(--rh-line);
  box-shadow: none;
}
.th-btn.style-ghost:hover { border-color: var(--rh-maroon); background: var(--rh-cream); color: var(--rh-maroon); }

.th-btn.btn-block { width: 100%; justify-content: center; text-align: center; }
.th-btn.btn-lg { padding: 17px 34px; font-size: 16px; }

.th-btn[disabled],
.th-btn.is-loading { opacity: .62; pointer-events: none; }
.th-btn.is-loading::after {
  content: '';
  width: 15px; height: 15px;
  margin-left: 9px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: rh-spin .7s linear infinite;
}
@keyframes rh-spin { to { transform: rotate(360deg); } }

.line-btn { font-weight: 700; }

/* =====================================================================
   3. Cards — tours, blog, destinations
   ===================================================================== */

.tour-box,
.blog-box,
.category-card,
.destination-box {
  border-radius: var(--rh-radius);
  overflow: hidden;
  transition: transform .45s var(--rh-ease), box-shadow .45s var(--rh-ease);
}
.tour-box:hover,
.blog-box:hover { transform: translateY(-6px); box-shadow: var(--rh-shadow-lg); }

/* Equal-height cards inside sliders — the base swiper leaves them ragged. */
.th-slider .swiper-wrapper { align-items: stretch; }
.th-slider .swiper-slide { height: auto; display: flex; }
.th-slider .swiper-slide > .tour-box,
.th-slider .swiper-slide > .blog-box { width: 100%; display: flex; flex-direction: column; }
.th-slider .swiper-slide > .tour-box .tour-content,
.th-slider .swiper-slide > .blog-box .blog-box_content { flex: 1; display: flex; flex-direction: column; }
.tour-box .tour-action,
.blog-box .th-btn { margin-top: auto; }

/* The template rotates and offsets category tiles. It reads as a glitch
   once real photography is in place, so straighten them. */
.category-card.single,
.category-card.single .box-img,
.category-card.single .box-img img {
  transform: none !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.category-card.single { text-align: center; }
.category-card.single .box-img {
  border-radius: var(--rh-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--rh-shadow-sm);
}
.category-card.single .box-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--rh-ease);
}
.category-card.single:hover .box-img img { transform: scale(1.07); }
.category-card.single .box-title { margin: 18px 0 6px; font-size: 19px; }

.tour-box { position: relative; background: #fff; border: 1px solid var(--rh-line-2); }
.tour-box_img { position: relative; overflow: hidden; }
.tour-box_img img { transition: transform 1.1s var(--rh-ease); width: 100%; }
.tour-box:hover .tour-box_img img { transform: scale(1.07); }

.tour-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: rgba(26, 20, 22, .78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
}
.tour-badge--sale { background: var(--rh-orange); }

.tour-route {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  color: var(--rh-muted);
  margin-bottom: 8px;
}
.tour-route i { color: var(--rh-orange); margin-right: 7px; }

.tour-box .box-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-box_price del {
  color: var(--rh-muted);
  font-size: .72em;
  font-weight: 500;
  margin-right: 5px;
  opacity: .85;
}

.blog-box .box-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =====================================================================
   4. Header & navigation polish
   ===================================================================== */

/* Dark utility bar — the base template assumes a light one, so every
   foreground colour inside it has to be restated. */
.header-top { background: var(--rh-ink); border: 0; }
.header-top .header-links li,
.header-top .header-links li span,
.header-top .header-links a { color: rgba(255, 255, 255, .74); }
.header-top .header-links a:hover { color: var(--rh-orange); }
.header-top .header-links li i { color: var(--rh-orange); }
.header-top .header-links li:not(:last-child)::after { background-color: rgba(255, 255, 255, .2); }

/* Logo + nav + CTA must stay on one row down to the xl breakpoint.
   The stock spacing overflows once the wordmark is wider than the template's. */
.header-logo img { max-height: 46px; width: auto; }

/* The masked shape behind the logo. It has a curved tail, so it needs to run
   well past the wordmark for the whole logo to sit on maroon. */
.menu-area .logo-bg { min-width: 0; width: 400px; max-width: 40vw; }

/* Menu labels must never wrap — a two-line item throws the whole bar out. */
.main-menu > ul { flex-wrap: nowrap; }
.main-menu > ul > li { white-space: nowrap; }
.main-menu > ul > li > a { white-space: nowrap; }

@media (min-width: 1200px) and (max-width: 1499px) {
  .main-menu > ul > li { margin: 0 12px; }
  .main-menu > ul > li > a { font-size: 15.5px; }
  .header-logo img { max-height: 42px; }
  .menu-area .logo-bg { width: 350px; }
  .header-button .icon-btn { display: none; }
}

@media (min-width: 1500px) {
  .main-menu > ul > li { margin: 0 16px; }
}

.header-button { display: flex; align-items: center; gap: 8px; flex-wrap: nowrap; }
.header-button .icon-btn { margin-right: 0; }

.main-menu > ul > li > a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 22px;
  width: 0; height: 2px;
  border-radius: 2px;
  background: var(--rh-grad-line);
  transition: width .4s var(--rh-ease);
}
.main-menu > ul > li > a { position: relative; }
.main-menu > ul > li:hover > a::after,
.main-menu > ul > li > a.active::after { width: 100%; }

.sticky-wrapper.sticky .menu-area {
  box-shadow: 0 6px 26px rgba(26, 20, 22, .09);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .95);
}

.header-button .icon-btn {
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--rh-line);
  background: #fff;
  color: var(--rh-ink);
  margin-right: 8px;
  transition: all .3s ease;
}
.header-button .icon-btn:hover { border-color: var(--rh-maroon); color: var(--rh-maroon); background: var(--rh-cream); }

/* =====================================================================
   5. Hero & search bar
   ===================================================================== */

.th-hero-wrapper .hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(96deg, rgba(26, 20, 22, .74) 0%, rgba(26, 20, 22, .42) 46%, rgba(26, 20, 22, .12) 100%);
  pointer-events: none;
}
.th-hero-wrapper .container { position: relative; z-index: 2; }

.hero-style1 .hero-title { text-shadow: 0 2px 26px rgba(0, 0, 0, .3); }
.hero-style1 .sub-title.style1 { color: #fff; }
.hero-style1 .sub-title.style1::before { background: var(--rh-orange); }

.rh-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 26px 0 6px;
  padding: 0;
  list-style: none;
}
.rh-hero-points li {
  color: rgba(255, 255, 255, .93);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.rh-hero-points i { color: var(--rh-orange); font-size: 15px; }

/* Search / booking bar */
.booking-sec .booking-form {
  border-radius: var(--rh-radius);
  box-shadow: var(--rh-shadow-lg);
  border: 1px solid var(--rh-line-2);
}
.booking-sec .form-group .icon i { color: var(--rh-maroon); }
.booking-sec label { color: var(--rh-muted); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: 11.5px; }

/* =====================================================================
   6. Forms
   ===================================================================== */

.form-control,
.form-select,
textarea.form-control,
.nice-select {
  border-radius: var(--rh-radius-xs) !important;
  border: 1.5px solid var(--rh-line) !important;
  background-color: #fff !important;
  color: var(--rh-ink) !important;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form-control:focus,
.form-select:focus,
.nice-select.open {
  border-color: var(--rh-maroon) !important;
  box-shadow: 0 0 0 3.5px rgba(138, 28, 45, .1) !important;
}
.form-control::placeholder { color: #ADA19D; }

.form-control.is-invalid,
.form-select.is-invalid { border-color: #D0403C !important; }

.rh-field { margin-bottom: 20px; }
.rh-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--rh-ink);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.rh-label .req { color: var(--rh-orange); margin-left: 2px; }
.rh-help { font-size: 12.5px; color: var(--rh-muted); margin-top: 6px; display: block; }
.rh-error { font-size: 12.5px; color: #D0403C; margin-top: 6px; display: block; font-weight: 600; }

/* Segmented radio group (payment method, pay option, …) */
.rh-choice { display: grid; gap: 12px; }
.rh-choice input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.rh-choice label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border: 1.5px solid var(--rh-line);
  border-radius: var(--rh-radius-sm);
  cursor: pointer;
  background: #fff;
  transition: all .25s ease;
  margin: 0;
}
.rh-choice label:hover { border-color: var(--rh-maroon-soft); background: var(--rh-cream-2); }
.rh-choice input:checked + label {
  border-color: var(--rh-maroon);
  background: var(--rh-cream);
  box-shadow: 0 0 0 3.5px rgba(138, 28, 45, .09);
}
.rh-choice .rh-choice__icon {
  width: 42px; height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--rh-cream);
  color: var(--rh-maroon);
  font-size: 17px;
}
.rh-choice input:checked + label .rh-choice__icon { background: var(--rh-maroon); color: #fff; }
.rh-choice__title { font-weight: 700; color: var(--rh-ink); font-size: 15px; display: block; }
.rh-choice__desc { font-size: 12.5px; color: var(--rh-muted); display: block; margin-top: 1px; }
.rh-choice__meta { margin-left: auto; font-weight: 800; color: var(--rh-maroon); white-space: nowrap; }

/* Number stepper */
.rh-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--rh-line); border-radius: var(--rh-radius-xs); overflow: hidden; background: #fff; }
.rh-stepper button {
  width: 42px; height: 46px;
  border: 0;
  background: #fff;
  color: var(--rh-ink);
  font-size: 15px;
  transition: background .2s ease, color .2s ease;
}
.rh-stepper button:hover { background: var(--rh-cream); color: var(--rh-maroon); }
/* The base template pads every input 25px/50px, which pushes the value
   clean out of a narrow stepper box — reset it here. */
.rh-stepper input[type="number"] {
  width: 62px; height: 46px;
  padding: 0 !important;
  border: 0;
  border-left: 1.5px solid var(--rh-line);
  border-right: 1.5px solid var(--rh-line);
  border-radius: 0 !important;
  text-align: center;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--rh-ink);
  background: #fff;
  -moz-appearance: textfield;
}
.rh-stepper input[type="number"]:focus { box-shadow: none !important; }
.rh-stepper input::-webkit-outer-spin-button,
.rh-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Password field with a visibility toggle */
.rh-password { position: relative; }
.rh-password .rh-password__toggle {
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: 0;
  background: transparent;
  color: var(--rh-muted);
  border-radius: 8px;
  display: grid;
  place-items: center;
  transition: color .2s ease, background .2s ease;
}
.rh-password .rh-password__toggle:hover { color: var(--rh-maroon); background: var(--rh-cream); }
.rh-password input { padding-right: 52px !important; }

/* Password strength meter */
.rh-strength { margin-top: 9px; }
.rh-strength__bar { height: 5px; border-radius: 4px; background: var(--rh-line); overflow: hidden; }
.rh-strength__fill { height: 100%; width: 0; border-radius: 4px; transition: width .35s var(--rh-ease), background .35s ease; }
.rh-strength__text { font-size: 12px; font-weight: 600; color: var(--rh-muted); margin-top: 6px; display: block; }

/* =====================================================================
   7. Package detail page
   ===================================================================== */

.rh-pkg-hero { position: relative; }
.rh-pkg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.rh-pkg-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  background: var(--rh-cream);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--rh-ink);
}
.rh-pkg-meta__item i { color: var(--rh-maroon); }

.rh-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--rh-line);
  border: 1px solid var(--rh-line);
  border-radius: var(--rh-radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.rh-fact { background: #fff; padding: 20px 22px; }
.rh-fact__label {
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rh-muted);
  display: block;
  margin-bottom: 5px;
}
.rh-fact__value { font-size: 15.5px; font-weight: 700; color: var(--rh-ink); }
.rh-fact i { color: var(--rh-orange); margin-right: 7px; }

/* Itinerary timeline */
.rh-timeline { position: relative; padding-left: 34px; }
.rh-timeline::before {
  content: '';
  position: absolute;
  left: 13px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--rh-maroon) 0%, rgba(232, 118, 44, .45) 100%);
  border-radius: 2px;
}
.rh-tl-item { position: relative; padding-bottom: 30px; }
.rh-tl-item:last-child { padding-bottom: 0; }
.rh-tl-item::before {
  content: '';
  position: absolute;
  left: -27px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--rh-maroon);
  box-shadow: 0 0 0 4px var(--rh-cream);
}
.rh-tl-day {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--rh-orange);
  margin-bottom: 5px;
}
.rh-tl-title { font-size: 18px; font-weight: 800; color: var(--rh-ink); margin-bottom: 8px; letter-spacing: -.015em; }
.rh-tl-body { color: var(--rh-body); font-size: 15.2px; line-height: 1.75; margin: 0; }

/* Sticky booking widget */
.rh-book-widget {
  background: #fff;
  border: 1px solid var(--rh-line);
  border-radius: var(--rh-radius);
  box-shadow: var(--rh-shadow-md);
  overflow: hidden;
  position: sticky;
  top: 110px;
}
.rh-book-widget__head { background: var(--rh-grad-brand); padding: 24px 26px; color: #fff; }
.rh-book-widget__from { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; opacity: .78; font-weight: 700; }
.rh-book-widget__price { font-size: 36px; font-weight: 800; line-height: 1.1; letter-spacing: -.03em; margin: 4px 0 0; }
.rh-book-widget__price small { font-size: 14px; font-weight: 600; opacity: .8; }
.rh-book-widget__price del { font-size: 18px; opacity: .6; font-weight: 500; margin-right: 8px; }
.rh-book-widget__body { padding: 24px 26px 26px; }
.rh-book-widget__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--rh-line);
  font-size: 14.5px;
}
.rh-book-widget__row:last-of-type { border-bottom: 0; }
.rh-book-widget__row span:first-child { color: var(--rh-muted); }
.rh-book-widget__row span:last-child { font-weight: 700; color: var(--rh-ink); text-align: right; }
.rh-book-widget__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 16px 0 18px;
  padding-top: 16px;
  border-top: 2px solid var(--rh-line);
}
.rh-book-widget__total b { font-size: 25px; color: var(--rh-maroon); letter-spacing: -.02em; }

.rh-assurance { display: grid; gap: 9px; margin-top: 18px; }
.rh-assurance li { display: flex; gap: 10px; font-size: 13.2px; color: var(--rh-body); align-items: flex-start; }
.rh-assurance i { color: #2E9C6A; margin-top: 3px; }

/* Include / exclude lists */
.rh-inclusions { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }
.rh-inclusions ul { list-style: none; padding: 0; margin: 0; }
.rh-inclusions li { position: relative; padding-left: 30px; margin-bottom: 11px; color: var(--rh-body); font-size: 15px; line-height: 1.6; }
.rh-inclusions li::before {
  position: absolute; left: 0; top: 1px;
  font-family: var(--icon-font), 'Font Awesome 6 Free';
  font-weight: 900;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px;
}
.rh-inclusions .rh-inc li::before { content: '\f00c'; background: #E3F5EC; color: #2E9C6A; }
.rh-inclusions .rh-exc li::before { content: '\f00d'; background: #FBE9E8; color: #D0403C; }
.rh-inclusions h4 { font-size: 17px; font-weight: 800; margin-bottom: 15px; color: var(--rh-ink); }

/* =====================================================================
   8. Booking flow
   ===================================================================== */

.rh-steps { display: flex; align-items: center; gap: 0; margin-bottom: 42px; flex-wrap: wrap; }
.rh-step { display: flex; align-items: center; gap: 11px; flex: 1 1 0; min-width: 150px; }
.rh-step__num {
  width: 38px; height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  border: 2px solid var(--rh-line);
  color: var(--rh-muted);
  font-weight: 800;
  font-size: 14px;
  transition: all .3s ease;
}
.rh-step__label { font-size: 13.5px; font-weight: 700; color: var(--rh-muted); line-height: 1.3; }
.rh-step__bar { flex: 1; height: 2px; background: var(--rh-line); margin: 0 14px; border-radius: 2px; min-width: 20px; }
.rh-step.is-active .rh-step__num { background: var(--rh-maroon); border-color: var(--rh-maroon); color: #fff; }
.rh-step.is-active .rh-step__label { color: var(--rh-ink); }
.rh-step.is-done .rh-step__num { background: #2E9C6A; border-color: #2E9C6A; color: #fff; }
.rh-step.is-done .rh-step__label { color: var(--rh-ink); }

.rh-panel {
  background: #fff;
  border: 1px solid var(--rh-line);
  border-radius: var(--rh-radius);
  padding: 30px 32px;
  box-shadow: var(--rh-shadow-sm);
  margin-bottom: 26px;
}
.rh-panel__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--rh-ink);
  margin: 0 0 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--rh-line);
  letter-spacing: -.018em;
  display: flex;
  align-items: center;
  gap: 11px;
}
.rh-panel__title i { color: var(--rh-maroon); font-size: 17px; }

.rh-summary {
  background: var(--rh-grad-warm);
  border: 1px solid var(--rh-line);
  border-radius: var(--rh-radius);
  overflow: hidden;
  position: sticky;
  top: 110px;
}
.rh-summary__media { position: relative; height: 150px; overflow: hidden; }
.rh-summary__media img { width: 100%; height: 100%; object-fit: cover; }
.rh-summary__media h4 {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  margin: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(180deg, rgba(26,20,22,0) 0%, rgba(26,20,22,.86) 100%);
  color: #fff;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -.015em;
}
.rh-summary__body { padding: 22px 24px 26px; }

/* =====================================================================
   9. Booking status timeline
   ===================================================================== */

.rh-status-card {
  border-radius: var(--rh-radius);
  border: 1px solid var(--rh-line);
  overflow: hidden;
  box-shadow: var(--rh-shadow-md);
  background: #fff;
}
.rh-status-card__head { padding: 30px 32px; color: #fff; background: var(--rh-grad-brand); }
.rh-status-card__head.is-paid { background: linear-gradient(118deg, #1F7A54 0%, #2E9C6A 100%); }
.rh-status-card__head.is-failed { background: linear-gradient(118deg, #9A2B27 0%, #D0403C 100%); }
.rh-status-card__ref { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .8; font-weight: 700; }
.rh-status-card__title { font-size: 27px; font-weight: 800; margin: 6px 0 0; letter-spacing: -.025em; }

.rh-track { display: flex; padding: 30px 32px 10px; gap: 0; flex-wrap: wrap; }
.rh-track__step { flex: 1 1 0; min-width: 130px; position: relative; padding-right: 14px; }
.rh-track__dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--rh-line-2);
  color: var(--rh-muted);
  font-size: 12px;
  margin-bottom: 11px;
  position: relative;
  z-index: 2;
}
.rh-track__step.is-done .rh-track__dot { background: #2E9C6A; color: #fff; }
.rh-track__step.is-current .rh-track__dot { background: var(--rh-maroon); color: #fff; box-shadow: 0 0 0 5px rgba(138, 28, 45, .13); }
.rh-track__step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 30px; top: 14px;
  right: 4px;
  height: 2px;
  background: var(--rh-line);
}
.rh-track__step.is-done:not(:last-child)::after { background: #2E9C6A; }
.rh-track__label { font-size: 13.5px; font-weight: 700; color: var(--rh-ink); }
.rh-track__time { font-size: 12px; color: var(--rh-muted); margin-top: 2px; }

/* =====================================================================
   10. Utility components
   ===================================================================== */

/* Empty state */
.rh-empty,
.rhwq-empty { text-align: center; padding: 70px 24px; }
.rhwq-empty__icon {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--rh-cream);
  color: var(--rh-maroon);
  font-size: 29px;
}
.rhwq-empty__title { font-size: 21px; font-weight: 800; color: var(--rh-ink); margin-bottom: 9px; }
.rhwq-empty__text { color: var(--rh-muted); max-width: 460px; margin: 0 auto 24px; }

/* Trust strip */
.rhwq-trust {
  border: 1px solid var(--rh-line);
  border-radius: var(--rh-radius);
  background: var(--rh-grad-warm);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.rhwq-trust__label {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--rh-muted);
  white-space: nowrap;
}
.rhwq-trust__logos { display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center; flex: 1; }
.rhwq-trust__item { display: inline-flex; align-items: center; gap: 10px; opacity: .68; transition: opacity .3s ease; }
.rhwq-trust__item:hover { opacity: 1; }
.rhwq-trust__item img { height: 26px; width: auto; filter: grayscale(1); }
.rhwq-trust__item:hover img { filter: none; }
.rhwq-trust__item em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--rh-ink);
  white-space: nowrap;
}

/* Feature / why-choose-us card */
.rh-feature {
  background: #fff;
  border: 1px solid var(--rh-line);
  border-radius: var(--rh-radius);
  padding: 32px 28px;
  height: 100%;
  transition: transform .4s var(--rh-ease), box-shadow .4s var(--rh-ease), border-color .4s ease;
}
.rh-feature:hover { transform: translateY(-5px); box-shadow: var(--rh-shadow-md); border-color: transparent; }
.rh-feature__icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--rh-cream);
  color: var(--rh-maroon);
  font-size: 23px;
  margin-bottom: 20px;
  transition: background .35s ease, color .35s ease;
}
.rh-feature:hover .rh-feature__icon { background: var(--rh-grad-brand); color: #fff; }
.rh-feature__title { font-size: 18.5px; font-weight: 800; color: var(--rh-ink); margin-bottom: 10px; letter-spacing: -.018em; }
.rh-feature__text { color: var(--rh-body); font-size: 15px; line-height: 1.72; margin: 0; }

/* Stat tiles */
.rh-stat { text-align: center; padding: 8px; }
.rh-stat__num { font-size: 44px; font-weight: 800; color: var(--rh-maroon); letter-spacing: -.035em; line-height: 1; }
.rh-stat__num small { font-size: .55em; }
.rh-stat__label { font-size: 14px; font-weight: 600; color: var(--rh-muted); margin-top: 9px; }

/* Filter chips */
.rh-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.rh-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 17px;
  border-radius: 999px;
  border: 1.5px solid var(--rh-line);
  background: #fff;
  color: var(--rh-ink);
  font-size: 13.8px;
  font-weight: 700;
  transition: all .25s ease;
}
.rh-chip:hover { border-color: var(--rh-maroon); color: var(--rh-maroon); }
.rh-chip.is-active { background: var(--rh-maroon); border-color: var(--rh-maroon); color: #fff; }
.rh-chip.is-active:hover { color: #fff; }
.rh-chip__count { opacity: .6; font-weight: 600; }

/* Filter sidebar */
.rh-filter { background: #fff; border: 1px solid var(--rh-line); border-radius: var(--rh-radius); padding: 26px 26px 8px; box-shadow: var(--rh-shadow-sm); }
.rh-filter__group { margin-bottom: 26px; }
.rh-filter__title { font-size: 15px; font-weight: 800; color: var(--rh-ink); margin-bottom: 14px; }
.rh-filter .form-check { margin-bottom: 9px; }
.rh-filter .form-check-input:checked { background-color: var(--rh-maroon); border-color: var(--rh-maroon); }
.rh-filter .form-check-label { font-size: 14.2px; color: var(--rh-body); cursor: pointer; }

/* Sort / result bar */
.rh-resultbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rh-line);
}
.rh-resultbar__count { font-size: 14.5px; color: var(--rh-muted); }
.rh-resultbar__count b { color: var(--rh-ink); }

/* Prose (Quill output) */
.rh-prose { color: var(--rh-body); font-size: 16.2px; line-height: 1.82; }
.rh-prose > *:first-child { margin-top: 0; }
.rh-prose > *:last-child { margin-bottom: 0; }
.rh-prose h1, .rh-prose h2, .rh-prose h3, .rh-prose h4, .rh-prose h5, .rh-prose h6 {
  color: var(--rh-ink);
  font-weight: 800;
  letter-spacing: -.022em;
  margin: 2em 0 .7em;
  line-height: 1.3;
}
.rh-prose h2 { font-size: 27px; }
.rh-prose h3 { font-size: 22px; }
.rh-prose h4 { font-size: 18.5px; }
.rh-prose p { margin-bottom: 1.3em; }
.rh-prose a { color: var(--rh-maroon); text-decoration: underline; text-underline-offset: 3px; }
.rh-prose a:hover { color: var(--rh-orange); }
.rh-prose ul, .rh-prose ol { margin: 0 0 1.4em; padding-left: 1.3em; }
.rh-prose li { margin-bottom: .55em; }
.rh-prose img { border-radius: var(--rh-radius); margin: 1.6em 0; }
.rh-prose blockquote {
  margin: 1.8em 0;
  padding: 22px 28px;
  background: var(--rh-cream);
  border-left: 3px solid var(--rh-maroon);
  border-radius: 0 var(--rh-radius-sm) var(--rh-radius-sm) 0;
  font-size: 17.5px;
  font-style: italic;
  color: var(--rh-ink);
}
.rh-prose blockquote p:last-child { margin-bottom: 0; }
.rh-prose pre {
  background: var(--rh-ink);
  color: #F0E9E6;
  padding: 20px 24px;
  border-radius: var(--rh-radius-sm);
  overflow-x: auto;
  font-size: 14px;
}
.rh-prose code { background: var(--rh-cream); color: var(--rh-maroon); padding: 2px 7px; border-radius: 5px; font-size: .9em; }
.rh-prose pre code { background: none; color: inherit; padding: 0; }
.rh-prose table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: 15px; }
.rh-prose th, .rh-prose td { border: 1px solid var(--rh-line); padding: 11px 14px; text-align: left; }
.rh-prose th { background: var(--rh-cream); font-weight: 800; color: var(--rh-ink); }
.rh-prose hr { border: 0; border-top: 1px solid var(--rh-line); margin: 2.4em 0; }

/* Map */
.rh-map { height: 420px; width: 100%; border-radius: var(--rh-radius); overflow: hidden; border: 1px solid var(--rh-line); z-index: 1; }
.rh-map.is-tall { height: 520px; }
.leaflet-container { font-family: var(--body-font), sans-serif; }
.leaflet-popup-content-wrapper { border-radius: var(--rh-radius-sm); box-shadow: var(--rh-shadow-md); }
.leaflet-popup-content { margin: 14px 17px; font-size: 14px; }
.leaflet-popup-content b { color: var(--rh-maroon); }
.leaflet-bar a { color: var(--rh-ink); }

/* Alerts */
.rh-alert {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--rh-radius-sm);
  font-size: 14.6px;
  line-height: 1.6;
  margin-bottom: 22px;
  border: 1px solid transparent;
}
.rh-alert i { font-size: 17px; margin-top: 2px; }
.rh-alert--success { background: #EBF7F1; border-color: #C9E9DA; color: #1E6E4C; }
.rh-alert--error   { background: #FCEDEC; border-color: #F3D3D1; color: #A32F2B; }
.rh-alert--warning { background: #FEF4E9; border-color: #F8DEC2; color: #92590F; }
.rh-alert--info    { background: var(--rh-cream); border-color: #EEDFDA; color: #7A2434; }

/* Toasts */
.rhwq-toasts {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 1200;
  display: grid;
  gap: 11px;
  max-width: min(380px, calc(100vw - 44px));
}
.rhwq-toast {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 18px;
  background: #fff;
  border-radius: var(--rh-radius-sm);
  box-shadow: var(--rh-shadow-lg);
  border-left: 4px solid var(--rh-maroon);
  font-size: 14.4px;
  color: var(--rh-ink);
  animation: rh-toast-in .45s var(--rh-ease);
}
.rhwq-toast.is-out { animation: rh-toast-out .35s var(--rh-ease) forwards; }
.rhwq-toast--success { border-left-color: #2E9C6A; }
.rhwq-toast--error   { border-left-color: #D0403C; }
.rhwq-toast--warning { border-left-color: var(--rh-orange); }
.rhwq-toast i { font-size: 16px; margin-top: 2px; }
.rhwq-toast--success i { color: #2E9C6A; }
.rhwq-toast--error i { color: #D0403C; }
.rhwq-toast--warning i { color: var(--rh-orange); }
.rhwq-toast__close { margin-left: auto; border: 0; background: none; color: var(--rh-muted); font-size: 13px; padding: 0 2px; }
@keyframes rh-toast-in  { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes rh-toast-out { to { opacity: 0; transform: translateX(24px); } }

/* Floating action buttons */
.rhwq-floats {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 1100;
  display: grid;
  gap: 11px;
}
.rhwq-float {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 52px;
  padding: 0 16px;
  border-radius: 26px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: var(--rh-shadow-lg);
  transition: gap .35s var(--rh-ease), padding .35s var(--rh-ease), transform .3s ease;
  overflow: hidden;
  white-space: nowrap;
}
.rhwq-float i { font-size: 21px; }
.rhwq-float span { max-width: 0; opacity: 0; transition: max-width .4s var(--rh-ease), opacity .3s ease; }
.rhwq-float:hover { color: #fff; transform: translateY(-3px); gap: 10px; padding-right: 22px; }
.rhwq-float:hover span { max-width: 160px; opacity: 1; }
.rhwq-float--quote { background: var(--rh-grad-brand); }

/* Payment badges in the footer */
.pay-badges { display: inline-flex; gap: 9px; align-items: center; flex-wrap: wrap; }
.pay-badge {
  display: inline-grid;
  place-items: center;
  min-width: 46px; height: 30px;
  padding: 0 9px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
}
.pay-badge--text { font-size: 10.5px; font-weight: 800; letter-spacing: .04em; }

/* Newsletter.
   The theme ships .newsletter-top as a bordered divider row, not a filled
   panel — so once we put a background on it the content sat flush against
   the edges. Make it a real card: inset padding, radius, no stray border. */
.newsletter-area {
  background: var(--rh-grad-brand) !important;
  border-radius: 16px;
  padding: 48px 56px;
  margin-bottom: 62px;
  box-shadow: var(--rh-shadow-md);
}
.newsletter-area .newsletter-top {
  border-bottom: 0 !important;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* The theme's heading uses --title-color, which is near-black and
   unreadable once the panel is maroon. */
.newsletter-area .newsletter-title { color: #fff; }

@media (max-width: 1199px) {
  .newsletter-area { padding: 40px 36px; }
}
@media (max-width: 767px) {
  .newsletter-area { padding: 32px 24px; margin-bottom: 48px; border-radius: 14px; }
}

.rh-newsletter {
  display: flex;
  gap: 12px;
  max-width: 620px;
  margin-left: auto;
  flex-wrap: wrap;
}

.rh-newsletter__field {
  position: relative;
  flex: 1 1 260px;
  display: flex;
  align-items: center;
}
.rh-newsletter__field i {
  position: absolute;
  left: 20px;
  font-size: 15px;
  color: var(--rh-muted);
  pointer-events: none;
}
.rh-newsletter__field input {
  width: 100%;
  height: 58px;
  padding: 0 20px 0 48px;
  border: 1.5px solid transparent;
  border-radius: 10px;
  background: #fff;
  color: var(--rh-ink);
  font-size: 15px;
  font-family: var(--body-font), sans-serif;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.rh-newsletter__field input::placeholder { color: #ADA19D; }
.rh-newsletter__field input:focus {
  outline: none;
  border-color: var(--rh-orange);
  box-shadow: 0 0 0 4px rgba(232, 118, 44, .22);
}

.rh-newsletter__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 58px;
  min-width: 190px;
  padding: 0 40px !important;
  border: 0;
  border-radius: 10px;
  background: var(--rh-ink);
  color: #fff;
  font-family: var(--body-font), sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: background .28s ease, transform .28s var(--rh-ease), box-shadow .28s var(--rh-ease);
}
.rh-newsletter__btn:hover {
  background: var(--rh-orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26, 20, 22, .28);
}
.rh-newsletter__btn i { font-size: 13px; transition: transform .28s var(--rh-ease); }
.rh-newsletter__btn:hover i { transform: translateX(4px); }
.rh-newsletter__btn.is-loading { opacity: .65; pointer-events: none; }

.newsletter-area .form-messages { color: #fff; font-size: 13.5px; }

/* Footer contact strip — full width under the link columns. */
.rh-footer-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px 30px;
  margin-top: 12px;
  padding: 26px 0 6px;
  border-top: 1px solid var(--rh-line);
}
.rh-footer-contact__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}
a.rh-footer-contact__item:hover .rh-footer-contact__icon { background: var(--rh-maroon); color: #fff; }
a.rh-footer-contact__item:hover strong { color: var(--rh-maroon); }
.rh-footer-contact__icon {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--rh-cream);
  color: var(--rh-maroon);
  font-size: 16px;
  transition: background .28s ease, color .28s ease;
}
.rh-footer-contact__item em {
  display: block;
  font-style: normal;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rh-muted);
  margin-bottom: 3px;
}
.rh-footer-contact__item strong {
  display: block;
  font-size: 14.6px;
  font-weight: 700;
  color: var(--rh-ink);
  line-height: 1.45;
  transition: color .28s ease;
}

/* Testimonial slider (home-agency layout) — the theme colours the name
   and role from the old palette. The floating avatar layer is 700px tall
   with a -450px pull, so the section needs room underneath it. */
.testi-area3 { padding-bottom: 40px; }
@media (max-width: 991px) { .testi-area3 { padding-bottom: 0; } }
.testi-grid_name { margin-bottom: 2px; }
.testi-grid_desig { font-size: 14px; font-weight: 600; color: var(--rh-orange); }
.testi-grid_text { color: var(--rh-body); }
.testi-grid-thumb .swiper-slide { cursor: pointer; opacity: .45; transition: opacity .3s ease; }
.testi-grid-thumb .swiper-slide-thumb-active,
.testi-grid-thumb .swiper-slide:hover { opacity: 1; }

@media (max-width: 575px) {
  .rh-newsletter { flex-direction: column; }
  .rh-newsletter__btn { width: 100%; }
}

/* Gallery */
.rh-gallery-item {
  position: relative;
  border-radius: var(--rh-radius);
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
}
.rh-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--rh-ease); }
.rh-gallery-item:hover img { transform: scale(1.08); }
.rh-gallery-item::after {
  content: '\f00e';
  font-family: var(--icon-font), 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  background: linear-gradient(180deg, rgba(138, 28, 45, .1) 0%, rgba(138, 28, 45, .72) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}
.rh-gallery-item:hover::after { opacity: 1; }

/* Section rhythm helpers */
.rh-section-cream { background: var(--rh-grad-warm); }
.rh-divider { height: 1px; background: var(--rh-line); margin: 0; border: 0; }

/* Sticky offsets need room under the fixed header on smaller screens */
@media (max-width: 1199px) {
  .rh-book-widget, .rh-summary { position: static; }
}

@media (max-width: 991px) {
  .rh-panel { padding: 24px 22px; }
  .rh-status-card__head { padding: 24px 22px; }
  .rh-track { padding: 24px 22px 4px; }
  .rh-book-widget__price { font-size: 31px; }
}

@media (max-width: 575px) {
  .rhwq-floats { left: 14px; bottom: 14px; }
  .rhwq-float { height: 48px; padding: 0 14px; }
  .rhwq-toasts { right: 12px; left: 12px; bottom: 12px; max-width: none; }
  .rh-steps { gap: 14px; }
  .rh-step__bar { display: none; }
  .rh-stat__num { font-size: 36px; }
  .rhwq-trust { padding: 20px; gap: 16px; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print — booking confirmations are frequently printed */
@media print {
  .th-header, .footer-wrapper, .rhwq-floats, .rhwq-toasts, .scroll-top,
  .breadcumb-wrapper, .preloader, .rh-noprint { display: none !important; }
  .rh-status-card, .rh-panel { box-shadow: none !important; border: 1px solid #ddd !important; }
  body { background: #fff !important; }
}
