/* 
  FLUTTER HOTELS & RESORTS MASTER STYLESHEET (LUXURY EDITION)
  Color Palette:
  Primary Blue Accent: #5F86C1 | Hover Blue: #486ea8 | Dark Blue Gradient: #3c659e
  Dark Luxury Slate: #162234 | Surface Card: #ffffff
  Light Ice Background: #f4f7fc | Text Dark: #1e293b
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-blue: #5F86C1;
  --blue-hover: #486ea8;
  --dark-bg: #162234;
  --dark-surface: #202d42;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --light-bg: #f4f7fc;
  --font-serif: 'Cinzel', 'Marcellus', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 6px 20px rgba(95, 134, 193, 0.08);
  --shadow-lg: 0 18px 40px rgba(22, 34, 52, 0.14);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .serif-font {
  font-family: var(--font-serif);
  letter-spacing: 0.5px;
  color: var(--dark-bg);
}

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

ul {
  list-style: none;
}

/* ==========================================================================
   TOP HEADER & GLASS MAIN NAVBAR
   ========================================================================== */
.top-header {
  background: #0f172a;
  color: #94a3b8;
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header-info {
  display: flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
  font-weight: 500;
  white-space: nowrap;
}

.top-info-item i {
  color: var(--primary-blue);
  font-size: 12px;
}

.top-info-item a {
  color: #ffffff;
  font-weight: 600;
}

.top-info-item a:hover {
  color: var(--primary-blue);
}

.top-info-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 11px;
}

.top-header-links {
  display: flex;
  gap: 15px;
  align-items: center;
  white-space: nowrap;
}

.top-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-right: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.top-social-icons a {
  color: #cbd5e1;
  font-size: 13px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.top-social-icons a:hover {
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.top-admin-badge {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-link-btn {
  font-size: 12px;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.top-link-btn:hover {
  color: var(--primary-blue);
}

/* MAIN NAVBAR GLASSMORPHISM */
.main-navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 4px 20px rgba(95, 134, 193, 0.12);
  border-bottom: 2px solid rgba(95, 134, 193, 0.18);
}

.main-navbar .navbar-inner {
  height: 86px;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 66px;
  max-height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.brand-logo-img:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-item-link {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  padding: 6px 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav-item-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary-blue), #3c659e);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-item-link:hover,
.nav-item-link.active {
  color: var(--primary-blue);
}

.nav-item-link:hover::after,
.nav-item-link.active::after {
  width: 100%;
}

/* NAVBAR DROPDOWN MENU */
.nav-item-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-menu-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  border: 1px solid #e2e8f0;
  padding: 10px 0;
  z-index: 2500;
  transition: all 0.25s ease;
}

.nav-item-dropdown:hover .dropdown-menu-box,
.nav-item-dropdown.open .dropdown-menu-box {
  display: block;
}

.dropdown-item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  color: #1e293b;
  font-size: 14.5px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.dropdown-item-link:hover {
  background: #f0f7ff;
  color: var(--primary-blue);
}

.dropdown-item-link i {
  color: var(--primary-blue);
  font-size: 13px;
  width: 18px;
  text-align: center;
}

/* PULSING HEADER BOOK NOW BUTTON */
.header-booking-btn {
  padding: 11px 26px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #5F86C1 0%, #3e68a3 100%) !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 6px 20px rgba(95, 134, 193, 0.35) !important;
  margin-left: 10px;
  position: relative;
  overflow: hidden;
  transition: var(--transition) !important;
}

.pulsing-btn {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(95, 134, 193, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(95, 134, 193, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 134, 193, 0); }
}

.header-booking-btn:hover {
  background: linear-gradient(135deg, #486ea8 0%, #2f5287 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(95, 134, 193, 0.45) !important;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark-bg);
  cursor: pointer;
  padding: 6px;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 1900;
  transition: opacity 0.3s ease;
}

/* ==========================================================================
   GLOBAL BUTTONS & FLOATING WHATSAPP
   ========================================================================== */
.btn-gold, .btn-blue {
  background: linear-gradient(135deg, #5F86C1 0%, #3e68a3 100%);
  color: #ffffff !important;
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(95, 134, 193, 0.35);
  transition: var(--transition);
}

.btn-gold:hover, .btn-blue:hover {
  background: linear-gradient(135deg, #486ea8 0%, #2f5287 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(95, 134, 193, 0.45);
}

.btn-outline-blue {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 11px 26px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  background: #ffffff;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-blue:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

.btn-outline-white {
  border: 2px solid #ffffff;
  color: #ffffff !important;
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  display: inline-block;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--dark-bg) !important;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
  z-index: 2000;
  transition: all 0.3s ease;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.65);
}

/* ==========================================================================
   HERO VIDEO HEADER SECTION
   ========================================================================== */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  max-height: 960px;
  overflow: hidden;
  background: var(--dark-bg);
  display: flex;
  align-items: flex-end;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: top center;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 2;
}

.hero-slider-section {
  position: relative;
  height: 85vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--dark-bg);
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 120px;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.hero-slide-content {
  max-width: 880px;
  color: #ffffff;
  transform: translateY(20px);
  transition: transform 0.8s ease;
}

.hero-slide.active .hero-slide-content {
  transform: translateY(0);
}

.hero-subtitle-badge {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  background: rgba(95, 134, 193, 0.35);
  display: inline-block;
  padding: 6px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.hero-title-text {
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  font-family: var(--font-serif);
}

.hero-desc-text {
  font-size: 17.5px;
  color: #f1f5f9;
  max-width: 740px;
  margin: 0 auto 35px;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  background: rgba(26, 38, 56, 0.65);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.slider-prev { left: 25px; }
.slider-next { right: 25px; }

.slider-dots {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active, .slider-dots .dot:hover {
  background: var(--primary-blue);
  width: 34px;
  border-radius: 10px;
}

/* ==========================================================================
   SEARCH & BOOKING BAR
   ========================================================================== */
.booking-search-wrapper {
  margin-top: -60px;
  position: relative;
  z-index: 100;
}

.booking-search-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(95, 134, 193, 0.18);
  border: 2px solid rgba(95, 134, 193, 0.25);
}

.search-form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 14px;
  align-items: end;
}

.child-age-popover-card {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 260px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.22);
  border: 1.5px solid #cbd5e1;
  padding: 16px;
  z-index: 1000;
}

.child-age-popover-overlay {
  display: none;
}

.form-group-custom label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group-custom label i {
  color: var(--primary-blue);
  margin-right: 6px;
}

.form-control-custom {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  background-color: #ffffff;
}

.form-control-custom:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(95, 134, 193, 0.2);
}

.search-btn-submit {
  border-radius: 8px !important;
  font-size: 14px !important;
}

/* ==========================================================================
   TRUST STRIP & SECTIONS
   ========================================================================== */
.trust-strip {
  background: #ffffff;
  border-bottom: 1.5px solid #e2e8f0;
  padding: 28px 0;
  box-shadow: var(--shadow-sm);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item i {
  font-size: 24px;
  color: var(--primary-blue);
  width: 48px;
  height: 48px;
  background: rgba(95, 134, 193, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item span {
  font-size: 13.5px;
  font-weight: 500;
  color: #334155;
  line-height: 1.4;
}

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

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-subtitle {
  color: var(--primary-blue);
  font-size: 13.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 40px;
  color: var(--dark-bg);
  margin-bottom: 15px;
}

.title-line-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-blue);
  margin: 0 auto;
  border-radius: 2px;
}

/* ==========================================================================
   NEW ULTRA-LUXURY ROOM CARDS (PLANS DESIGN)
   ========================================================================== */
.luxury-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 35px;
}

.luxury-room-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.luxury-room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(95, 134, 193, 0.22);
  border-color: var(--primary-blue);
}

.room-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.room-img-container .room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-room-card:hover .room-img-container .room-img {
  transform: scale(1.08);
}

.room-tag-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(22, 34, 52, 0.88);
  color: var(--primary-blue);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(95, 134, 193, 0.4);
}

.room-price-overlay {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(135deg, #5F86C1 0%, #3e68a3 100%);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: baseline;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.room-price-overlay .price-val {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
}

.room-price-overlay .price-unit {
  font-size: 12px;
  font-weight: 500;
  color: #e0f2fe;
}

.room-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.luxury-room-title {
  font-size: 22px;
  color: var(--dark-bg);
  margin-bottom: 14px;
  font-weight: 700;
}

.specs-pills-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.spec-pill {
  background: #f0f4fa;
  color: var(--dark-bg);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #e2e8f0;
}

.spec-pill i {
  color: var(--primary-blue);
}

.luxury-room-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.amenities-quick-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #475569;
  padding: 12px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 22px;
}

.amenities-quick-bar span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.amenities-quick-bar i {
  color: var(--primary-blue);
}

.room-action-footer {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-card-outline {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  border: 1.5px solid var(--primary-blue);
  color: var(--primary-blue);
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-card-outline:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

.btn-card-primary {
  flex: 1;
  text-align: center;
  padding: 10px 14px;
  background: linear-gradient(135deg, #5F86C1 0%, #3e68a3 100%);
  color: #ffffff !important;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(95, 134, 193, 0.3);
  transition: var(--transition);
}

.btn-card-primary:hover {
  background: linear-gradient(135deg, #486ea8 0%, #2f5287 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(95, 134, 193, 0.45);
}

/* ==========================================================================
   PARALLAX & REVIEWS
   ========================================================================== */
.parallax-banner {
  background: linear-gradient(rgba(22, 34, 52, 0.84), rgba(22, 34, 52, 0.84)), url('/images/hotel-img-3.jpg') center/cover fixed;
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.parallax-banner h2 {
  color: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-blue);
  border-top: 1px solid #f1f5f9;
}

.review-stars {
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  color: #475569;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--dark-bg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: var(--dark-bg);
  color: #cbd5e1;
  padding-top: 80px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--primary-blue);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--primary-blue);
  padding-left: 5px;
}

.footer-bottom {
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   100% MOBILE RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: block;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
  }

  .mobile-menu-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-bg);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .mobile-menu-close {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #475569;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }

  .mobile-menu-close:hover {
    background: #ef4444;
    color: #ffffff;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 25px 30px;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
    z-index: 2100;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 12px;
    overflow-y: auto;
    pointer-events: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-nav-overlay.active {
    display: block;
  }

  .nav-item-link {
    width: 100%;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-bg);
    padding: 12px 10px;
    border-bottom: 1px solid #f1f5f9;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-item-link:hover, .nav-item-link.active {
    background: #f0f7ff;
    color: var(--primary-blue);
  }

  .nav-item-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-item-dropdown .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    cursor: pointer;
  }

  .dropdown-menu-box {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding: 5px 0 5px 12px;
    background: #f8fafc;
    border-radius: 8px;
    margin-top: 4px;
    width: 100%;
  }

  .nav-item-dropdown.open .dropdown-menu-box {
    display: block;
  }

  .header-booking-btn {
    margin-left: 0;
    margin-top: 22px !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    height: 52px !important;
    padding: 14px 28px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 25px rgba(95, 134, 193, 0.45) !important;
  }

  body.menu-open .whatsapp-float-btn {
    display: none !important;
  }

  .hero-title-text {
    font-size: 38px;
  }

  .hero-desc-text {
    font-size: 15px;
  }

  .search-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .responsive-two-col {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

.mobile-social-bar {
  display: none;
  gap: 15px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
  width: 100%;
  justify-content: flex-start;
}

.mobile-social-bar a {
  font-size: 16px;
  color: var(--primary-blue);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-social-bar a:hover {
  background: var(--primary-blue);
  color: #ffffff;
}

@media (max-width: 992px) {
  .mobile-social-bar {
    display: flex;
  }
}

@media (max-width: 768px) {
  .top-header {
    display: none;
  }

  .navbar-inner {
    height: 74px;
  }

  .brand-logo-img {
    height: 56px;
  }

  .hero-video-section {
    position: relative !important;
    width: 100% !important;
    min-height: 60vh !important;
    height: auto !important;
    max-height: none !important;
    overflow: hidden !important;
    background: #0f172a !important;
    padding: 0 !important;
  }

  .hero-video-bg {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    z-index: 1 !important;
    background: #0f172a !important;
  }

  .hero-video-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.4) 40%, rgba(15, 23, 42, 0.85) 100%) !important;
    z-index: 2 !important;
  }

  .hero-title-text {
    display: none !important;
  }

  .page-hero-header {
    min-height: 320px !important;
    padding: 100px 15px 45px !important;
    text-align: center !important;
  }

  .page-hero-header h1 {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }

  .page-hero-header p {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }

  .responsive-two-col {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .booking-search-wrapper {
    margin-top: -25px !important;
    padding: 0 12px !important;
  }

  .booking-search-card {
    padding: 18px 16px !important;
    border-radius: 14px !important;
  }

  .search-form-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .search-col-full-mobile {
    grid-column: span 2 !important;
  }

  .child-age-popover-card {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 88% !important;
    max-width: 320px !important;
    z-index: 9999 !important;
  }

  .child-age-popover-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(15, 23, 42, 0.45) !important;
    backdrop-filter: blur(3px) !important;
    z-index: 9998 !important;
  }

  .section-padding {
    padding: 40px 0 !important;
  }

  .section-title {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }

  .luxury-rooms-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .whatsapp-float-btn {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-subtitle-badge {
    font-size: 12px;
    padding: 4px 14px;
  }

  .hero-title-text {
    font-size: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn-main, .hero-btn-sec {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   FULL-WIDTH OFFERS TOP SLIDER (Desktop & Mobile Fullscreen View)
   ========================================================================== */
.offers-fullslider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0f172a;
}

.offers-fullslider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.offer-fullslide-item {
  min-width: 100%;
  position: relative;
  min-height: 560px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 0 80px;
}

.offer-fullslide-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 850px;
}

.offer-slide-badge {
  background: #0284c7;
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.offer-slide-price-pill {
  background: #f59e0b;
  color: #0f172a;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.offer-slide-title {
  font-size: 44px;
  color: #ffffff;
  font-family: 'Cinzel', serif;
  margin-bottom: 16px;
  line-height: 1.25;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.offer-slide-subtitle {
  color: #e2e8f0;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 720px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.offer-slide-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.offers-slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offers-slider-nav-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-50%) scale(1.1);
}

.offers-slider-nav-btn.prev-btn {
  left: 25px;
}

.offers-slider-nav-btn.next-btn {
  right: 25px;
}

/* Mobile Responsive Slider Adjustments */
@media (max-width: 768px) {
  .offer-fullslide-item {
    min-height: 82vh !important;
    height: 82vh !important;
    padding: 60px 0 !important;
    align-items: center !important;
  }

  .offer-slide-title {
    font-size: 26px !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }

  .offer-slide-subtitle {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 22px !important;
  }

  .offers-slider-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .offers-slider-nav-btn.prev-btn {
    left: 10px;
  }

  .offers-slider-nav-btn.next-btn {
    right: 10px;
  }

  .offer-slide-actions {
    flex-direction: column;
    width: 100%;
  }

  .offer-slide-actions a {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   GLOBAL PAGE HERO HEADER (Desktop & 100% Mobile Fullscreen Responsiveness)
   ========================================================================== */
.page-hero-header {
  position: relative;
  width: 100%;
  padding: 100px 20px 80px;
  text-align: center;
  color: #ffffff;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

@media (max-width: 768px) {
  .hero-slider-section {
    height: 85vh !important;
    min-height: 85vh !important;
  }

  .offers-fullslider-wrapper,
  .offer-fullslide-item {
    height: 85vh !important;
    min-height: 85vh !important;
  }

  .page-hero-header {
    min-height: 82vh !important;
    height: 82vh !important;
    padding: 70px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background-position: center center !important;
  }

  .page-hero-header h1 {
    font-size: 28px !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
    font-family: 'Cinzel', serif !important;
  }

  .page-hero-header p {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    max-width: 100% !important;
    color: #e2e8f0 !important;
  }

  .page-hero-header .btn-blue,
  .page-hero-header .btn-outline-blue {
    width: 100% !important;
    margin-top: 12px !important;
    text-align: center !important;
    display: block !important;
  }
}

/* Unique Luxury Perks Strip Container */
.perks-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
}

.perk-pill-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.perk-pill-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border-color: #cbd5e1;
}

.perk-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.perk-text-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.perk-text-group strong {
  font-size: 12.5px;
  color: #1e293b;
  line-height: 1.2;
}

.perk-text-group span {
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

@media (max-width: 1100px) {
  .perks-grid-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
  }
  .perks-grid-wrapper::-webkit-scrollbar {
    display: none;
  }
  .perk-pill-card {
    flex: 0 0 200px;
    scroll-snap-align: start;
  }
}

