/*================================================
LuxStay Theme - Pixel-Perfect Match
Fonts: Literata (headings) + Roboto (body)
Primary: #E7AD44 | Secondary: #e29a2d
=================================================*/
@import url('https://fonts.googleapis.com/css2?family=Literata:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --thim-primary: #E7AD44;
  --thim-primary-rgb: 231,173,68;
  --thim-primary2: #e29a2d;
  --thim-title: #2a2a2a;
  --thim-title-rgb: 42,42,42;
  --thim-body: #404040;
  --thim-border: #dddddd;
  --thim-white: #ffffff;
  --thim-black: #000000;
  --thim-footer-text: #929292;
  --thim-footer-link: #929292;
  --thim-footer-hover: #ffffff;
  --thim-radius-item: 10px;
  --thim-radius-big: 20px;
  --thim-radius-btn: 5px;
  /* Legacy aliases for blade templates using old names */
  --luxstay-gold: #E7AD44;
  --luxstay-gold-hover: #e29a2d;
  --luxstay-dark: #1a1a1a;
  --luxstay-heading: #2a2a2a;
  --luxstay-text: #404040;
  --luxstay-border: #dddddd;
  --luxstay-white: #ffffff;
  --luxstay-light-bg: #f9f9f9;
}

/* ===== GLOBAL RESET ===== */
html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
  color: var(--thim-body);
  background: var(--thim-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Literata', serif;
  color: var(--thim-title);
  font-weight: 700;
}

h1 { font-size: 48px; line-height: 1.25em; }
h2 { font-size: 36px; line-height: 1.25em; }
h3 { font-size: 28px; line-height: 1.25em; }
h4 { font-size: 24px; line-height: 1.25em; }
h5 { font-size: 20px; line-height: 1.25em; }
h6 { font-size: 18px; line-height: 1.25em; }

a { transition: all 0.3s ease; }
a:hover { text-decoration: none; }

/* ===== PRELOADER ===== */
.preloader { background: var(--thim-black); }
.sk-cube { background: var(--thim-primary) !important; }

/* ===== TOP HEADER - HIDE ===== */
.top-header { display: none !important; }

/* ===== NAVBAR / HEADER ===== */
.navbar-area {
  position: relative;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, background 0.4s ease;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #6b6b6b;
  color: black;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transform: translateY(0);
}

.navbar-area.is-sticky .main-nav {
  background-color: #6b6b6b;
  color: black;
}

.navbar-area.is-sticky.nav-hidden {
  transform: translateY(-100%);
}


.navbar-area .main-nav {
  background: transparent;
  position: inherit;
}

.navbar-area .main-nav .container {
  max-width: 1200px;
}

.navbar-area .navbar {
  padding: 0;
}

/* Logo - dark logo on white bg, white logo when sticky */
.navbar-area .navbar-brand img.logo-one {
  max-height: 50px;
  display: block;
}
.navbar-area .navbar-brand img.logo-two {
  max-height: 50px;
  display: none;
}
.navbar-area.is-sticky .navbar-brand img.logo-one {
  display: none;
}
.navbar-area.is-sticky .navbar-brand img.logo-two {
  display: block;
}

/* Nav links - dark text on white bg, white when sticky */
.navbar-area .main-nav nav .navbar-nav .nav-item a {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--thim-title);
  text-transform: uppercase;
  line-height: 1.6em;
  padding: 25px 15px;
  transition: color 0.3s ease;
}

.navbar-area.is-sticky .main-nav nav .navbar-nav .nav-item a {
  color: var(--thim-white);
}

.navbar-area .main-nav nav .navbar-nav .nav-item a:hover,
.navbar-area .main-nav nav .navbar-nav .nav-item a.active,
.navbar-area .main-nav nav .navbar-nav .nav-item:hover a,
.navbar-area .main-nav nav .navbar-nav .nav-item .active {
  color: var(--thim-primary) !important;
}

/* Dropdown */
.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu {
  border: none;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  border-top: 2px solid var(--thim-primary);
  border-radius: 0 0 var(--thim-radius-btn) var(--thim-radius-btn);
  background: var(--thim-white);
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  padding: 8px 20px;
  font-size: 14px;
  color: #4A4A4A !important;
}

.navbar-area .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
  color: var(--thim-primary) !important;
}

/* Navbar right info */
.navbar-right-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-right-info .nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--thim-title);
  font-weight: 500;
}

.navbar-area.is-sticky .navbar-right-info .nav-phone {
  color: var(--thim-white);
}

.navbar-right-info .nav-phone i {
  color: var(--thim-primary);
  font-size: 18px;
}

.navbar-right-info .nav-auth-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.navbar-right-info .nav-auth-links a {
  font-size: 13px;
  color: var(--thim-body);
  font-weight: 500;
}

.navbar-area.is-sticky .navbar-right-info .nav-auth-links a {
  color: rgba(255,255,255,0.8);
}

.navbar-right-info .nav-auth-links a:hover {
  color: var(--thim-primary);
}

/* Book Now button in header */
.btn-book-now,
a.btn-book-now {
  background: var(--thim-primary);
  color: var(--thim-white) !important;
  border: none;
  padding: 10px 25px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--thim-radius-btn);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-book-now:hover,
a.btn-book-now:hover {
  background: var(--thim-primary2);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(var(--thim-primary-rgb),0.3);
}

/* ===== HERO / SLIDER AREA ===== */
.hero-slider-area {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: absolute;
  bottom: 120px;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-content .container {
  max-width: 1200px;
}

.hero-content h1 {
  font-family: 'Literata', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--thim-white);
  line-height: 1.25em;
  margin-bottom: 15px;
  max-width: 600px;
}

.hero-content .hero-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}

.hero-content .hero-subtitle .banner-value b {
  color: var(--thim-primary);
  font-size: 20px;
}

.hero-content .btn-discover {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--thim-white);
  color: var(--thim-white);
  padding: 12px 35px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--thim-radius-btn);
  transition: all 0.3s ease;
}

.hero-content .btn-discover:hover {
  background: var(--thim-white);
  color: var(--thim-title);
}

/* ===== BOOKING SEARCH FORM (beside slider) ===== */
.hb-search-box {
  background: var(--thim-white);
  border-radius: var(--thim-radius-item);
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hb-form-table {
  list-style: none;
  margin: 0 0 15px 0;
  padding: 0;
}

.hb-form-field {
  margin: 0 0 20px 0;
}

.hb-form-field .label {
  display: block;
  font-family: 'Literata', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--thim-title);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hb-guest-row .label {
  display: block;
  font-family: 'Literata', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--thim-title);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hb-search-box h5 {
  font-family: 'Literata', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--thim-title);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hb-search-box .form-control {
  border: 1px solid var(--thim-border);
  border-radius: var(--thim-radius-btn);
  padding: 10px 15px;
  font-size: 14px;
  height: 45px;
  font-family: 'Roboto', sans-serif;
}

.hb-search-box .form-control:focus {
  border-color: var(--thim-primary);
  box-shadow: 0 0 0 2px rgba(var(--thim-primary-rgb),0.15);
}

.hb-search-box .btn-search {
  background: var(--thim-primary);
  color: var(--thim-white);
  border: none;
  padding: 12px 30px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--thim-radius-btn);
  width: 100%;
  height: 45px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hb-search-box .btn-search:hover {
  background: var(--thim-primary2);
}

/* ===== HERO CONTAINER ===== */
.hero-container {
  padding-top: 0;
}

/* ===== HERO + FLOATING SEARCH ===== */
.hero-search-section {
  position: relative;
  border-radius: var(--thim-radius-big);
  overflow: hidden;
  margin-bottom: 90px;
}

.hero-search-section .hero-bg {
  position: relative;
  width: 100%;
  min-height: 800px;
  background-size: cover;
  background-position: center;
}

.hero-search-section .hero-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.50) 100%);
}

.hero-search-section .hero-bg .hero-inner {
  position: absolute;
  bottom: 80px;
  left: 50px;
  z-index: 2;
  max-width: 550px;
}

.hero-search-section .hero-bg .hero-inner h1 {
  font-family: 'Literata', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--thim-white);
  line-height: 1.25em;
  margin-bottom: 15px;
}

.hero-search-section .hero-bg .hero-inner .hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 25px;
}

.hero-search-section .hero-bg .hero-inner .hero-subtitle b {
  color: var(--thim-primary);
  font-size: 20px;
}

.hero-search-section .hero-bg .hero-inner .btn-discover {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--thim-white);
  color: var(--thim-white);
  padding: 12px 35px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--thim-radius-btn);
  transition: all 0.3s ease;
}

.hero-search-section .hero-bg .hero-inner .btn-discover:hover {
  background: var(--thim-white);
  color: var(--thim-title);
}

/* Floating search form on right side of hero */
.hero-search-float {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 320px;
  z-index: 10;
}

.hero-search-float .hb-search-box {
  background: var(--thim-white);
  border-radius: var(--thim-radius-item);
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* ===== CATEGORY / SERVICES GRID ===== */
.category-group {
  margin-bottom: 90px;
}

.category-card {
  position: relative;
  border-radius: var(--thim-radius-item);
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.category-card .categories-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.category-card .categories-title {
  color: var(--thim-white);
  font-size: 18px;
  font-family: 'Literata', serif;
  font-weight: 600;
  margin-bottom: 5px;
}

.category-card .categories-des {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  border-radius: var(--thim-radius-big);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 60px;
  margin-bottom: 55px;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  border-radius: var(--thim-radius-big);
}

.promo-banner .promo-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.promo-banner .banner-title {
  font-family: 'Literata', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--thim-white);
  margin-bottom: 20px;
}

.promo-banner .banner-link {
  display: inline-block;
  border: 2px solid var(--thim-white);
  color: var(--thim-white);
  padding: 10px 30px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--thim-radius-btn);
  transition: all 0.3s ease;
}

.promo-banner .banner-link:hover {
  background: var(--thim-white);
  color: var(--thim-title);
}

/* ===== SECTION HEADINGS (LuxStay Style) ===== */
.section-heading {
  margin-bottom: 35px;
}

.section-heading .heading-primary {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--thim-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.section-heading .heading-secondary {
  font-family: 'Literata', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--thim-title);
  line-height: 1.25em;
}

.heading-button a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--thim-primary);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.heading-button a:hover {
  color: var(--thim-primary2);
}

/* Override old section-title for compatibility */
.section-title span.sp-color {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--thim-primary) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  font-family: 'Literata', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--thim-title);
  margin-top: 5px;
  line-height: 1.25em;
}

/* ===== ROOM CARDS (3-col grid, 370x300 images) ===== */
.rooms-grid .room-entry {
  margin-bottom: 30px;
}

.rooms-grid .room-entry .summary {
  background: var(--thim-white);
  border-radius: var(--thim-radius-item);
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.rooms-grid .room-entry .summary:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.rooms-grid .room-entry .media {
  position: relative;
  overflow: hidden;
}

.rooms-grid .room-entry .media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.rooms-grid .room-entry .summary:hover .media img {
  transform: scale(1.05);
}

.rooms-grid .room-entry .media .rating {
  position: absolute;
  top: 15px;
  right: 15px;
}

.rooms-grid .room-entry .media .star-rating {
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  border-radius: 3px;
}

.rooms-grid .room-entry .media .star-rating span {
  background: var(--thim-primary);
  height: 12px;
  display: block;
}

.rooms-grid .room-entry .content {
  padding: 20px 25px 25px;
}

.rooms-grid .room-entry .content .title {
  font-family: 'Literata', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.rooms-grid .room-entry .content .title a {
  color: var(--thim-title);
}

.rooms-grid .room-entry .content .title a:hover {
  color: var(--thim-primary);
}

.rooms-grid .room-entry .room-extra {
  display: flex;
  gap: 18px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.rooms-grid .room-entry .room-extra .service-item {
  font-size: 14px;
  color: var(--thim-body);
  display: flex;
  align-items: center;
  gap: 5px;
}

.rooms-grid .room-entry .room-extra .service-item i {
  color: var(--thim-primary);
  font-size: 16px;
}

.rooms-grid .room-entry .description {
  font-size: 14px;
  color: var(--thim-body);
  line-height: 1.6;
  margin-bottom: 15px;
}

.rooms-grid .room-entry .description p {
  margin: 0;
}

.rooms-grid .room-entry .price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.rooms-grid .room-entry .price .title-price {
  font-size: 14px;
  color: var(--thim-body);
}

.rooms-grid .room-entry .price .price_value {
  font-family: 'Literata', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--thim-primary);
}

.rooms-grid .room-entry .price .unit {
  font-size: 16px;
  color: var(--thim-title);
  font-weight: 400;
}

/* Old room-card compatibility */
.room-card {
  border: none;
  border-radius: var(--thim-radius-item);
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  background: var(--thim-white);
}

.room-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.room-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.room-card .content {
  padding: 20px 25px 25px;
}

.room-card .content h6,
.room-card .content h3 {
  font-family: 'Literata', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.room-card .content h6 a,
.room-card .content h3 a {
  color: var(--thim-title);
}

.room-card .content h6 a:hover,
.room-card .content h3 a:hover {
  color: var(--thim-primary);
}

.room-card .room-amenities {
  display: flex;
  gap: 15px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.room-card .room-amenities span {
  font-size: 14px;
  color: var(--thim-body);
  font-weight: 400;
}

.room-card .room-amenities i {
  color: var(--thim-primary);
  margin-right: 4px;
}

/* ===== TESTIMONIALS (image bg + floating white card) ===== */
.testimonial-bg-section {
  position: relative;
  border-radius: var(--thim-radius-big);
  overflow: hidden;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
}

.testimonial-bg-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.25) 100%);
}

.testimonial-card {
  position: relative;
  z-index: 2;
  background: var(--thim-white);
  border-radius: var(--thim-radius-item);
  padding: 40px 35px;
  max-width: 450px;
  width: 100%;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* Speech bubble pointer */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid var(--thim-white);
}

.testimonial-heading {
  font-family: 'Literata', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--thim-title);
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: 'Literata', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--thim-body);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-stars {
  margin-bottom: 12px;
}

.testimonial-stars i {
  color: var(--thim-primary);
  font-size: 18px;
  margin-right: 2px;
}

.testimonial-author {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--thim-title);
}

/* Dots inside the card */
.testimonial-card .owl-dots {
  text-align: right;
  margin-top: 5px;
}

.testimonial-card .owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 2px;
  transform: rotate(45deg);
}

.testimonial-card .owl-theme .owl-dots .owl-dot.active span {
  background: var(--thim-primary) !important;
}

/* ===== EVENTS SECTION ===== */
.events-section {
  margin-bottom: 90px;
}

.event-card {
  border-radius: var(--thim-radius-item);
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.event-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.event-card .event-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--thim-primary);
  color: var(--thim-white);
  padding: 8px 12px;
  border-radius: var(--thim-radius-btn);
  text-align: center;
  z-index: 2;
}

.event-card .event-date .day {
  font-size: 24px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.event-card .event-date .month {
  font-size: 12px;
  text-transform: uppercase;
}

.event-card .event-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  z-index: 2;
}

.event-card .event-info h5 {
  font-family: 'Literata', serif;
  color: var(--thim-white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.event-card .event-info .event-time {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.event-card .event-info .event-time i {
  color: var(--thim-primary);
  margin-right: 5px;
}

/* ===== BUTTONS ===== */
.default-btn {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-bg-one,
.btn-bg-three {
  background: var(--thim-primary) !important;
  color: var(--thim-white) !important;
  border-radius: var(--thim-radius-btn);
}

.btn-bg-one:hover,
.btn-bg-three:hover {
  background: var(--thim-primary2) !important;
}

.book-more-btn {
  color: var(--thim-primary) !important;
  font-weight: 600;
  font-size: 14px;
}

.book-more-btn:hover {
  color: var(--thim-primary2) !important;
}

/* ===== FOOTER ===== */
.footer-area,
.footer-area.footer-bg {
  background: var(--thim-black) !important;
}

/* Footer top - logo + newsletter row */
.footer-top-bar {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-top-bar .footer-logo img {
  max-height: 45px;
}

.footer-top-bar .footer-newsletter-inline {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-top-bar .footer-newsletter-inline h5 {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin: 0;
  white-space: nowrap;
}

.footer-top-bar .newsletter-form {
  display: flex;
}

.footer-top-bar .newsletter-form input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--thim-white);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--thim-radius-btn) 0 0 var(--thim-radius-btn);
  width: 250px;
}

.footer-top-bar .newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.footer-top-bar .newsletter-form button {
  background: var(--thim-primary);
  border: none;
  padding: 10px 20px;
  color: var(--thim-white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0 var(--thim-radius-btn) var(--thim-radius-btn) 0;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.footer-top-bar .newsletter-form button:hover {
  background: var(--thim-primary2);
}

/* Footer main columns */
.footer-main {
  padding: 50px 0 40px;
}

.footer-main .footer-col-desc {
  max-width: 410px;
}

.footer-main .footer-col-desc p {
  color: var(--thim-footer-text);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-main .social-link-footer {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-main .social-link-footer li a {
  color: var(--thim-footer-link);
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-main .social-link-footer li a:hover {
  color: var(--thim-primary);
}

.footer-main h3.widget-title {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--thim-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.footer-main .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-main .footer-menu li {
  margin-bottom: 10px;
}

.footer-main .footer-menu li a {
  color: var(--thim-footer-link);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-main .footer-menu li a:hover {
  color: var(--thim-white);
}

.footer-main .footer-contact p.info {
  color: var(--thim-footer-text);
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-main .footer-contact p.info i {
  color: var(--thim-primary);
  font-size: 18px;
  margin-top: 2px;
}

.footer-main .footer-contact p.info a {
  color: var(--thim-footer-link);
  transition: color 0.3s ease;
}

.footer-main .footer-contact p.info a:hover {
  color: var(--thim-white);
}

/* Copyright bar */
.copyright-area {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.copyright-area .copyright-text p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin: 0;
}

.copyright-area .copyright-text a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.copyright-area .copyright-text a:hover {
  color: var(--thim-primary);
}

.copyright-area .copyright-text .link_primary {
  color: var(--thim-primary);
}

.copyright-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}

.copyright-menu li a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: color 0.3s ease;
}

.copyright-menu li a:hover {
  color: var(--thim-primary);
}

/* Legacy footer compat */
.footer-top { padding-top: 0; padding-bottom: 0; }
.footer-widget h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--thim-white);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-widget p { color: var(--thim-footer-text); font-size: 14px; line-height: 1.8; }
.footer-widget .footer-logo img { max-height: 45px; filter: brightness(0) invert(1); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-list li a { color: var(--thim-footer-link); font-size: 14px; }
.footer-list li a:hover { color: var(--thim-white); }
.footer-list-contact { list-style: none; padding: 0; margin: 0; }
.footer-list-contact li { margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.footer-list-contact li i { color: var(--thim-primary); font-size: 18px; margin-top: 2px; }
.footer-list-contact li a { color: var(--thim-footer-link); font-size: 14px; }
.footer-list-contact li a:hover { color: var(--thim-white); }
.footer-newsletter h3 { color: rgba(255,255,255,0.7); font-family: 'Roboto', sans-serif; font-size: 14px; font-weight: 400; margin-bottom: 15px; }
.footer-newsletter .newsletter-input { display: flex; }
.footer-newsletter .newsletter-input input { flex:1; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--thim-white); padding: 10px 15px; font-size: 14px; border-radius: var(--thim-radius-btn) 0 0 var(--thim-radius-btn); }
.footer-newsletter .newsletter-input input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter .newsletter-input button { background: var(--thim-primary); border: none; padding: 10px 20px; color: var(--thim-white); border-radius: 0 var(--thim-radius-btn) var(--thim-radius-btn) 0; cursor: pointer; transition: background 0.3s ease; }
.footer-newsletter .newsletter-input button:hover { background: var(--thim-primary2); }
.copy-right-area { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.copy-right-text p { color: rgba(255,255,255,0.5); font-size: 13px; margin: 0; }

/* ===== INNER BANNER (sub-pages) ===== */
.inner-banner {
  position: relative;
  min-height: 381px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.inner-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}

.inner-banner .container { position: relative; z-index: 2; }

.inner-title { text-align: center; }

.inner-title h3 {
  font-family: 'Literata', serif;
  font-size: 48px;
  color: var(--thim-white);
  font-weight: 700;
}

.inner-title ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.inner-title ul li {
  font-size: 16px;
  color: var(--thim-white);
}

.inner-title ul li a {
  color: var(--thim-white);
}

.inner-title ul li a:hover {
  color: var(--thim-primary);
}

/* ===== ROOM DETAILS PAGE ===== */
.room-details-area {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Gallery */
.rd-gallery {
  margin-bottom: 30px;
}

.rd-slider .rd-slide-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--thim-radius-item);
}

.rd-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
}

.rd-slider .owl-nav button {
  pointer-events: all;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9) !important;
  border-radius: 50% !important;
  color: var(--thim-title) !important;
  font-size: 22px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.rd-slider .owl-nav button:hover {
  background: var(--thim-primary) !important;
  color: var(--thim-white) !important;
}

.rd-thumbs {
  margin-top: 10px;
}

.rd-thumb-item img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.rd-thumb-item:hover img,
.rd-thumbs .owl-item.active img {
  opacity: 1;
}

/* Room Info */
.rd-info {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.rd-title {
  font-family: 'Literata', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--thim-title);
  margin-bottom: 12px;
}

.rd-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.rd-meta-item {
  font-size: 14px;
  color: var(--thim-body);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rd-meta-item i {
  color: var(--thim-primary);
  font-size: 18px;
}

.rd-price-inline {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.rd-price-label {
  font-size: 14px;
  color: var(--thim-body);
}

.rd-price-value {
  font-family: 'Literata', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--thim-primary);
}

.rd-price-unit {
  font-size: 16px;
  color: var(--thim-title);
}

/* Section titles */
.rd-section-title {
  font-family: 'Literata', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--thim-title);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--thim-primary);
  display: inline-block;
}

.rd-description {
  margin-bottom: 35px;
}

.rd-desc-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--thim-body);
}

.rd-desc-content p {
  margin-bottom: 15px;
}

/* Amenities grid */
.rd-amenities {
  margin-bottom: 35px;
}

.rd-facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rd-facility-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--thim-body);
}

.rd-facility-item i {
  color: var(--thim-primary);
  font-size: 18px;
}

/* Detail boxes */
.rd-details-grid {
  margin-bottom: 35px;
}

.rd-detail-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: var(--thim-radius-btn);
  margin-bottom: 20px;
}

.rd-detail-box-title {
  font-family: 'Literata', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--thim-primary);
}

.rd-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rd-detail-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--thim-border);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.rd-detail-list li:last-child {
  border-bottom: none;
}

/* Reviews */
.rd-reviews {
  margin-bottom: 30px;
}

.rd-review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-weight: 600;
}

.rd-stars i {
  color: var(--thim-primary);
  font-size: 18px;
  cursor: pointer;
}

.rd-reviews .form-control {
  border: 1px solid var(--thim-border);
  border-radius: var(--thim-radius-btn);
  padding: 15px;
  font-size: 14px;
}

.rd-reviews .form-control:focus {
  border-color: var(--thim-primary);
  box-shadow: 0 0 0 2px rgba(var(--thim-primary-rgb),0.15);
}

.rd-submit-btn {
  background: var(--thim-primary);
  color: var(--thim-white);
  border: none;
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--thim-radius-btn);
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.rd-submit-btn:hover {
  background: var(--thim-primary2);
}

/* Sidebar */
.rd-sidebar {
  position: sticky;
  top: 100px;
}

.rd-booking-card {
  background: var(--thim-white);
  border-radius: var(--thim-radius-item);
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
  padding: 30px;
}

.rd-booking-header {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.rd-booking-label {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--thim-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.rd-booking-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.rd-bp-from {
  font-size: 13px;
  color: #999;
}

.rd-bp-amount {
  font-family: 'Literata', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--thim-primary);
}

.rd-bp-unit {
  font-size: 14px;
  color: #999;
}

.rd-form-group {
  margin-bottom: 18px;
}

.rd-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--thim-title);
  margin-bottom: 6px;
}

.rd-form-group .form-control {
  border: 1px solid var(--thim-border);
  border-radius: var(--thim-radius-btn);
  padding: 10px 15px;
  font-size: 14px;
  height: 45px;
  width: 100%;
}

.rd-form-group .form-control:focus {
  border-color: var(--thim-primary);
  box-shadow: 0 0 0 2px rgba(var(--thim-primary-rgb),0.15);
}

/* Price summary */
.rd-price-summary {
  background: #f9f9f9;
  border-radius: var(--thim-radius-btn);
  padding: 15px;
  margin-bottom: 20px;
}

.rd-price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--thim-body);
}

.rd-price-row + .rd-price-row {
  border-top: 1px solid #eee;
}

.rd-price-total {
  font-weight: 700;
  color: var(--thim-title);
  font-size: 16px;
}

.rd-book-btn {
  background: var(--thim-primary);
  color: var(--thim-white);
  border: none;
  padding: 14px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--thim-radius-btn);
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rd-book-btn:hover {
  background: var(--thim-primary2);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(var(--thim-primary-rgb),0.3);
}

/* Other rooms section */
.rd-other-rooms {
  background: #f9f9f9;
  padding: 60px 0;
}

/* Responsive */
@media (max-width: 767px) {
  .rd-slider .rd-slide-item img { height: 280px; }
  .rd-title { font-size: 24px; }
  .rd-facility-grid { grid-template-columns: repeat(2, 1fr); }
  .rd-sidebar { position: static; margin-top: 30px; }
}

/* ===== CONTACT PAGE ===== */
.contact-form .form-control {
  border: none;
  border-bottom: 1px solid var(--thim-border);
  border-radius: 0;
  padding: 12px 0;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.contact-form .form-control:focus {
  border-bottom-color: var(--thim-primary);
  box-shadow: none;
}

.contact-form .default-btn {
  background: var(--thim-primary) !important;
  color: var(--thim-white) !important;
  width: 100%;
  padding: 15px !important;
  margin-top: 10px;
}

/* ===== ROOM DETAILS ===== */
.room-details-area .side-bar-form {
  background: var(--thim-white);
  box-shadow: 0 3px 20px rgba(0,0,0,0.08);
  border-radius: var(--thim-radius-item);
  padding: 30px;
}

.room-details-area .side-bar-form h3 {
  font-family: 'Literata', serif;
}

.room-details-title h2 { font-family: 'Literata', serif; }
.room-details-title ul li b { color: var(--thim-primary); }
.side-bar-plan h3 { font-family: 'Literata', serif; }
.services-bar-widget .title {
  font-family: 'Literata', serif;
  border-bottom: 2px solid var(--thim-primary);
  padding-bottom: 10px;
}

/* ===== GALLERY ===== */
.single-gallery {
  border-radius: var(--thim-radius-btn);
  overflow: hidden;
  margin-bottom: 30px;
}

.single-gallery img { transition: all 0.3s ease; }
.single-gallery:hover img { transform: scale(1.05); }
.gallery-icon { background: rgba(var(--thim-primary-rgb),0.8) !important; }

/* ===== BLOG ===== */
.blog-item {
  border-radius: var(--thim-radius-item);
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  background: var(--thim-white);
}

.blog-item:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.blog-item .content h3 a { color: var(--thim-title); font-family: 'Literata', serif; }
.blog-item .content h3 a:hover { color: var(--thim-primary); }
.blog-item .content .read-btn,
.blog-card .blog-content .read-btn { color: var(--thim-primary); font-weight: 600; }
.blog-item .content .read-btn:hover,
.blog-card .blog-content .read-btn:hover { color: var(--thim-primary2); }

/* ===== PAGINATION ===== */
.pagination-area .page-link { color: var(--thim-title); }
.pagination-area .page-item.active .page-link { background: var(--thim-primary); border-color: var(--thim-primary); }

/* ===== RATING ===== */
.rating i, .review-ratting i { color: var(--thim-primary) !important; }

/* ===== NICE SELECT ===== */
.nice-select { border: 1px solid var(--thim-border); border-radius: var(--thim-radius-btn); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--thim-primary); border-radius: 4px; }

/* ===== BACK TO TOP ===== */
#back-to-top,
.go-top {
  background: var(--thim-primary) !important;
}

#toTop,
#toTop.top-btn {
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  z-index: 99;
}

/* Hide leftover dark-mode switch box */
.switch-box {
  display: none !important;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-search-section .hero-bg { min-height: 660px; }
  .hero-search-section .hero-bg .hero-inner h1 { font-size: 38px; }
  .hero-search-float { width: 280px; right: 30px; }
}

@media (max-width: 991px) {
  .hero-container { padding-top: 0; }
  .section-heading .heading-secondary,
  .section-title h2 { font-size: 28px; }
  .inner-title h3 { font-size: 36px; }
  .navbar-right-info { display: none; }
  .mobile-nav .logo img { max-height: 40px; }
  .footer-top-bar { flex-direction: column; align-items: flex-start; }
  .footer-top-bar .footer-newsletter-inline { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 778px) {
  .hero-search-section .hero-bg { min-height: 580px; }
  .hero-search-section .hero-bg .hero-inner { left: 30px; bottom: 60px; }
  .hero-search-section .hero-bg .hero-inner h1 { font-size: 32px; }
  .hero-search-float {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    margin-top: -60px;
    padding: 0 20px;
  }
  .category-card img { height: 200px; }
  .promo-banner { padding: 40px 20px; }
  .promo-banner .banner-title { font-size: 28px; }
  .testimonial-bg-section { min-height: 400px; padding: 30px 20px; }
  .testimonial-card { max-width: 100%; padding: 30px 25px; }
  .testimonial-quote { font-size: 15px; }
  .tour-images img { height: 200px !important; }
}

@media (max-width: 480px) {
  .hero-search-section .hero-bg { min-height: 480px; }
  .hero-search-section .hero-bg .hero-inner { left: 20px; right: 20px; bottom: 40px; }
  .hero-search-section .hero-bg .hero-inner h1 { font-size: 26px; }
  .hero-search-float { padding: 0 15px; margin-top: -40px; }
  .section-heading .heading-secondary,
  .section-title h2 { font-size: 24px; }
  .rooms-grid .room-entry .media img,
  .room-card img { height: 220px; }
  .footer-main { padding: 30px 0; }
  .tour-images img { height: 150px !important; }
}

/* ===== BOOKING FORM BAR ===== */
.booking-form-bar {
  background: #fff;
  padding: 25px 0;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  position: relative;
  z-index: 5;
}

.booking-bar-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--thim-title);
  display: block;
  margin-bottom: 5px;
}

.booking-bar-input {
  border: 1px solid var(--thim-border);
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 14px;
}

/* ===== BOOKING BAR MOBILE ===== */
@media (max-width: 767px) {
  /* Booking form bar */
  .booking-form-bar {
    padding: 15px 0;
  }
  .booking-bar-label {
    font-size: 10px;
    margin-bottom: 3px;
  }
  .booking-bar-input {
    font-size: 13px;
    padding: 6px 10px;
  }

  /* Room details sidebar booking card */
  .rd-booking-card {
    padding: 20px;
  }
  .rd-booking-header {
    margin-bottom: 18px;
    padding-bottom: 15px;
  }
  .rd-bp-amount {
    font-size: 26px;
  }
  .rd-form-group .form-control {
    height: 42px;
    font-size: 13px;
  }
  .rd-book-btn {
    padding: 12px;
    font-size: 13px;
  }

  /* Hero search float card */
  .hb-search-box {
    padding: 20px;
  }
  .hb-search-box .form-control {
    height: 42px;
  }

  /* Inner banner */
  .inner-banner {
    min-height: 200px !important;
  }
  .inner-title h3 {
    font-size: 28px !important;
  }

  /* Room cards grid */
  .rooms-grid .room-entry {
    margin-bottom: 20px;
  }
  .rooms-grid .room-entry .media img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .rd-booking-card {
    padding: 15px;
  }
  .rd-bp-amount {
    font-size: 22px;
  }
  .inner-title h3 {
    font-size: 22px !important;
  }
  .inner-banner {
    min-height: 160px !important;
  }
}

/* ===== MISC OVERRIDES ===== */
.section-bg { background: #f9f9f9 !important; }
.text-color { color: var(--thim-primary) !important; }

/* Banner area compat for old markup */
.banner-area {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 600px;
  height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.banner-area::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.05) 100%);
}

.banner-area .container { position: relative; z-index: 2; }
.banner-content { max-width: 600px; }

.banner-content h1 {
  font-family: 'Literata', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--thim-white);
  line-height: 1.25em;
  margin-bottom: 15px;
}

.banner-content .banner-btns { display: flex; gap: 15px; }

.banner-content .btn-discover {
  background: transparent;
  border: 2px solid var(--thim-white);
  color: var(--thim-white);
  padding: 12px 35px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--thim-radius-btn);
  transition: all 0.3s ease;
}

.banner-content .btn-discover:hover {
  background: var(--thim-white);
  color: var(--thim-title);
}

/* ===== OWL CAROUSEL OVERRIDES ===== */
.owl-theme .owl-dots .owl-dot.active span {
  background: var(--thim-primary) !important;
}
.owl-theme .owl-dots .owl-dot span {
  background: rgba(var(--thim-primary-rgb), 0.3);
}
.owl-theme .owl-nav [class*='owl-'] {
  background: var(--thim-primary) !important;
  color: var(--thim-white) !important;
}

/* ===== HEADING DESCRIPTION (About section) ===== */
.heading-des {
  color: var(--thim-body);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== ROOM SEARCH TEXT LINK (below search form) ===== */
.room-search-text-link {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--thim-border);
}

.room-search-text-link p {
  margin: 0;
  font-size: 14px;
  color: var(--thim-body);
}

.room-search-text-link a {
  color: var(--thim-title);
  font-weight: 700;
}

.room-search-text-link a:hover {
  color: var(--thim-primary);
}

/* ===== TOUR HEADING (About section with gold line) ===== */
.tour-heading .heading-primary.has-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tour-heading .heading-primary.has-line::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--thim-primary);
  flex-shrink: 0;
}

.heading-button-outlined a {
  display: inline-block;
  border: 1px solid var(--thim-title);
  color: var(--thim-title);
  padding: 10px 25px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.heading-button-outlined a:hover {
  background: var(--thim-title);
  color: var(--thim-white);
}

/* ===== HORIZONTAL BOOKING FORM (A Little Tour section) ===== */
.hb-booking-row {
  padding-top: 10px;
}

.hb-booking-fields {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.hb-field-col {
  flex: 1;
}

.hb-field-label {
  font-family: 'Literata', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--thim-title);
  margin-bottom: 10px;
  text-align: center;
}

/* Date box: rounded border, month on top, big day number */
.hb-date-box {
  border: 1px solid var(--thim-border);
  border-radius: var(--thim-radius-item);
  padding: 15px 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
  position: relative;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hb-date-box:hover {
  border-color: var(--thim-primary);
}

.hb-date-month {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--thim-body);
  margin-bottom: 2px;
}

.hb-date-day {
  display: block;
  font-family: 'Literata', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--thim-title);
  line-height: 1;
}

.hb-date-hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Guest box: - number + */
.hb-guest-box {
  border: 1px solid var(--thim-border);
  border-radius: var(--thim-radius-item);
  padding: 15px 10px;
  text-align: center;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.hb-guest-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #e0e0e0;
  color: var(--thim-title);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;
}

.hb-guest-btn:hover {
  background: var(--thim-primary);
  color: var(--thim-white);
}

.hb-guest-count {
  font-family: 'Literata', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--thim-title);
  line-height: 1;
  min-width: 30px;
}

/* Booking bottom row: phone left, button right */
.hb-booking-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--thim-border);
}

.hb-phone-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hb-phone-text {
  font-size: 14px;
  color: var(--thim-body);
}

.hb-phone-number {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--thim-title);
  font-weight: 700;
}

.hb-phone-number:hover {
  color: var(--thim-primary);
}

.hb-phone-icon {
  width: 40px;
  height: 40px;
  background: var(--thim-title);
  color: var(--thim-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hb-submit-btn {
  background: var(--thim-primary);
  color: var(--thim-white);
  border: none;
  padding: 14px 30px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--thim-radius-btn);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hb-submit-btn:hover {
  background: var(--thim-primary2);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(var(--thim-primary-rgb),0.3);
}

/* Responsive: keep fields in a row on mobile, stack bottom */
@media (max-width: 767px) {
  .hb-booking-row {
    padding-top: 0;
  }
  .hb-booking-fields {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 15px;
  }
  .hb-field-col {
    flex: 1;
    min-width: 0;
  }
  .hb-field-label {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .hb-date-box {
    min-height: 80px;
    padding: 10px 5px;
  }
  .hb-date-day {
    font-size: 32px;
  }
  .hb-date-month {
    font-size: 13px;
  }
  .hb-guest-box {
    min-height: 80px;
    padding: 10px 5px;
    flex-direction: column;
    gap: 5px;
  }
  .hb-guest-count {
    font-size: 32px;
  }
  .hb-guest-btn {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .hb-booking-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .hb-submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 25px;
  }
  .hb-phone-info {
    flex-direction: column;
    gap: 5px;
  }
  .hb-phone-text {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .hb-date-day,
  .hb-guest-count {
    font-size: 26px;
  }
  .hb-field-label {
    font-size: 11px;
  }
  .hb-date-box,
  .hb-guest-box {
    min-height: 70px;
    padding: 8px 4px;
  }
}

/* ===== PERSONALIZED OFFERS + EVENTS SECTION ===== */
.row-post-event {
  margin-bottom: 55px;
}

/* Personalized Offers - Blog Posts (single large card slider) */
.tp-list-posts .post-item {
  margin-bottom: 0;
}

.tp-list-posts .post-item .thumb {
  position: relative;
  border-radius: var(--thim-radius-item);
  overflow: hidden;
}

.tp-list-posts .post-item .thumb img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.tp-list-posts .post-item:hover .thumb img {
  transform: scale(1.05);
}

.tp-list-posts .post-item .tp-post-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.tp-list-posts .post-item .tp-post-info .post-title {
  font-family: 'Literata', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.tp-list-posts .post-item .tp-post-info .post-title a {
  color: var(--thim-white);
}

.tp-list-posts .post-item .tp-post-info .post-title a:hover {
  color: var(--thim-primary);
}

.tp-list-posts .post-item .tp-post-info .post-time {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.tp-list-posts .post-item .tp-post-info .post-time i {
  color: var(--thim-primary);
  margin-right: 5px;
}

/* Diamond-shaped dots for offers slider */
.tp-list-posts .owl-dots {
  margin-top: 15px !important;
  text-align: left;
}

.tp-list-posts .owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--thim-title);
  margin: 0 4px;
}

.tp-list-posts .owl-theme .owl-dots .owl-dot.active span {
  background: var(--thim-primary) !important;
}

/* Events List - bordered cards */
.thim-list-events .item-event {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: var(--thim-radius-item);
  margin-bottom: 15px;
  transition: box-shadow 0.3s ease;
}

.thim-list-events .item-event:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.thim-list-events .item-event .time-from {
  flex-shrink: 0;
  padding-right: 25px;
  border-right: 1px solid #eee;
}

.thim-list-events .item-event .time-from .date {
  font-family: 'Literata', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--thim-title);
  line-height: 1;
  text-align: center;
  min-width: 50px;
}

.thim-list-events .item-event .event-wrapper .title {
  font-family: 'Literata', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.thim-list-events .item-event .event-wrapper .title a {
  color: var(--thim-title);
}

.thim-list-events .item-event .event-wrapper .title a:hover {
  color: var(--thim-primary);
}

.thim-list-events .item-event .event-wrapper .event-time {
  font-size: 14px;
  color: var(--thim-body);
  display: flex;
  align-items: center;
  gap: 5px;
}

.thim-list-events .item-event .event-wrapper .event-time i {
  color: var(--thim-body);
  font-size: 15px;
}

/* ===== TOUR IMAGES ROW ===== */
.tour-images img {
  margin-bottom: 15px;
}

/* ===== BORDER RADIUS on thim-var ===== */
:root {
  --thim-border-radius-item: 10px;
}

/* =============================================
   ABOUT US PAGE
   ============================================= */
.about-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--thim-body);
  margin-top: 20px;
}

.about-images-pair {
  display: flex;
  gap: 15px;
}

.about-images-pair .about-img-item {
  flex: 1;
  border-radius: var(--thim-border-radius-item);
  overflow: hidden;
}

.about-images-pair .about-img-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.about-gallery-row {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.about-gallery-item {
  flex: 1;
  border-radius: var(--thim-border-radius-item);
  overflow: hidden;
}

.about-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Stats Diamond Section */
.about-stats-section {
  padding: 60px 0;
  background: #f9f7f4;
}

.about-stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.about-stat-diamond {
  width: 130px;
  height: 130px;
  background: var(--thim-primary);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stat-diamond .diamond-inner {
  transform: rotate(-45deg);
  text-align: center;
  color: #fff;
}

.about-stat-diamond .stat-number {
  display: block;
  font-family: 'Literata', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.about-stat-diamond .stat-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Features Grid */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 30px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--thim-body);
}

.about-feature-item i {
  color: var(--thim-primary);
  font-size: 18px;
}

/* Catalogue CTA */
.about-catalogue-section {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-catalogue-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.about-catalogue-section .container {
  position: relative;
  z-index: 1;
}

.catalogue-content {
  text-align: center;
}

.catalogue-content h2 {
  font-family: 'Literata', serif;
  font-size: 36px;
  color: #fff;
  font-weight: 600;
}

/* =============================================
   RESTAURANT PAGE
   ============================================= */

/* About Section */
.restaurant-about-section {
  padding: 90px 0;
}

.rest-main-img img {
  width: 100%;
  height: auto;
  border-radius: var(--thim-radius-item);
}

.rest-secondary-img img {
  width: 100%;
  height: auto;
  border-radius: var(--thim-radius-item);
}

.restaurant-text-link {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}

.restaurant-text-link i {
  font-size: 36px;
  color: var(--thim-primary);
}

.restaurant-text-link .text-right1 {
  font-size: 16px;
  color: var(--thim-body);
  line-height: 1.6;
}

.restaurant-text-link .text-right1 a {
  color: var(--thim-title);
  font-weight: 600;
  font-size: 20px;
}

.restaurant-text-link .text-right1 a:hover {
  color: var(--thim-primary);
}

.rest-contact-info {
  padding-left: 85px;
}

.thim-sociall .info {
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--thim-body);
}

.thim-sociall .info i {
  margin-right: 10px;
  color: var(--thim-primary);
}

.thim-sociall .info a {
  color: var(--thim-body);
}

.thim-sociall .info a:hover {
  color: var(--thim-primary);
}

.rest-private-dining {
  margin-top: 20px;
}

.rest-private-dining h4 {
  font-size: 16px;
  font-family: 'Literata', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* Ambience Section */
.restaurant-ambience-section {
  padding-bottom: 90px;
}

.ambience-header {
  max-width: 600px;
  margin: 0 auto 40px;
}

.ambience-header .heading-des {
  margin-top: 15px;
  margin-bottom: 20px;
}

.ambience-header .heading-button a {
  display: inline-block;
  background: var(--thim-primary);
  color: #fff;
  padding: 12px 35px;
  border-radius: var(--thim-radius-btn);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.ambience-header .heading-button a:hover {
  background: var(--thim-primary2);
}

/* Accordion Image Gallery */
.thim-gallery-images-sc {
  margin-top: 30px;
}

.thim-gallery-list-item.slider {
  display: flex;
  gap: 10px;
  height: 500px;
  overflow: hidden;
  border-radius: var(--thim-radius-big);
}

.thim-gallery-list-item .item {
  flex: 1;
  min-width: 60px;
  overflow: hidden;
  border-radius: var(--thim-radius-item);
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.thim-gallery-list-item .item.active {
  flex: 5;
}

.thim-gallery-list-item .item .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.thim-gallery-list-item .item:hover .image {
  transform: scale(1.05);
}

/* Menu Section (Dark) */
.restaurant-menu-section {
  background: #1a1a1a;
  padding: 80px 0;
}

.menu-section-heading {
  margin-bottom: 105px;
}

.menu-cuisine-row {
  margin-bottom: 60px;
}

.menu-food-img img {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: var(--thim-radius-item);
}

/* Our Menu Widget */
.our-menu-wrapper {
  padding: 10px 0;
}

.our-menu-title h4 {
  font-family: 'Literata', serif;
  font-size: 20px;
  color: var(--thim-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.our-menu-content .item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.our-menu-content .item:last-child {
  border-bottom: none;
}

.our-menu-content .item > img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.our-menu-content .item .item-content {
  flex: 1;
}

.our-menu-content .item .item-content h5 {
  font-family: 'Literata', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
}

.our-menu-content .item .desc p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

.our-menu-content .item .price {
  font-family: 'Literata', serif;
  font-size: 20px;
  color: var(--thim-primary);
  font-weight: 600;
  white-space: nowrap;
}

/* Bottom Carousel */
.restaurant-carousel-section {
  overflow: hidden;
}

.restaurant-carousel .item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* =============================================
   EVENTS PAGE
   ============================================= */
.events-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.events-tab {
  background: none;
  border: none;
  font-family: 'Literata', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--thim-body);
  padding: 10px 5px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.events-tab:hover,
.events-tab.active {
  color: var(--thim-primary);
  border-bottom-color: var(--thim-primary);
}

.events-tab-content {
  display: none;
}

.events-tab-content.active {
  display: block;
}

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

.event-card {
  border-radius: var(--thim-border-radius-item);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card-image {
  height: 220px;
  overflow: hidden;
}

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

.event-card-content {
  padding: 25px;
  position: relative;
}

.event-card-date {
  position: absolute;
  top: -25px;
  left: 25px;
  width: 50px;
  height: 50px;
  background: var(--thim-primary);
  color: #fff;
  font-family: 'Literata', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.event-card-title {
  font-family: 'Literata', serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.event-card-title a {
  color: var(--luxstay-heading);
  text-decoration: none;
}

.event-card-title a:hover {
  color: var(--thim-primary);
}

.event-card-time {
  font-size: 13px;
  color: var(--thim-body);
  display: flex;
  align-items: center;
  gap: 5px;
}

.events-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--thim-body);
  font-size: 16px;
}

/* Event Detail */
.event-detail-image {
  border-radius: var(--thim-border-radius-item);
  overflow: hidden;
  margin-bottom: 30px;
}

.event-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.event-detail-body h4 {
  font-family: 'Literata', serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--luxstay-heading);
}

.event-detail-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--thim-body);
  margin-bottom: 30px;
}

.event-detail-sidebar {
  position: sticky;
  top: 100px;
}

.event-info-box {
  background: #f9f7f4;
  border-radius: var(--thim-border-radius-item);
  padding: 30px;
}

.event-info-row {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--luxstay-border);
}

.event-info-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.event-info-heading {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-info-row p:last-child {
  font-size: 15px;
  color: var(--thim-body);
  margin: 0;
}

/* =============================================
   CONTACT PAGE (enhanced)
   ============================================= */
.contact-section .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--thim-primary) !important;
}

/* =============================================
   RESPONSIVE - NEW PAGES
   ============================================= */
@media (max-width: 991px) {
  .about-images-pair .about-img-item img {
    height: 220px;
  }
  .about-stats-row {
    gap: 30px;
  }
  .about-stat-diamond {
    width: 100px;
    height: 100px;
  }
  .about-stat-diamond .stat-number {
    font-size: 28px;
  }
  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rest-contact-info {
    padding-left: 0;
    margin-top: 30px;
  }
  .thim-gallery-list-item.slider {
    height: 350px;
  }
  .menu-food-img img {
    max-width: 350px;
  }
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .about-images-pair {
    flex-direction: column;
  }
  .about-gallery-row {
    flex-direction: column;
  }
  .about-stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .about-stat-diamond {
    width: 90px;
    height: 90px;
  }
  .about-stat-diamond .stat-number {
    font-size: 24px;
  }
  .about-features-grid {
    grid-template-columns: 1fr;
  }
  .thim-gallery-list-item.slider {
    height: 250px;
    flex-direction: column;
  }
  .restaurant-about-section {
    padding: 30px 0;
  }
  .restaurant-ambience-section {
    padding: 30px 0;
  }
  .ambience-header .heading-des {
    font-size: 14px;
  }
  .rest-contact-info {
    padding-left: 0;
  }
  /* Mobile ambience slider dots */
  .thim-gallery-mobile .owl-dots {
    text-align: center;
    margin-top: 15px;
  }
  .thim-gallery-mobile .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
  }
  .thim-gallery-mobile .owl-theme .owl-dots .owl-dot.active span {
    background: var(--thim-primary);
  }
  /* Menu section mobile */
  .restaurant-menu-section {
    padding: 40px 0;
  }
  .menu-section-heading {
    margin-bottom: 40px;
  }
  .menu-cuisine-row {
    margin-bottom: 30px;
  }
  .menu-food-img {
    margin-bottom: 20px;
  }
  .menu-food-img img {
    max-width: 100%;
  }
  .our-menu-content .item > img {
    width: 55px;
    height: 55px;
  }
  .our-menu-content .item .item-content h5 {
    font-size: 15px;
  }
  .our-menu-content .item .price {
    font-size: 16px;
  }
  .our-menu-content .item {
    gap: 10px;
    padding: 10px 0;
  }
  /* Restaurant carousel mobile */
  .restaurant-carousel .item img {
    height: 200px;
  }
  /* Rest about content */
  .rest-about-content-wrap {
    max-width: 100% !important;
  }
  .rest-secondary-img img {
    width: 100%;
    margin-bottom: 15px;
  }
  .rest-private-dining h4 {
    font-size: 16px;
  }
  .events-grid {
    grid-template-columns: 1fr;
  }
  .events-tabs {
    gap: 15px;
  }
  .events-tab {
    font-size: 14px;
  }
}

/* ============================
   CHECKOUT PAGE
   ============================ */
.checkout-section {
  background: #f9f9f9;
}
.checkout-billing-card,
.checkout-summary-card {
  background: #fff;
  border-radius: var(--thim-radius-item);
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.checkout-card-title {
  font-family: 'Literata', serif;
  font-size: 22px;
  color: var(--thim-title);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--thim-border);
}
.checkout-form-group {
  margin-bottom: 20px;
}
.checkout-form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--thim-title);
  margin-bottom: 6px;
  display: block;
}
.checkout-form-group label span {
  color: #dc3545;
}
.checkout-form-group .form-control {
  border: 1px solid var(--thim-border);
  border-radius: var(--thim-radius-btn);
  padding: 10px 14px;
  font-size: 15px;
  transition: border-color 0.3s;
}
.checkout-form-group .form-control:focus {
  border-color: var(--thim-primary);
  box-shadow: 0 0 0 3px rgba(var(--thim-primary-rgb), 0.1);
}
.checkout-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkout-payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid var(--thim-border);
  border-radius: var(--thim-radius-btn);
  cursor: pointer;
  transition: border-color 0.3s;
}
.checkout-payment-option:hover,
.checkout-payment-option:has(input:checked) {
  border-color: var(--thim-primary);
}
.checkout-payment-option input[type="radio"] {
  accent-color: var(--thim-primary);
}
.checkout-radio-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.checkout-radio-label i {
  font-size: 18px;
  color: var(--thim-primary);
  margin-right: 6px;
}
.checkout-radio-label small {
  font-size: 12px;
  color: #999;
}
.checkout-room-info {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--thim-border);
}
.checkout-room-info img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--thim-radius-btn);
}
.checkout-room-detail h4 {
  font-family: 'Literata', serif;
  font-size: 16px;
  margin-bottom: 5px;
}
.checkout-room-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--thim-primary);
}
.checkout-room-price span {
  font-size: 13px;
  font-weight: 400;
  color: #999;
}
.checkout-summary-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}
.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
.checkout-summary-row span {
  color: #666;
}
.checkout-summary-row strong {
  color: var(--thim-title);
}
.checkout-discount strong {
  color: #28a745;
}
.checkout-total {
  padding-top: 12px;
  border-top: 1px solid var(--thim-border);
  font-size: 18px;
}
.checkout-total strong {
  color: var(--thim-primary);
  font-size: 20px;
}
.checkout-submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--thim-primary);
  color: #fff;
  border: none;
  border-radius: var(--thim-radius-btn);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Literata', serif;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
}
.checkout-submit-btn:hover {
  background: var(--thim-primary2);
}

/* Event Ticket Box */
.event-ticket-box {
  background: #fff;
  border-radius: var(--thim-radius-item);
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.event-ticket-box .form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--thim-title);
  margin-bottom: 6px;
}
.event-ticket-box .form-control {
  border: 1px solid var(--thim-border);
  border-radius: var(--thim-radius-btn);
  padding: 8px 12px;
}

@media (max-width: 991px) {
  .checkout-summary-card {
    margin-top: 30px;
  }
}

/* ============================
   USER DASHBOARD
   ============================ */
.ud-section {
  background: #f9f9f9;
}

/* Sidebar */
.ud-sidebar {
  background: #fff;
  border-radius: var(--thim-radius-item);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.ud-sidebar-avatar {
  text-align: center;
  padding: 30px 20px 20px;
  border-bottom: 1px solid var(--thim-border);
}
.ud-sidebar-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--thim-primary);
  margin-bottom: 12px;
}
.ud-sidebar-avatar h4 {
  font-family: 'Literata', serif;
  font-size: 18px;
  color: var(--thim-title);
  margin-bottom: 4px;
}
.ud-sidebar-avatar p {
  font-size: 13px;
  color: #999;
  margin: 0;
}
.ud-sidebar-nav {
  display: flex;
  flex-direction: column;
}
.ud-sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: var(--thim-body);
  font-size: 15px;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}
.ud-sidebar-nav a:hover,
.ud-sidebar-nav a.active {
  background: rgba(var(--thim-primary-rgb), 0.06);
  color: var(--thim-primary);
  border-left-color: var(--thim-primary);
}
.ud-sidebar-nav a i {
  font-size: 20px;
}

/* Content */
.ud-content {
  background: #fff;
  border-radius: var(--thim-radius-item);
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.ud-content-title {
  font-family: 'Literata', serif;
  font-size: 22px;
  color: var(--thim-title);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--thim-border);
}

/* Stats */
.ud-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ud-stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: var(--thim-radius-item);
  border: 1px solid var(--thim-border);
}
.ud-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.ud-stat-info h2 {
  font-family: 'Literata', serif;
  font-size: 28px;
  color: var(--thim-title);
  margin: 0;
  line-height: 1;
}
.ud-stat-info p {
  font-size: 13px;
  color: #999;
  margin: 4px 0 0;
}

/* Table */
.ud-table-wrap {
  overflow-x: auto;
}
.ud-table {
  width: 100%;
  border-collapse: collapse;
}
.ud-table thead th {
  background: #fafafa;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--thim-title);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--thim-border);
  white-space: nowrap;
}
.ud-table tbody td {
  padding: 12px 14px;
  font-size: 14px;
  color: var(--thim-body);
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}
.ud-table tbody tr:hover {
  background: #fafafa;
}

/* Badges */
.ud-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.ud-badge-success {
  background: rgba(40,167,69,0.1);
  color: #28a745;
}
.ud-badge-pending {
  background: rgba(255,193,7,0.1);
  color: #e0a800;
}
.ud-badge-info {
  background: rgba(var(--thim-primary-rgb),0.1);
  color: var(--thim-primary);
}
.ud-badge-warning {
  background: rgba(255,152,0,0.1);
  color: #ff9800;
}

/* Buttons */
.ud-btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--thim-primary);
  color: #fff;
  border: none;
  border-radius: var(--thim-radius-btn);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}
.ud-btn-primary:hover {
  background: var(--thim-primary2);
  color: #fff;
}
.ud-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: #6c757d;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.ud-btn-sm:hover {
  opacity: 0.85;
  color: #fff;
}

/* Form Groups */
.ud-form-group {
  margin-bottom: 20px;
}
.ud-form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--thim-title);
  margin-bottom: 6px;
  display: block;
}
.ud-form-group label span {
  color: #dc3545;
}
.ud-form-group .form-control {
  border: 1px solid var(--thim-border);
  border-radius: var(--thim-radius-btn);
  padding: 10px 14px;
  font-size: 15px;
  transition: border-color 0.3s;
}
.ud-form-group .form-control:focus {
  border-color: var(--thim-primary);
  box-shadow: 0 0 0 3px rgba(var(--thim-primary-rgb), 0.1);
}

/* Receipt Form */
.ud-receipt-form {
  padding: 10px 0;
}

@media (max-width: 991px) {
  .ud-sidebar {
    margin-bottom: 30px;
  }
  .ud-stats-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .ud-content {
    padding: 20px 15px;
  }
  .ud-stat-card {
    padding: 15px;
  }
}

/* ===== Terms & Conditions Page ===== */
.terms-conditions-area {
  background: var(--thim-white);
}
.terms-content.content-term-condition {
  max-width: 850px;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
  color: var(--thim-body);
  line-height: 1.7;
}
.terms-content.content-term-condition h4 {
  font-family: 'Literata', serif;
  color: var(--thim-title);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}
.terms-content.content-term-condition ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
.terms-content.content-term-condition ul li {
  margin-bottom: 10px;
}

/* ===== Wellness & Fitness Page ===== */
.wellness-section {
  background: var(--thim-white);
}
.wellness-img-sm img,
.wellness-img-lg img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.wellness-img-sm img {
  height: 388px;
}
.wellness-img-lg img {
  height: 388px;
}
.wellness-content .heading-secondary {
  font-family: 'Literata', serif;
  color: var(--thim-title);
  font-weight: 600;
  margin-bottom: 20px;
}
.wellness-content p {
  color: var(--thim-body);
  line-height: 1.7;
}
.wellness-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}
.wellness-contact i {
  font-size: 24px;
  color: var(--thim-primary);
}
.wellness-contact span {
  font-weight: 500;
  color: var(--thim-title);
}
.wellness-contact a {
  color: var(--thim-primary);
  font-weight: 600;
  text-decoration: none;
}
.wellness-contact a:hover {
  color: var(--thim-primary2);
}
.mb-70 {
  margin-bottom: 70px;
}
.mb-90 {
  margin-bottom: 90px;
}
.wellness-content .heading-des {
  color: var(--thim-body);
  line-height: 1.7;
}
.wellness-content .heading-des p {
  margin-bottom: 5px;
}
.featured-packages-section .heading-secondary {
  font-family: 'Literata', serif;
  color: var(--thim-title);
  font-weight: 600;
}
.package-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--thim-white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.package-card:hover {
  transform: translateY(-5px);
}
.package-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.package-content {
  padding: 20px;
}
.package-content h5 {
  font-family: 'Literata', serif;
  font-weight: 600;
  color: var(--thim-title);
  margin-bottom: 10px;
}
.package-content p {
  color: var(--thim-body);
  font-size: 14px;
  margin-bottom: 15px;
}
.package-price .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--thim-primary);
}
.package-price .sub-price {
  color: var(--thim-body);
  font-size: 14px;
}

/* ===== Error Pages (404 / 403) ===== */
.luxstay-error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.luxstay-error-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 0;
}
.luxstay-error-content h1 {
  font-family: 'Literata', serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--thim-primary);
  line-height: 1;
  margin-bottom: 20px;
}
.luxstay-error-content h2 {
  font-family: 'Literata', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--thim-title);
  margin-bottom: 20px;
}
.luxstay-error-content p {
  color: var(--thim-body);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.luxstay-error-content .btn-back-home {
  display: inline-block;
  background: var(--thim-primary);
  color: var(--thim-white);
  padding: 12px 40px;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.3s;
}
.luxstay-error-content .btn-back-home:hover {
  background: var(--thim-primary2);
  color: var(--thim-white);
}

@media (max-width: 768px) {
  .wellness-img-sm img,
  .wellness-img-lg img {
    height: 250px;
    margin-bottom: 20px;
  }
  .wellness-content {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 20px;
  }
  .luxstay-error-content h1 {
    font-size: 80px;
  }
  .luxstay-error-content h2 {
    font-size: 24px;
  }
}
