/**
 * AEON CLUB INDIA - Main Stylesheet
 * 
 * Luxury hotel & club design system featuring Montez cursive accents,
 * Sora typography, royal blue accents, glassmorphism, responsive cards,
 * interactive sliders, lightbox, and modern amenities widgets.
 */

@import url('https://fonts.googleapis.com/css2?family=Montez&family=Sora:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@3.34.0/dist/tabler-icons.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* ==========================================================================
   CSS Custom Properties (Variables)
   ========================================================================== */
:root {
  --primary-color: #a8905b;
  --primary-hover: #ccb178;
  --primary-gradient: linear-gradient(135deg, #ccb178 0%, #2563eb 100%);
  --primary-light: #eff3ff;
  --primary-glow: rgba(0, 8, 202, 0.25);
  
  --secondary-bg: #f5f7fb;
  --secondary-dark: #e9eef7;
  
  --dark-color: #161920;
  --dark-bg: #11141a;
  --dark-surface: #1a1e27;
  --dark-border: #262c38;
  
  --text-main: #555e6d;
  --text-heading: #161920;
  --text-muted: #7c8798;
  
  --white: #ffffff;
  --border-color: #e5e9f2;
  --border-light: rgba(255, 255, 255, 0.15);
  
  --gold-star: #ffb703;
  --gold-accent: #fb8500;
  --success: #10b981;
  --danger: #ef4444;

  --font-main: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Montez', cursive;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 50px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 8, 202, 0.08);
  --shadow-lg: 0 18px 45px rgba(22, 25, 32, 0.12);
  --shadow-hover: 0 22px 50px rgba(0, 8, 202, 0.16);
  
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   Base & Reset Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-main);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h1, .h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2, .h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3, .h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4, .h4 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h5, .h5 { font-size: 1.15rem; }
h6, .h6 { font-size: 1rem; }

p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
}

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

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

.ff-montez {
  font-family: var(--font-accent) !important;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Utility Classes & Dividers
   ========================================================================== */
.divider {
  height: 90px;
}

.divider-sm {
  height: 45px;
}

.divider-lg {
  height: 120px;
}

.bg-secondary {
  background-color: var(--secondary-bg) !important;
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

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

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

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

.rounded-3 {
  border-radius: var(--radius-md) !important;
}

.rounded-4 {
  border-radius: var(--radius-lg) !important;
}

.shadow-card {
  box-shadow: var(--shadow-md);
}

/* Section Headings */
.section-heading {
  margin-bottom: 1rem;
}

.section-heading .sub-title {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.section-heading .sub-title.text-white {
  color: #93c5fd !important;
}

.section-heading.text-center .sub-title {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.03em;
}

.section-heading.text-white h2,
.section-heading h2.text-white {
  color: var(--white) !important;
}

.section-heading p {
  color: var(--text-main);
  font-size: 1.05rem;
}

.section-heading p.text-white {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(0, 8, 202, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 8, 202, 0.35);
}

.btn-light {
  background-color: var(--white);
  color: var(--text-heading);
  border-color: var(--border-color);
}

.btn-light:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

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

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

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--dark-color);
  border-color: var(--white);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.badge.bg-primary {
  background-color: var(--primary-color) !important;
  color: var(--white);
}

.badge.bg-gold {
  background-color: var(--gold-star) !important;
  color: var(--dark-color);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.header-area.sticky-header {
  position: fixed;
  top: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
}

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

.navbar-brand .site-logo {
  height: 60px;
  max-width: 250px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.navbar-brand .site-logo.logo-dark {
  display: none;
}

.navbar-brand .site-logo.logo-light {
  display: block;
}

.header-area.sticky-header .navbar-brand .site-logo.logo-dark {
  display: block;
}

.header-area.sticky-header .navbar-brand .site-logo.logo-light {
  display: none;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.navbar-nav > li {
  position: relative;
}

.navbar-nav > li > a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.navbar-nav > li > a:hover,
.navbar-nav > li.active > a {
  color: #60a5fa;
}

.header-area.sticky-header .navbar-nav > li > a {
  color: var(--text-heading);
}

.header-area.sticky-header .navbar-nav > li > a:hover,
.header-area.sticky-header .navbar-nav > li.active > a {
  color: var(--primary-color);
}

/* Dropdown Navigation */
.hotel-dd {
  position: relative;
}

.hotel-dd-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1rem 0;
  margin-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1050;
  border: 1px solid var(--border-color);
}

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

.hotel-dd-menu li a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--text-heading);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.hotel-dd-menu li a:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding-left: 1.85rem;
}

/* Header Utilities */
.header-navigation {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-search-btn button {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.offcanvas-icon {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.header-search-btn button:hover,
.offcanvas-icon:hover {
  color: #60a5fa;
  transform: scale(1.1);
}

.header-area.sticky-header .header-search-btn button,
.header-area.sticky-header .offcanvas-icon {
  color: var(--text-heading);
}

.header-area.sticky-header .header-search-btn button:hover,
.header-area.sticky-header .offcanvas-icon:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.header-area.sticky-header .navbar-toggler {
  color: var(--text-heading);
}

/* ==========================================================================
   Right Side Offcanvas Drawer
   ========================================================================== */
.right-side-hotel-offcanvas {
  position: fixed;
  top: 0;
  right: -450px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background-color: var(--white);
  z-index: 2000;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
  padding: 2.5rem 2rem;
}

.right-side-hotel-offcanvas.active {
  right: 0;
}

.offcanvas-backdrop-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1990;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.offcanvas-backdrop-custom.active {
  opacity: 1;
  visibility: visible;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.offcanvas-header .btn-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-heading);
}

/* Search Form Popup Overlay */
.search-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(17, 20, 26, 0.94);
  backdrop-filter: blur(8px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.search-bg-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-form-popup {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 650px;
  z-index: 3010;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  text-align: center;
}

.search-form-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.search-form-popup .close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.search-form-popup .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  padding: 1.25rem 2rem;
  color: var(--white);
  font-size: 1.2rem;
}

.search-form-popup .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 180px 0 120px;
  overflow: hidden;
}

.hero-slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
  transform: scale(1.08);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 20, 26, 0.75) 0%, rgba(17, 20, 26, 0.55) 50%, rgba(17, 20, 26, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 100%;
}

.hero-content .ff-montez {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ccb178;
  margin-bottom: 0.5rem;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 750px;
}

/* Hero Social Floating Icons */
.social-icons-vertical {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-icons-vertical a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icons-vertical a:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateX(4px);
}

/* Background Slider Navigation */
.hero-slider-nav {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

/* ==========================================================================
   Hotel Booking Search Bar Component
   ========================================================================== */
.hero-search-form {
  background-color: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  margin-top: 2rem;
  position: relative;
  z-index: 10;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.75rem;
  border-right: 1px solid var(--border-color);
}

.hero-search-form .col-12:last-child .search-item {
  border-right: none;
}

.search-item .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.search-item .form-group {
  flex-grow: 1;
}

.search-item .form-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.search-item select,
.search-item input {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  background: transparent;
  cursor: pointer;
}

/* ==========================================================================
   About Company Section (3-Image Composition)
   ========================================================================== */
.about-company-section {
  position: relative;
}

.about-thumbnail {
  position: relative;
  padding-bottom: 30px;
}

.about-thumbnail .first-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 75%;
  box-shadow: var(--shadow-lg);
}

.about-thumbnail .first-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: var(--transition);
}

.about-thumbnail .second-img {
  position: absolute;
  top: 25%;
  right: 0;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

.about-thumbnail .second-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.about-thumbnail .third-img {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}

.about-thumbnail .third-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Video Play Button */
.play-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(0, 8, 202, 0.6);
  animation: pulse-ring 2s infinite;
  z-index: 5;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(0, 8, 202, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(0, 8, 202, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 8, 202, 0); }
}

.about-card-sm {
  background-color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.about-card-sm:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.about-card-sm .icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-card-sm h4, .about-card-sm .h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   Room Cards & Hotel Catalog
   ========================================================================== */
.hotel-card,
.room-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hotel-card:hover,
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.hotel-img,
.room-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.hotel-img img,
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hotel-card:hover .hotel-img img,
.room-card:hover .room-img img {
  transform: scale(1.08);
}

.hotel-badge,
.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.hotel-favorite {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-heading);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
}

.hotel-favorite:hover {
  background-color: #ef4444;
  color: var(--white);
}

.hotel-body,
.room-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hotel-ratings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.hotel-ratings .ratings {
  color: var(--gold-star);
  font-size: 0.9rem;
}

.hotel-ratings .rating-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hotel-title,
.room-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.hotel-title a,
.room-title a {
  color: var(--text-heading);
  transition: var(--transition);
}

.hotel-title a:hover,
.room-title a:hover {
  color: var(--primary-color);
}

.hotel-location {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.hotel-meta,
.room-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
  color: var(--text-main);
  padding: 0.75rem 0;
  border-top: 1px dashed var(--border-color);
  border-bottom: 1px dashed var(--border-color);
  margin-bottom: 1.25rem;
}

.hotel-meta li,
.room-meta li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hotel-meta .line,
.room-meta .line {
  width: 1px;
  height: 14px;
  background-color: var(--border-color);
}

.hotel-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hotel-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-color);
}

.hotel-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ==========================================================================
   Deals & Countdown Section
   ========================================================================== */
.deals-section {
  background-color: var(--dark-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: var(--white);
}

.countdown-timer-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
}

.countdown-clock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.countdown-clock li {
  background-color: var(--white);
  color: var(--text-heading);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.countdown-clock li span:first-child {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.countdown-clock li span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.35rem;
}

/* ==========================================================================
   Testimonial Slider Component
   ========================================================================== */
.testimonial-section {
  position: relative;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.25;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.testimonial-author h4 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Gallery Grid & Lightbox
   ========================================================================== */
.gallery-filter-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.gallery-filter-btn {
  background-color: var(--white);
  color: var(--text-heading);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 8, 202, 0.25);
}

.gallery-item-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 280px;
}

.gallery-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 8, 202, 0.2) 0%, rgba(22, 25, 32, 0.9) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.gallery-item-card:hover img {
  transform: scale(1.1);
}

.gallery-item-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.gallery-zoom-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(17, 20, 26, 0.95);
  backdrop-filter: blur(8px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 2rem;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ==========================================================================
   FAQ Accordions
   ========================================================================== */
.faq-accordion-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-accordion-item.active {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.faq-accordion-header {
  padding: 1.25rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: var(--transition);
}

.faq-accordion-header .icon-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--secondary-bg);
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion-item.active .faq-accordion-header .icon-toggle {
  transform: rotate(180deg);
  background-color: var(--primary-color);
  color: var(--white);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 1.75rem;
}

.faq-accordion-item.active .faq-accordion-body {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   Breadcrumb Section (Inner Pages)
   ========================================================================== */
.breadcrumb-section {
  position: relative;
  background-color: var(--dark-bg);
  background-size: cover;
  background-position: center;
  padding: 160px 0 90px;
  color: var(--white);
  text-align: center;
}

.breadcrumb-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 20, 26, 0.85) 0%, rgba(17, 20, 26, 0.7) 100%);
  z-index: 1;
}

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

.breadcrumb-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-list a {
  color: var(--white);
}

.breadcrumb-list a:hover {
  color: #93c5fd;
}

/* ==========================================================================
   Contact Form & Map
   ========================================================================== */
.contact-card-box {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.contact-info-widget {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background-color: var(--secondary-bg);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.contact-info-widget .icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.form-control,
.form-select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text-heading);
  background-color: var(--white);
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--primary-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-wrapper {
  background-color: var(--dark-bg);
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
  padding-top: 80px;
}

.footer-top-bar {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  margin-bottom: 60px;
}

.ft-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ft-item .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ft-item .h4,
.ft-item h4 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.ft-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-widget h5 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-widget h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2.5px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-nav li a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-gallery-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.footer-gallery-feed a {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 72px;
  display: block;
}

.footer-gallery-feed a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.footer-gallery-feed a:hover img {
  transform: scale(1.15);
}

.copyright-wrapper {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ==========================================================================
   Scroll Top & Cookie Banner
   ========================================================================== */
.hotel-scrolltop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 8, 202, 0.35);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.hotel-scrolltop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hotel-scrolltop:hover {
  background-color: var(--primary-hover);
  transform: translateY(-4px);
}

.cookiealert {
  position: fixed;
  bottom: 25px;
  left: 25px;
  max-width: 420px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 2500;
  border: 1px solid var(--border-color);
  display: none;
  animation: slideUp 0.5s ease-out;
}

.cookiealert.show {
  display: block;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
  .navbar-nav {
    gap: 1.2rem;
  }
}

@media (max-width: 991px) {
  .navbar-toggler {
    display: block;
  }
  
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -340px;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    padding: 1.75rem 1.5rem;
    z-index: 3100 !important;
    transition: left 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
    display: block !important;
  }
  
  .navbar-collapse.show {
    left: 0;
  }
  
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  
  .navbar-nav > li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }
  
  .navbar-nav > li > a {
    color: var(--text-heading);
    padding: 1rem 0;
    justify-content: space-between;
  }
  
  .hotel-dd-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    background-color: var(--secondary-bg);
    padding: 0.5rem;
    margin-top: 0;
  }
  
  .hotel-dd.open .hotel-dd-menu {
    display: block;
  }
  
  .header-navigation {
    display: none;
  }
  
  .search-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
  }
  
  .social-icons-vertical {
    display: none;
  }
  
  .about-thumbnail {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 140px 0 80px;
    min-height: auto;
  }
  
  .countdown-clock {
    gap: 0.5rem;
  }
  
  .countdown-clock li {
    min-width: 65px;
    padding: 0.75rem 0.5rem;
  }
  
  .countdown-clock li span:first-child {
    font-size: 1.4rem;
  }
  
  .footer-top-bar {
    padding: 1.5rem 1rem;
  }
  
  .right-side-hotel-offcanvas {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .btn {
    padding: 0.75rem 1.4rem;
  }
  
  .gallery-filter-nav {
    gap: 0.4rem;
  }
  
  .gallery-filter-btn {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }
}
