/*
Theme Name: Blue Nile Premium
Theme URI: https://hotelbluenile.com/
Author: Antigravity Team
Author URI: https://hotelbluenile.com/
Description: Premium responsive 4-Star hotel theme for Hotel Blue Nile.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bluenile
*/

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- VARIABLES --- */
:root {
  --bg-primary: #FDFDFB;     /* Pure Alabaster Silk */
  --bg-secondary: #FAF8F2;   /* Soft Ivory Linen */
  --gold-500: #FF9F00;       /* Glowing Golden Amber */
  --gold-200: #FFE082;       /* Bright Gold Accent */
  --border-light: #EFEBE4;   /* Delicate Cream Hairline */
  --navy-900: #181B20;       /* Midnight Charcoal Slate */
  --navy-700: #23272F;       /* Slate Charcoal */
  --ink: #3A3D42;            /* Warm Slate Ink Body Text */
  --white: #FFFFFF;
  
  /* Glowing luxury warm gold/amber gradient */
  --accent-gold-start: #FFD043;
  --accent-gold-end: #FF9F00;
  --gold-gradient: linear-gradient(135deg, var(--accent-gold-start) 0%, var(--accent-gold-end) 100%);
  --accent-burgundy: #5A1827;
  --accent-terracotta: #C05A46;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
  
  /* Soft, modern radius scale */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  /* Three-dimensional depth shadows */
  --shadow-sm: 0 4px 15px rgba(24, 27, 32, 0.05);
  --shadow-md: 0 12px 36px rgba(197, 168, 128, 0.16);
  --shadow-lg: 0 25px 60px rgba(24, 27, 32, 0.12);
  
  --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- BASE & RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--ink);
  font-size: 0.925rem;
  font-weight: 450;
  line-height: 1.85;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: var(--header-height, 125px) !important; /* Dynamic global header height offset */
}

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

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

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--navy-700);
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  margin-bottom: 0.75rem;
}

/* --- REUSABLE UTILITIES & LAYOUT --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border-light);
  background-color: var(--bg-primary);
  color: var(--ink);
}

/* Explicit text color safety overrides inside sections to prevent global white overrides */
.section p,
.section li,
.section span:not(.eyebrow):not(.room-card-badge):not(.room-card-badge-gold):not(.blog-card-category) {
  color: var(--ink);
}

.section h1,
.section h2,
.section h3,
.section h4,
.section h5,
.section h6 {
  color: var(--navy-700);
}

.section table {
  color: var(--ink);
}

.section table th {
  color: var(--navy-700);
}

.section.alt-bg {
  background-color: var(--bg-secondary);
}

.section.dark-bg {
  background-color: var(--navy-900);
  color: var(--bg-primary);
}

.section.dark-bg h2, 
.section.dark-bg h3,
.section.dark-bg p {
  color: var(--bg-primary);
}

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

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 4px;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 0.85rem;
  display: block;
}

.badge-4star {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background-color: transparent;
  color: var(--gold-500);
  border: 1px solid var(--gold-500);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Premium Diamond Ornamental Divider */
.gold-divider {
  width: 140px;
  height: 12px;
  margin: 1.25rem auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gold-divider::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-500) 50%, transparent 100%);
}

.gold-divider::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--gold-500);
  transform: rotate(45deg);
  border: 1px solid var(--bg-primary);
}

.section.dark-bg .gold-divider::after {
  border-color: var(--navy-900);
}

.section.alt-bg .gold-divider::after {
  border-color: var(--bg-secondary);
}

.gold-divider.left {
  margin-left: 0;
  justify-content: flex-start;
}

.gold-divider.left::before {
  background: linear-gradient(90deg, var(--gold-500) 0%, transparent 100%);
}

.gold-divider.left::after {
  left: 0;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  background: transparent;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 44px;
  min-width: 44px;
}

.btn:active {
  transform: translateY(1px) !important;
}

.btn:focus-visible {
  outline: 3px solid var(--accent-gold-start);
  outline-offset: 2px;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--navy-700) 0%, #2A3B4F 100%);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  border-color: var(--navy-700);
}

.btn-primary:hover {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Accent Button (like Book Now / Gold) */
.btn-accent {
  background: var(--gold-gradient) !important;
  color: var(--white) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 18px rgba(255, 159, 0, 0.35) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
  font-weight: 700 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-accent:hover {
  background: linear-gradient(135deg, #FFE082 0%, #FFB300 100%) !important;
  color: var(--white) !important;
  border-color: transparent !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(255, 159, 0, 0.55) !important;
}

/* Secondary / Ghost Button */
.btn-outline {
  border: 1.5px solid var(--navy-700);
  color: var(--navy-700);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy-700);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-gold {
  border: 1.5px solid var(--accent-gold-start);
  color: var(--accent-gold-start);
  background: transparent;
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Small Button helper */
.btn-sm {
  padding: 10px 22px !important;
  font-size: 0.7rem !important;
  min-height: 38px !important;
  min-width: auto !important;
  border-radius: var(--radius-sm) !important;
  letter-spacing: 1.5px !important;
}

/* WhatsApp Submission CTA style */
.btn-whatsapp {
  border: 1.5px solid #25D366;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  font-weight: 700;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: transparent;
  color: #25D366;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.22);
}

/* --- GLOBAL HEADER --- */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000 !important;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.utility-bar {
  background-color: var(--bg-secondary);
  color: rgba(28, 39, 53, 0.7);
  font-size: 0.7rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  letter-spacing: 1.5px;
  font-weight: 500;
  transition: var(--transition-normal);
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1360px;
  padding: 0 2.5rem;
}

.utility-contacts {
  display: flex;
  gap: 2rem;
}

.utility-contacts a:hover {
  color: var(--gold-500);
}

.main-header {
  padding: 0.6rem 0;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-scrolled .utility-bar {
  margin-top: -38px;
}

.header-scrolled .main-header {
  padding: 0.4rem 0;
  box-shadow: 0 4px 20px rgba(28, 39, 53, 0.05);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1360px;
  padding: 0 2.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  margin-right: 3rem;
  flex-shrink: 0;
}

.logo-link img {
  height: 60px;
  width: auto;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.header-scrolled .logo-link img {
  height: 46px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 2.2px;
  color: var(--navy-700);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  transition: color 0.25s ease;
  white-space: nowrap;
}

/* Active Class & Hover Styles */
.nav-link:hover, 
.nav-item.active .nav-link,
.nav-link.active {
  color: var(--gold-500) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background-color: var(--gold-500);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

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

/* Premium Navigation CTA Button */
.nav-cta-btn {
  padding: 10px 22px !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  min-height: 38px !important;
  min-width: auto !important;
  border-radius: 6px !important;
  margin-left: 0.75rem;
  box-shadow: 0 6px 16px rgba(28, 39, 53, 0.06) !important;
  letter-spacing: 1.5px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease !important;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 20px rgba(28, 39, 53, 0.12) !important;
}

/* --- PREMIUM ROOMS MEGA-MENU --- */
.nav-item.has-megamenu {
  position: static; /* Allows mega menu to stretch full width of header container */
}

.megamenu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 2px solid var(--gold-500);
  box-shadow: var(--shadow-lg);
  padding: 3rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-normal);
  z-index: 999;
}

.nav-item.has-megamenu:hover .megamenu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.megamenu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.megamenu-col {
  border-right: 1px solid var(--border-light);
  padding-right: 2.5rem;
  display: flex;
  flex-direction: column;
}

.megamenu-col:last-child {
  border-right: none;
  padding-right: 0;
}

.megamenu-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-light);
}

.megamenu-col h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy-700);
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.megamenu-desc {
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.megamenu-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-700);
  border-top: 1px dashed var(--border-light);
  padding-top: 0.75rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.megamenu-price {
  color: var(--gold-500);
}

.megamenu-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--navy-700);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
}

.megamenu-link:hover {
  color: var(--gold-500);
  transform: translateX(3px);
}

/* --- PREVIEW DROPDOWN FOR "HOTEL IN KANNUR" --- */
.nav-item.has-previewdropdown {
  position: relative; /* Keeps it dropdown relative to nav item */
}

.previewdropdown-panel {
  position: absolute;
  top: 100%;
  right: 0;
  width: 420px;
  background-color: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 2px solid var(--gold-500);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition-normal);
  z-index: 999;
  border-radius: 0 0 8px 8px;
  text-align: left;
}

.nav-item.has-previewdropdown:hover .previewdropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.previewdropdown-panel h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy-700);
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.previewdropdown-panel p {
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.previewdropdown-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.previewdropdown-chip {
  font-size: 0.65rem;
  font-weight: 700;
  background-color: var(--bg-secondary);
  color: var(--navy-700);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  border: 1px solid var(--border-light);
  text-transform: uppercase;
}

.previewdropdown-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.previewdropdown-learn {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-700);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.previewdropdown-learn:hover {
  color: var(--gold-500);
  transform: translateX(3px);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--navy-700);
  cursor: pointer;
}

/* --- CONTEXTUAL ROOM SUB-NAVIGATION SWITCHER --- */
.room-switcher-bar {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
  position: sticky;
  top: 105px; /* Sits directly beneath header scroll offset */
  z-index: 99;
  transition: var(--transition-normal);
}

.header-scrolled + .room-switcher-bar {
  top: 73px;
}

.room-switcher-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-switcher-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-500);
}

.room-switcher-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.room-switcher-link {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy-700);
  display: flex;
  align-items: center;
}

.room-switcher-link:hover {
  color: var(--gold-500);
}

.room-switcher-link.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- HERO BANNER & SLIDER --- */
.hero-slider-container {
  height: 85vh; /* Re-balanced spacing to look minimal */
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.02);
  transition: transform 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.1); /* Ken Burns effect */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(12,22,35,0.45) 0%, rgba(12,22,35,0.2) 50%, rgba(12,22,35,0.65) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  max-width: 850px;
  padding: 0 2rem;
  margin-top: 60px;
}

.hero-content h1,
.hero-content h2 {
  color: var(--white) !important;
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content p {
  font-size: clamp(0.8rem, 1.8vw, 1.05rem);
  color: var(--gold-200) !important;
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
  opacity: 0;
}

.hero-content .eyebrow {
  color: var(--gold-500) !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.hero-content .btn {
  font-size: 0.75rem !important;
  letter-spacing: 2px !important;
  padding: 14px 32px !important;
}

.hero-content .btn-outline-gold {
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  background-color: transparent !important;
}

.hero-content .btn-outline-gold:hover {
  background-color: var(--white) !important;
  color: var(--navy-900) !important;
  border-color: var(--white) !important;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15) !important;
}

.hero-content .btn-group {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  opacity: 0;
}

.hero-content .btn-group .btn {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hero-nav {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  gap: 1rem;
}

.hero-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: rgba(28,39,53,0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-nav-dot.active {
  background-color: var(--gold-500);
  transform: scale(1.3);
}

/* Page Banner */
.page-banner {
  height: auto !important;
  min-height: 240px !important;
  padding-top: 130px !important;
  padding-bottom: 60px !important;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--white);
  text-align: center !important;
  border-bottom: 1px solid var(--border-light);
  box-sizing: border-box !important;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 22, 35, 0.45);
  z-index: 1;
}

.page-banner h1 {
  color: var(--white);
  z-index: 2;
  position: relative;
  margin-top: 0;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  letter-spacing: 2px;
}

/* --- ABOUT WELCOME BLOCK --- */
.about-welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images-wrapper {
  position: relative;
  height: 480px;
  width: 100%;
}

.about-img-01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  z-index: 1;
}

.about-img-02 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-primary);
  transition: var(--transition-slow);
  z-index: 2;
}

.about-images-wrapper:hover .about-img-01 {
  transform: scale(0.97) rotate(-0.5deg);
}

.about-images-wrapper:hover .about-img-02 {
  transform: scale(1.03) translateY(-6px) rotate(0.5deg);
}

.zones-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .zones-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .zones-list {
    grid-template-columns: 1fr;
  }
}

.zone-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 500;
  color: var(--navy-700);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zone-item span {
  display: inline-flex;
  width: 6px;
  height: 6px;
  background-color: var(--gold-500);
  border-radius: var(--radius-full);
}

/* --- ROOM SHOWCASE --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.room-card {
  background-color: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}

.room-card-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

/* Luxury visual border overlay on card hover */
.room-card-image::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--gold-200);
  opacity: 0;
  transition: var(--transition-normal);
  pointer-events: none;
  transform: scale(0.96);
  z-index: 3;
}

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

.room-card:hover .room-card-image::after {
  opacity: 1;
  transform: scale(1);
}

.room-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  color: var(--navy-700);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 4;
}

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

.room-card-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.room-card-content p {
  color: var(--ink);
  opacity: 0.8;
  font-size: 0.85rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  line-height: 1.6;
}

.room-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 1.1rem;
}

.room-card-specs {
  display: flex;
  gap: 1rem;
  font-size: 0.7rem;
  color: var(--navy-700);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- FACILITIES / SERVICES --- */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.facility-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}

.facility-image-wrapper {
  height: 180px;
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: var(--bg-secondary);
}

.facility-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.facility-card:hover .facility-img {
  transform: scale(1.08); /* Slow zoom effect */
}

.facility-content {
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}

.facility-icon-wrap {
  position: absolute;
  top: -28px;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--gold-gradient);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(184, 135, 90, 0.3);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  border: none;
  flex-shrink: 0;
  z-index: 2;
}

.facility-card:hover .facility-icon-wrap {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 18px rgba(184, 135, 90, 0.45);
}

.facility-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.facility-card h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy-700);
}

.facility-card p {
  font-size: 0.78rem;
  opacity: 0.85;
  line-height: 1.55;
  color: var(--ink);
  margin-top: 0.25rem;
  flex-grow: 1;
}

/* --- VIDEO SECTION --- */
.video-section-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: 4rem auto 0;
  border: 1px solid var(--border-light);
}

.video-section-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- STATS COUNTERS (LIGHT MINIMAL STYLE) --- */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.counter-card {
  padding: 2.5rem 1rem;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  color: var(--navy-700) !important;
}

.counter-number {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-family: var(--font-serif);
  color: var(--gold-500);
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  font-weight: 700;
  color: var(--navy-700);
}

.video-stats-section .counter-label,
.video-stats-section .counter-card h4 {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* --- TESTIMONIALS --- */
.section.testimonials-section {
  background: #FFF2DE !important;
  padding: 6rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.testimonials-slider {
  max-width: 1000px;
  margin: 4rem auto 0;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide {
  min-width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
}

.testimonial-card {
  background-color: var(--white);
  padding: 4rem 4.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--navy-500); /* Blue Nile Brand Blue Accent */
  box-shadow: var(--shadow-md);
  position: relative;
  text-align: left;
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
  content: '“';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold-500);
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold-500);
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.75;
  color: var(--navy-700);
  font-style: italic;
  margin: 0;
  font-weight: 400;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 1.5px solid var(--gold-500);
  padding: 2px;
  background-color: var(--white);
  margin-bottom: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--navy-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.testimonial-verified {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: #128C7E;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-verified::before {
  content: '✓';
  font-weight: 900;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-btn {
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--navy-700);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.testimonial-btn:hover {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
  transform: scale(1.05);
}

/* --- ROW TEASER GRID (LIGHT AND STUNNING CORPORATE STYLE) --- */
.teaser-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.teaser-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.teaser-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}

.teaser-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.teaser-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.teaser-content h2 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: var(--navy-700);
  text-transform: uppercase;
}

.teaser-content p {
  opacity: 0.8;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink);
  flex-grow: 1;
}

.teaser-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* --- CHAIRMAN PROFILE (7-STAR LIGHT DESIGN) --- */
.chairman-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}

.chairman-image-card {
  background-color: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  border-bottom: 4px solid var(--gold-500);
}

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

.chairman-meta {
  padding: 2rem;
}

.chairman-meta h2 {
  margin-bottom: 0.35rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.chairman-title {
  color: var(--gold-500);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  display: block;
}

.chairman-contact-box {
  background-color: var(--bg-secondary);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  border: 1px solid var(--border-light);
}

.chairman-contact-box h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  color: var(--navy-700);
}

.chairman-contact-box a {
  display: block;
  font-weight: 700;
  color: var(--navy-900);
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.chairman-contact-box a:last-child {
  margin-bottom: 0;
}

.chairman-bio p {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  text-align: justify;
  line-height: 1.8;
}

/* --- ROOM SINGLE LAYOUT --- */
.room-detail-grid {
  display: grid;
  grid-template-columns: 1.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.room-hero-gallery {
  background-color: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
  border: 1px solid var(--border-light);
}

.room-hero-active {
  height: 480px;
  overflow: hidden;
}

.room-hero-active img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.room-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
}

.room-thumb-img {
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.room-thumb-img:hover, .room-thumb-img.active {
  opacity: 1;
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.room-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-specs-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin: 2.5rem 0;
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold-500);
}

.room-spec-item {
  text-align: center;
}

.room-spec-item i {
  display: block;
  margin: 0 auto 0.5rem;
  font-size: 1.5rem;
  color: var(--gold-500);
}

.room-spec-item span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(28,39,53,0.6);
  font-weight: 500;
  letter-spacing: 1px;
}

.room-spec-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy-700);
  margin-top: 0.2rem;
}

.room-amenities-block {
  margin-top: 3.5rem;
}

.room-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.room-amenity-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.room-amenity-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}

.room-amenity-card i {
  color: var(--gold-500);
  font-size: 1.25rem;
}

.room-amenity-card span {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--navy-700);
}

/* Booking Widget Card */
.booking-widget-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: sticky;
  top: 160px; /* Room Switcher sits below header */
  transition: var(--transition-normal);
}

.booking-widget-card h3 {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.booking-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-700);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  transition: var(--transition-fast);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.85rem;
}

.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 147, 50, 0.1);
}

.booking-form .guests-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* --- RESTAURANT OUTLETS --- */
.outlet-block {
  margin-bottom: 8rem;
}

.outlet-block:last-child {
  margin-bottom: 0;
}

.outlet-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.outlet-block:nth-child(even) .outlet-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.outlet-image-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.outlet-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.outlet-block:hover .outlet-image-wrap img {
  transform: scale(1.04);
}

.outlet-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  background-color: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.outlet-hours-table th, .outlet-hours-table td {
  padding: 1rem 1.25rem;
  text-align: left;
}

.outlet-hours-table th {
  background-color: var(--bg-secondary);
  color: var(--navy-700);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-light);
}

.outlet-hours-table tr {
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.outlet-hours-table tr:hover {
  background-color: var(--bg-secondary);
}

.outlet-hours-table tr:last-child {
  border-bottom: none;
}

.outlet-hours-table td {
  font-size: 0.85rem;
  font-weight: 500;
}

.outlet-hours-table td strong {
  color: var(--navy-700);
  font-weight: 700;
}

.restaurant-closing {
  max-width: 900px;
  margin: 6.5rem auto 0;
  text-align: center;
  background-color: var(--white);
  padding: 4rem 3.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--gold-500);
}

/* --- BANQUET HALLS --- */
.halls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.hall-card {
  background-color: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-light);
}

.hall-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}

.hall-image-wrap {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.hall-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hall-card:hover .hall-image-wrap img {
  transform: scale(1.05);
}

.hall-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hall-capacity-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background-color: var(--bg-secondary);
  color: var(--navy-700);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.7rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  align-self: start;
  letter-spacing: 0.5px;
  border: 1px solid var(--border-light);
}

.hall-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hall-content p {
  opacity: 0.8;
  font-size: 0.85rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  line-height: 1.6;
}

/* --- FILTERABLE GALLERY --- */
.gallery-filter-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  color: var(--navy-700);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 1.5px;
  transition: var(--transition-normal);
}

.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background-color: var(--navy-700);
  border-color: var(--navy-700);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--border-light);
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(252, 252, 250, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

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

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

.gallery-zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--gold-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 22, 35, 0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 80%;
  animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--gold-500);
  transform: rotate(90deg);
}

/* --- CONTACT US PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.5rem;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--gold-500);
  transition: var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-secondary);
  color: var(--navy-700);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
  border: 1px solid var(--border-light);
}

.contact-info-card:hover .contact-info-icon {
  background-color: var(--gold-500);
  color: var(--white);
}

.contact-info-text h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.9rem;
  opacity: 0.85;
}

.contact-form-wrap {
  background-color: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.contact-form-wrap h2 {
  margin-bottom: 2rem;
  font-weight: 500;
}

.map-container {
  margin-top: 5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 450px;
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- GLOBAL FOOTER (7-STAR LIGHT DESIGN) --- */
.footer-wrap {
  background-color: var(--bg-secondary);
  color: var(--ink);
  padding: 5rem 0 0;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-col h2 {
  color: var(--navy-700);
  font-size: 0.85rem;
  margin-bottom: 1.75rem;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
  position: relative;
}

.footer-col h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--gold-500);
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.75;
  opacity: 0.8;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-700);
}

.footer-links-list a:hover {
  color: var(--gold-500);
  padding-left: 0.35rem;
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer-direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-direction-btn:hover {
  color: var(--navy-700);
  transform: translateX(3px);
}

.footer-contacts-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-contacts-list a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-700);
}

.footer-contacts-list a:hover {
  color: var(--gold-500);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background-color: var(--white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  transition: var(--transition-fast);
  font-size: 0.85rem;
}

.footer-social-link:hover {
  background-color: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.copyright-bar {
  background-color: var(--bg-primary);
  color: rgba(28, 39, 53, 0.7);
  padding: 1.5rem 0;
  font-size: 0.75rem;
  text-align: center;
  border-top: 1px solid var(--border-light);
}

.copyright-bar a {
  color: var(--navy-700);
  font-weight: 500;
}

.copyright-bar a:hover {
  color: var(--gold-500);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- FAQ ACCORDION --- */
.faq-list {
  max-width: 800px;
  margin: 3.5rem auto 0;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy-700);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  min-height: 44px;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold-500);
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0.75rem 0 0.5rem;
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.6;
  color: var(--ink);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (min-width: 1025px) and (max-width: 1240px) {
  .nav-menu {
    gap: 1.15rem;
  }
  .nav-link {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
  .nav-cta-btn {
    padding: 8px 16px !important;
    font-size: 0.65rem !important;
    margin-left: 0.5rem;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .nav-menu { gap: 1rem !important; }
  .nav-link { font-size: 0.825rem !important; }
  .btn-enquire { padding: 0.5rem 1rem !important; font-size: 0.75rem !important; }
}

@media (max-width: 991px) {
  .section {
    padding: 6rem 0;
  }
  .about-welcome-grid, .chairman-grid, .room-detail-grid, .outlet-grid, .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
  .about-welcome-grid .about-images-wrapper {
    order: 2;
  }
  .rooms-grid, .facilities-grid, .halls-grid {
    grid-template-columns: 1fr 1fr;
  }
  @media (min-width: 769px) {
    .rooms-grid > *:last-child:nth-child(odd) {
      grid-column: 1 / -1;
      justify-self: center;
      width: calc(50% - 1.25rem);
    }
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .teaser-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  @media (min-width: 769px) {
    .teaser-container > *:last-child:nth-child(odd) {
      grid-column: 1 / -1;
      justify-self: center;
      width: calc(50% - 1rem);
    }
  }
  
  /* Mobile Menu Styles shifted to 1024px */
  .utility-bar {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-light);
    display: none;
    align-items: flex-start;
    gap: 1rem;
    max-height: calc(100vh - var(--header-height, 100px));
    overflow-y: auto;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-item {
    width: 100%;
    position: static;
    display: block;
    height: auto;
  }
  .nav-link {
    font-size: 0.85rem;
    padding: 0.65rem 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .nav-link::after {
    display: none; /* Hide desktop underlines on mobile */
  }
  .megamenu-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-bottom: none;
    background-color: var(--bg-secondary);
    display: none;
    padding: 1rem;
    margin-top: 0.25rem;
    width: 100%;
  }
  .nav-item.active-dropdown .megamenu-dropdown {
    display: block;
  }
  .previewdropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-bottom: none;
    background-color: var(--bg-secondary);
    display: none;
    padding: 1.5rem;
    margin-top: 0.25rem;
    width: 100%;
    border-radius: 4px;
  }
  .nav-item.active-dropdown .previewdropdown-panel {
    display: block;
  }
  .megamenu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .megamenu-col {
    border-right: none;
    padding-right: 0;
  }
  .nav-cta-btn {
    display: inline-flex !important;
    width: 100%;
    margin-left: 0;
    margin-top: 1rem;
    box-sizing: border-box;
  }
  .logo-link img,
  .custom-logo {
    height: 46px !important;
    width: auto !important;
  }
  .room-switcher-bar {
    top: 60px;
  }
  .room-switcher-bar .container {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .rooms-grid, .facilities-grid, .halls-grid, .teaser-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-images-wrapper {
    height: 360px;
  }
  .about-img-01, .about-img-02 {
    height: 250px;
  }
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .counters-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .room-specs-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .room-amenities-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }
  .about-images-wrapper {
    height: 280px;
  }
  .about-img-01, .about-img-02 {
    height: 190px;
  }
}

/* --- BOOKING BAR WIDGET --- */
.booking-bar-wrapper {
  position: absolute;
  top: 155px; /* Floats beautifully below the header */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1360px;
  padding: 0 2.5rem;
  z-index: 100;
  pointer-events: none;
  box-sizing: border-box;
}

.booking-bar-wrapper .container {
  pointer-events: auto;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.booking-bar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-end; /* Vertically aligns input fields and button */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(12, 22, 35, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-sizing: border-box;
}

.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.booking-field label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  margin-left: 2px;
}

.booking-field .input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.9);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
  height: 52px; /* Enforces equal height */
  box-sizing: border-box;
}

.booking-field .input-wrapper:hover {
  border-color: var(--gold-200);
}

.booking-field .input-wrapper:focus-within {
  border-color: var(--gold-500);
  background-color: var(--white);
}

.booking-field .icon {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}

.booking-field input[type="date"] {
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-700);
  width: 100%;
  outline: none;
  cursor: pointer;
}

.booking-field .value {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-700);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-field .arrow {
  font-size: 0.6rem;
  color: var(--navy-700);
  opacity: 0.7;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.booking-field .input-wrapper[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
}

/* Guests Dropdown Popup */
.guests-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(24, 27, 32, 0.15);
  padding: 1.25rem 1.5rem;
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  box-sizing: border-box;
}

.guests-dropdown.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.guests-option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.guests-option-row:last-of-type {
  border-bottom: none;
}

.guests-option-row .option-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.guests-option-row .option-label .title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-700);
}

.guests-option-row .option-label .desc {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--ink);
  opacity: 0.75;
}

.option-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  background: transparent;
  color: var(--gold-500);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
  user-select: none;
}

.counter-btn:hover:not(:disabled) {
  background-color: var(--gold-500);
  color: var(--white);
}

.counter-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  border-color: var(--border-light);
  color: var(--ink);
}

.counter-val {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-700);
  min-width: 18px;
  text-align: center;
}

/* Room Type Field Inside Dropdown */
.room-type-row {
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.room-type-row .select-wrapper {
  position: relative;
  width: 100%;
}

.room-type-row select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-secondary);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-700);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color var(--transition-fast);
}

.room-type-row select:focus {
  border-color: var(--gold-500);
  background-color: var(--white);
}

.room-type-row .select-wrapper::after {
  content: '▼';
  font-size: 0.6rem;
  color: var(--navy-700);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.8;
}

.btn-done {
  width: 100%;
  background-color: var(--navy-900);
  color: var(--white);
  border: none;
  padding: 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color var(--transition-fast);
  border-radius: 6px;
}

.btn-done:hover {
  background-color: var(--gold-500);
}

.booking-action {
  display: flex;
  align-items: flex-end;
  min-width: 180px;
  flex: 0.8;
}

.book-now-submit {
  height: 52px; /* Exactly equal height to inputs */
  min-height: 52px !important;
  width: 100%;
  background-color: var(--gold-500);
  color: var(--white);
  border: 1px solid var(--gold-500);
  border-radius: 8px !important;
  font-family: var(--font-sans);
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 2px !important;
  cursor: pointer;
  transition: all var(--transition-fast) !important;
}

.book-now-submit:hover {
  background-color: var(--navy-900) !important;
  border-color: var(--navy-900) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(24, 27, 32, 0.12);
}

/* Toast Message */
.booking-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: var(--navy-900);
  color: var(--white);
  border: 1px solid var(--gold-500);
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.booking-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Adjustments for content elements when floated */
.hero-content {
  margin-top: 60px !important;
}



/* Responsive Booking Bar */
/* Responsive Booking Bar */
@media (max-width: 991px) and (min-width: 769px) {
  .booking-bar-wrapper {
    position: absolute;
    top: 155px; /* Adjust below the header */
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    z-index: 100;
    padding: 0;
    pointer-events: auto;
  }
  
  .booking-bar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.75rem;
    padding: 1.15rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: var(--shadow-lg) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
  }
  
  .booking-field {
    flex: 1 1 calc(25% - 0.75rem);
    min-width: 140px;
    margin-bottom: 0;
  }
  
  .booking-field.guests-field {
    flex: 1 2 calc(30% - 0.75rem);
    min-width: 185px;
  }
  
  .booking-action {
    flex: 1 1 auto;
    min-width: 120px;
    margin-top: 0;
  }
  
  .booking-action .btn {
    width: 100%;
  }

  .booking-field label {
    color: var(--navy-700) !important;
    text-shadow: none !important;
    font-size: 0.65rem !important;
    margin-bottom: 0.35rem !important;
  }

  .booking-field .input-wrapper {
    background-color: var(--bg-primary) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--navy-700) !important;
  }
}

@media (max-width: 768px) {
  .booking-bar-wrapper {
    position: absolute !important;
    top: calc(var(--header-height, 70px) + 8px) !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 1.5rem) !important;
    max-width: 480px !important;
    padding: 0 !important;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    z-index: 100 !important;
    pointer-events: auto !important;
    box-sizing: border-box !important;
    animation: slideDownBooking 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both !important;
  }

  body.popup-open .booking-bar-wrapper {
    z-index: 999999 !important;
  }
  
  .booking-bar-wrapper .container {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .booking-bar {
    flex-direction: row !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 0.2rem !important;
    padding: 0.35rem 0.4rem !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .booking-field {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.15rem !important;
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
  }

  .booking-field.date-field {
    flex: 1 1 88px !important;
    min-width: 82px !important;
  }

  .booking-field.guests-field {
    flex: 1 2 92px !important;
    min-width: 82px !important;
  }

  .booking-action {
    flex: 1 0 82px !important;
    min-width: 74px !important;
    margin-top: 0 !important;
  }

  .booking-field label {
    display: block !important;
    color: var(--white) !important;
    font-size: 0.52rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }

  .booking-field .input-wrapper {
    position: relative !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    color: var(--navy-700) !important;
    padding: 0.35rem 0.15rem !important;
    border-radius: 15px !important;
    height: 30px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.1rem !important;
    width: 100% !important;
  }

  .booking-field .input-wrapper input[type="date"] {
    font-size: 0.62rem !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    width: 100% !important;
    color: var(--navy-700) !important;
    font-weight: 600 !important;
    min-width: 0 !important;
  }

  .booking-field .input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0 !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    cursor: pointer !important;
  }

  .booking-field .input-wrapper .icon {
    display: flex !important;
    align-items: center !important;
    color: var(--gold-500) !important;
    flex-shrink: 0 !important;
  }

  .booking-field .input-wrapper .icon svg {
    width: 10px !important;
    height: 10px !important;
  }

  .booking-field .input-wrapper .value {
    font-size: 0.62rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 58px !important;
  }

  .booking-field .input-wrapper .arrow {
    font-size: 0.45rem !important;
    margin-left: 0.05rem !important;
    color: var(--navy-700) !important;
    flex-shrink: 0 !important;
  }

  .booking-action .btn-accent {
    padding: 0 0.25rem !important;
    font-size: 0.65rem !important;
    height: 30px !important;
    line-height: 30px !important;
    border-radius: 15px !important;
    min-height: auto !important;
    min-width: auto !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    width: 100% !important;
  }
  
  .booking-field.guests-field {
    position: static !important;
  }

  .guests-dropdown {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    border-radius: 12px !important;
    padding: 1.25rem !important;
    box-sizing: border-box !important;
    z-index: 100000 !important;
    background-color: #13192b !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .guests-dropdown .guests-option-row {
    padding: 0.85rem 0 !important;
    gap: 0.5rem !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .guests-dropdown .guests-option-row:last-of-type {
    border-bottom: none !important;
  }

  .guests-dropdown .guests-option-row.room-type-row {
    flex-direction: column !important;
    align-items: stretch !important;
    padding-bottom: 0 !important;
  }

  .guests-dropdown .option-label {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
  }

  .guests-dropdown .option-label .title {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
  }

  .guests-dropdown .option-label .desc {
    font-size: 0.68rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
  }

  .guests-dropdown .option-counter {
    flex: 0 0 auto !important;
    gap: 0.85rem !important;
    display: flex !important;
    align-items: center !important;
  }

  .guests-dropdown .counter-btn {
    width: 32px !important;
    height: 32px !important;
    font-size: 1.1rem !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background-color 0.2s, border-color 0.2s;
  }

  .guests-dropdown .counter-btn:disabled {
    opacity: 0.25 !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.3) !important;
    cursor: not-allowed !important;
  }

  .guests-dropdown .counter-btn:hover:not(:disabled) {
    background-color: var(--gold-500) !important;
    border-color: var(--gold-500) !important;
    color: var(--white) !important;
  }

  .guests-dropdown .counter-val {
    font-size: 0.95rem !important;
    min-width: 18px !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    text-align: center !important;
  }

  .guests-dropdown .room-type-row select {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    padding: 0.65rem 0.85rem !important;
    background-color: rgba(255, 255, 255, 0.06) !important;
    color: var(--white) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    width: 100% !important;
    appearance: none !important;
    -webkit-appearance: none !important;
  }

  .guests-dropdown .room-type-row .select-wrapper::after {
    color: var(--white) !important;
    opacity: 0.9 !important;
  }

  .guests-dropdown .room-type-row select option {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    color: var(--white) !important;
    background-color: #13192b !important;
  }

  .guests-dropdown .btn-done {
    padding: 0.75rem 0 !important;
    font-size: 0.78rem !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
    border-radius: 8px !important;
    margin-top: 1.25rem !important;
    width: 100% !important;
    background-color: var(--gold-500) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
  }
  
  .hero-content {
    margin-top: 80px !important;
    padding-bottom: 0px !important;
    box-sizing: border-box !important;
  }

  @keyframes slideDownBooking {
    from {
      opacity: 0;
      transform: translate(-50%, -20px);
    }
    to {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
  @media (max-width: 360px) {
    .booking-bar {
      gap: 0.15rem !important;
      padding: 0.25rem 0.3rem !important;
    }
    
    .booking-field.date-field {
      flex: 1 1 76px !important;
      min-width: 72px !important;
    }

    .booking-field.guests-field {
      flex: 1 2 80px !important;
      min-width: 72px !important;
    }

    .booking-action {
      flex: 1 0 74px !important;
      min-width: 66px !important;
    }

    .booking-field label {
      font-size: 0.48rem !important;
    }

    .booking-field .input-wrapper {
      padding: 0.3rem 0.1rem !important;
      height: 26px !important;
    }

    .booking-field .input-wrapper input[type="date"] {
      font-size: 0.56rem !important;
    }

    .booking-field .input-wrapper .value {
      font-size: 0.56rem !important;
      max-width: 48px !important;
    }

    .booking-field .input-wrapper .icon svg {
      width: 9px !important;
      height: 9px !important;
    }

    .booking-action .btn-accent {
      font-size: 0.58rem !important;
      height: 26px !important;
      line-height: 26px !important;
    }
  }

  .booking-form .guests-row {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
}

/* --- BLOG & JOURNAL STYLES --- */
.blog-search-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.blog-search-input {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  background-color: var(--bg-secondary);
  outline: none;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
  color: var(--navy-700);
}

.blog-search-input:focus {
  border-color: var(--gold-500);
  background-color: var(--white);
}

.blog-categories-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.blog-category-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--navy-700);
}

.blog-category-btn.active, .blog-category-btn:hover {
  background-color: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-search-bar {
    padding: 0 1rem;
  }
}

.blog-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(24, 27, 32, 0.06);
}

.blog-card-image {
  height: 230px;
  overflow: hidden;
  position: relative;
  background-color: var(--bg-secondary);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--gold-500);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.65;
  margin-bottom: 0.85rem;
  display: flex;
  gap: 1rem;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy-700);
  margin-bottom: 0.85rem;
  line-height: 1.45;
  font-weight: 500;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-500);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
  margin-top: auto;
}

.blog-card:hover .blog-card-link {
  color: var(--navy-900);
}

/* Skeleton Loading Screens */
.blog-skeleton {
  border: 1px solid var(--border-light);
  overflow: hidden;
  height: 420px;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
}

.blog-skeleton-img {
  height: 230px;
  background: linear-gradient(90deg, #f0ede6 25%, #e6e2d8 50%, #f0ede6 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
}

.blog-skeleton-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.blog-skeleton-line {
  height: 14px;
  background: linear-gradient(90deg, #f0ede6 25%, #e6e2d8 50%, #f0ede6 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
  border-radius: 4px;
}

.blog-skeleton-line.short { width: 40%; }
.blog-skeleton-line.title { height: 20px; width: 85%; }
.blog-skeleton-line.text-1 { width: 100%; }
.blog-skeleton-line.text-2 { width: 95%; }
.blog-skeleton-line.text-3 { width: 70%; }

@keyframes loading-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Premium Full-Screen Reader Overlay */
.blog-reader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 22, 35, 0.85);
  z-index: 2000;
  display: none;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeIn 0.3s ease forwards;
}

.blog-reader-content {
  background-color: var(--bg-primary);
  max-width: 820px;
  margin: 1.5rem auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: scaleIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-sizing: border-box;
}

.blog-reader-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-light);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  color: var(--navy-700);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 0;
  line-height: 1;
}

.blog-reader-close-btn:hover {
  background-color: var(--gold-500);
  color: var(--white);
  border-color: var(--gold-500);
  transform: rotate(90deg);
}

.blog-reader-hero {
  height: 380px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.blog-reader-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-reader-body {
  padding: 3.5rem 4.5rem;
}

@media (max-width: 768px) {
  .blog-reader-body {
    padding: 2rem 1.5rem;
  }
  .blog-reader-hero {
    height: 240px;
  }
  .blog-reader-overlay {
    padding: 1rem 0.5rem;
  }
}

.blog-reader-meta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 1.25rem;
  display: block;
}

.blog-reader-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.35;
  color: var(--navy-700);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.blog-reader-post-date {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.25rem;
  display: block;
}

.blog-reader-text {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--ink);
  letter-spacing: 0.015em;
  font-weight: 450;
}

.blog-reader-text p {
  margin-bottom: 1.75rem;
}

.blog-reader-text h2, .blog-reader-text h3 {
  font-family: var(--font-serif);
  color: var(--navy-700);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.blog-reader-text img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 8px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* --- AMBIENT DEPTH, SCROLL REVEALS & RADIAL BACKGROUNDS --- */
.reveal-on-reveal,
.reveal-on-scroll {
  opacity: 0 !important;
  transform: translateY(32px) !important;
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Slow Ken Burns Effect for Hero Backgrounds */
@keyframes kenburns {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero-slide-bg {
  animation: kenburns 12s ease-in-out infinite alternate !important;
}

/* Warm radial gradients for plain white sections */
.section {
  background: radial-gradient(circle at 10% 20%, #FDFDFB 0%, #FAF8F2 100%) !important;
  position: relative;
  overflow: hidden;
}

.section.alt-bg {
  background: radial-gradient(circle at 90% 80%, #FAF8F2 0%, #F4F1E6 100%) !important;
}

.section.dark-bg {
  background: radial-gradient(circle at 50% 50%, #23272F 0%, #181B20 100%) !important;
}

/* Page fade-in loader wrapper */
.page-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- OVERLAPPING IMAGES SECTION 2 --- */
.about-welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 991px) {
  .about-welcome-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-images-wrapper {
  position: relative;
  height: 440px;
  width: 100%;
}

@media (max-width: 600px) {
  .about-images-wrapper {
    height: 320px;
  }
}

.about-img-01 {
  width: 75%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--border-light);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-02 {
  width: 55%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: 0;
  right: 0;
  border: 4px solid var(--white);
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 600px) {
  .about-img-01 {
    height: 260px;
  }
  .about-img-02 {
    height: 180px;
  }
}

.about-images-wrapper:hover .about-img-01 {
  transform: translate(-6px, -6px);
}

.about-images-wrapper:hover .about-img-02 {
  transform: translate(6px, 6px);
}

/* --- SERVICES SHOWCASE SECTION 7 --- */
.services-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 3.5rem;
  padding: 1rem 0 2rem;
}

.services-slider-track {
  display: flex;
  gap: 2.5rem;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: max-content;
}

.services-showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 580px !important;
  max-width: 90vw;
  aspect-ratio: 1.15 / 1 !important;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
  background-color: #13172B;
}

/* Inner gold frame overlay */
.services-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2.5px solid transparent;
  border-radius: var(--radius-lg);
  transition: border-color 0.4s ease;
  pointer-events: none;
  z-index: 3;
}

/* Bottom sliding accent gold bar */
.services-showcase-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background-color: var(--gold-500);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 4;
}

.services-showcase-card:hover::before {
  border-color: rgba(212, 175, 55, 0.25);
}

.services-showcase-card:hover::after {
  width: 100%;
  left: 0;
}

/* Keyframes for the background image crossfade slider inside each card */
@keyframes cardBgFade {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }
  8% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  41% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
  }
}

.services-showcase-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: cardBgFade 12s infinite;
}

.services-showcase-bg-slide:nth-child(1) {
  animation-delay: 0s;
}

.services-showcase-bg-slide:nth-child(2) {
  animation-delay: 4s;
}

.services-showcase-bg-slide:nth-child(3) {
  animation-delay: 8s;
}

/* Hover scales whichever background slide is active */
.services-showcase-card:hover .services-showcase-bg-slide {
  transform: scale(1.1);
}

.services-showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 31, 51, 0.98) 0%, rgba(10, 31, 51, 0.6) 45%, rgba(10, 31, 51, 0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem;
  color: var(--white);
  z-index: 2;
}

.services-showcase-overlay h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.services-showcase-overlay p {
  font-size: 0.85rem;
  opacity: 0.88;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.services-showcase-overlay .btn-readmore {
  align-self: flex-start;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--gold-500);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.services-showcase-card:hover .btn-readmore {
  color: var(--white);
  transform: translateX(6px);
}

/* Glassmorphism Refinements for Booking Bar */
.booking-bar {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25) !important;
  border-radius: var(--radius-lg) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1.5rem 2rem !important;
}

.booking-bar:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3) !important;
}

/* --- VISUAL REFINEMENTS OVERRIDES --- */

/* 1. TOP CONTACT BAR (#0193DE) */
.utility-bar {
  background-color: #0193DE !important;
  color: var(--white) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.utility-contacts a {
  color: var(--white) !important;
  font-weight: 600 !important;
}

.utility-contacts a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* 2. HEADER / NAVIGATION MENU */
@media (min-width: 1025px) {
  .main-header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 52px !important;
    width: 100% !important;
    max-width: 1360px !important;
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .logo-link,
  .custom-logo-link {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    margin-right: 3% !important; /* spacing between logo and first link */
    flex-shrink: 0 !important;
  }

  .nav-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important; /* group links on the right */
    flex-grow: 1 !important;
    margin: 0 !important;
    gap: 1.75rem !important; /* clean spacing between nav items */
  }

  .nav-cta-btn {
    margin-left: 0 !important; /* reset margin auto so it spaces equally */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 1440px) {
  .nav-link {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
  }

  .nav-cta-btn {
    padding: 11px 24px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    min-height: 42px !important;
  }
}

@media (max-width: 1439px) and (min-width: 1025px) {
  .nav-link {
    font-size: 0.72rem !important;
    letter-spacing: 1px !important;
  }

  .nav-cta-btn {
    padding: 8px 14px !important;
    font-size: 0.68rem !important;
    min-height: 36px !important;
  }
  
  .logo-link img,
  .custom-logo {
    height: 40px !important; /* scaled down logo */
  }
}

/* Extra safety margins for intermediate laptop viewports (e.g. 1025px - 1280px) */
@media (max-width: 1280px) and (min-width: 1025px) {
  .main-header .container {
    max-width: 1360px !important;
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .logo-link,
  .custom-logo-link {
    margin-right: 2% !important;
  }
  
  .nav-menu {
    gap: 0.5rem !important;
  }
  
  .nav-link {
    font-size: 0.66rem !important;
  }
}


/* 3. HERO BOOKING WIDGET LIGHT CONTENT & FROSTED GLASS */
/* NOTE: the old "sticky/fixed under header" positioning rules that used to live
   here were removed — they were causing the widget to freeze on screen while
   scrolling. Positioning for this widget is now handled entirely by the
   .home .booking-bar-wrapper rules below (position: absolute, scrolls away
   naturally with the hero). The field styling below is unaffected. */
@media (min-width: 1025px) {
  .booking-bar {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    width: 100% !important;
    display: flex !important;
    gap: 1.25rem !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
  }

  .booking-field label {
    color: var(--navy-700) !important;
    text-shadow: none !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 0.35rem !important;
  }

  .booking-field .input-wrapper {
    background-color: var(--bg-secondary) !important;
    border: 1px solid var(--border-light) !important;
    color: var(--navy-700) !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
  }

  .booking-field .input-wrapper:hover {
    border-color: var(--gold-200) !important;
    background-color: var(--white) !important;
  }

  .booking-field .input-wrapper:focus-within {
    border-color: var(--gold-500) !important;
    background-color: var(--white) !important;
  }

  .booking-field input[type="date"] {
    color: var(--navy-700) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
  }

  .booking-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: none !important;
  }

  .booking-field .value {
    color: var(--navy-700) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
  }

  .booking-field .arrow {
    color: var(--navy-700) !important;
  }

  .booking-field .icon {
    color: var(--gold-500) !important;
  }

  .booking-action {
    flex-shrink: 0 !important;
  }

  .booking-action .btn {
    padding: 12px 28px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    min-height: 42px !important;
  }

  /* Dropdown styling */
  .guests-dropdown {
    background-color: var(--white) !important;
    border: 1px solid var(--border-light) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
    color: var(--navy-700) !important;
  }

  .guests-dropdown .title {
    color: var(--navy-900) !important;
  }

  .guests-dropdown .desc {
    color: var(--navy-500) !important;
  }

  .guests-dropdown .counter-val {
    color: var(--navy-900) !important;
  }

  .guests-dropdown .counter-btn {
    background-color: var(--bg-secondary) !important;
    color: var(--navy-700) !important;
    border: 1px solid var(--border-light) !important;
  }

  .guests-dropdown .counter-btn:hover {
    background-color: var(--gold-500) !important;
    border-color: var(--gold-500) !important;
    color: var(--white) !important;
  }

  .guests-dropdown select {
    background-color: var(--bg-secondary) !important;
    color: var(--navy-700) !important;
    border: 1px solid var(--border-light) !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
  }

  .guests-dropdown select option {
    background-color: var(--white) !important;
    color: var(--navy-700) !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
  }

  .guests-dropdown .btn-done {
    background-color: var(--gold-500) !important;
    color: var(--white) !important;
  }

  .guests-dropdown .btn-done:hover {
    background-color: #a37648 !important;
  }

  /* Clear overlap on hero sliders and banners */
  .hero-slider-container {
    padding-top: var(--header-height, 110px) !important;
  }

  .page-banner {
    padding-top: var(--header-height, 110px) !important;
    padding-bottom: 70px !important;
    height: auto !important;
    min-height: 320px !important;
  }
}

/* 4. "WELCOME TO BLUE NILE" SECTION */
@media (min-width: 992px) {
  .about-welcome-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr !important;
    gap: 4.5rem !important;
  }

  .about-welcome-grid .eyebrow {
    font-size: 0.85rem !important;
    letter-spacing: 3.5px !important;
    font-weight: 700 !important;
    color: var(--gold-500) !important;
    margin-bottom: 0.75rem !important;
  }

  /* "Our Hotel has been present for over 20 years." - Dominant Serif Headline */
  .about-welcome-grid .section-subtitle {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem) !important;
    font-family: var(--font-serif) !important;
    line-height: 1.15 !important;
    color: var(--navy-700) !important;
    font-weight: 400 !important;
    font-style: normal !important;
    margin-bottom: 1.25rem !important;
  }

  /* "A Luxurious 4 Star Hotel in Kannur" - Subheading in brand blue */
  .about-welcome-grid h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem) !important;
    color: #0193DE !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    font-family: var(--font-sans) !important;
    margin-bottom: 1.75rem !important;
  }

  .about-welcome-grid p:not(.section-subtitle) {
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
    color: var(--ink) !important;
    opacity: 0.85;
  }

  /* Brochure side-by-side vertical images layout */
  .about-images-wrapper {
    display: flex !important;
    gap: 1.5rem !important;
    height: 520px !important;
    width: 100% !important;
  }

  .about-img-01, .about-img-02 {
    position: static !important;
    flex: 1 !important;
    width: 50% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: var(--radius-md) !important;
    border: 1px solid var(--border-light) !important;
    box-shadow: var(--shadow-md) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
  }

  .about-images-wrapper:hover .about-img-01 {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-lg) !important;
  }

  .about-images-wrapper:hover .about-img-02 {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-lg) !important;
  }
}

/* 5. "OUR FAVORITE ROOM" SECTION (Dark Navy Theme #13172B) */
#rooms {
  background-color: #13172B !important;
  background-image: radial-gradient(circle at 50% 50%, #1A203B 0%, #13172B 100%) !important;
  color: var(--white) !important;
}

#rooms .eyebrow {
  color: #0193DE !important; /* brand blue */
}

#rooms h2 {
  color: var(--white) !important;
}

#rooms p {
  color: rgba(255, 255, 255, 0.7) !important;
}

#rooms .rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2.5rem !important;
  margin-top: 3.5rem !important;
}

@media (max-width: 991px) {
  #rooms .rooms-grid {
    grid-template-columns: 1fr !important;
    max-width: 520px;
    margin: 3rem auto 0 !important;
  }
}

/* Redesigned Room Card on Dark BG */
#rooms .room-card {
  background-color: #1A1F38 !important; /* elevated navy bg */
  border-radius: var(--radius-md) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#rooms .room-card:hover {
  transform: translateY(-8px) !important;
  border-color: var(--gold-500) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 20px rgba(197, 168, 128, 0.2) !important; /* soft gold glow */
}

#rooms .room-card-image {
  height: 310px !important; /* taller image area */
  position: relative;
  overflow: hidden;
}

#rooms .room-card-content {
  padding: 2.5rem 2.25rem !important; /* more internal padding */
}

#rooms .room-card-content h3 {
  font-family: var(--font-serif) !important;
  font-size: 1.55rem !important; /* larger font size */
  font-weight: 600 !important;
  color: var(--white) !important;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

#rooms .room-card-content p {
  font-size: 0.92rem !important; /* slightly larger body text */
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 2rem !important;
}

#rooms .room-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 1.5rem !important;
}

#rooms .room-card-specs {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.75rem !important;
}

#rooms .room-card-specs span {
  display: inline-flex;
  align-items: center;
}

#rooms .room-card-badge {
  background-color: rgba(197, 168, 128, 0.9) !important;
  color: #13172B !important;
  border: none !important;
}

/* Outlined Room Details Button with Hover Fill */
#rooms .btn-outline-gold {
  border: 1px solid rgba(255, 159, 0, 0.5) !important;
  background-color: transparent !important;
  color: var(--gold-500) !important;
  padding: 6px 14px !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  cursor: pointer !important;
}

#rooms .btn-outline-gold:hover {
  background-color: transparent !important;
  color: #FFD043 !important;
  border-color: #FFD043 !important;
  box-shadow: 0 0 12px rgba(255, 208, 67, 0.25) !important;
  transform: translateY(-1px) !important;
}

/* 6. FOOTER (Dark Navy Theme #13172B) */
.footer-wrap {
  background-color: #13172B !important;
  background-image: radial-gradient(circle at 50% 50%, #1A203B 0%, #13172B 100%) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.footer-col h2 {
  color: var(--white) !important;
  font-size: 0.95rem !important; /* bolder/larger headings */
  font-weight: 700 !important;
  margin-bottom: 1.75rem;
  letter-spacing: 2px;
}

.footer-col p {
  font-size: 0.92rem !important; /* larger body text */
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-links-list a {
  font-size: 0.92rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  transition: all 0.3s ease;
}

.footer-links-list a:hover {
  color: #0193DE !important; /* brand blue */
}

.footer-address {
  font-size: 0.92rem !important;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-direction-btn {
  color: var(--gold-500) !important;
  font-size: 0.8rem !important;
}

.footer-direction-btn:hover {
  color: #0193DE !important;
}

.footer-contacts-list a {
  font-size: 0.92rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  transition: all 0.3s ease;
}

.footer-contacts-list a:hover {
  color: #0193DE !important;
}

.footer-social-link {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
}

.footer-social-link:hover {
  background-color: #0193DE !important;
  border-color: #0193DE !important;
  color: var(--white) !important;
}

.copyright-bar {
  background-color: #0B0E1B !important; /* even darker navy footer bar */
  color: rgba(255, 255, 255, 0.5) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.copyright-bar a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.copyright-bar a:hover {
  color: #0193DE !important;
}

/* --- PREMIUM VIDEO SECTION & FLOATING SHOWCASE CARDS OVERRIDES --- */

/* Video Section Background Slider */
@keyframes videoBgFade {
  0% { opacity: 0; }
  6% { opacity: 1; }
  25% { opacity: 1; }
  31% { opacity: 0; }
  100% { opacity: 0; }
}

.video-stats-section {
  position: relative;
  overflow: hidden;
}

.video-stats-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease;
  animation: videoBgFade 16s infinite ease-in-out;
}

.video-stats-bg-slide:nth-child(1) { animation-delay: 0s; }
.video-stats-bg-slide:nth-child(2) { animation-delay: 4s; }
.video-stats-bg-slide:nth-child(3) { animation-delay: 8s; }
.video-stats-bg-slide:nth-child(4) { animation-delay: 12s; }

.video-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 31, 51, 0.78);
  z-index: 2;
}

/* Video Section Play Button Pulsing & Hover Scale */
.video-play-btn {
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  animation: playPulse 2s infinite;
}

.video-play-btn:hover {
  transform: scale(1.1) !important;
  background-color: var(--white) !important;
}

.video-play-btn:hover svg {
  color: #13172B !important;
}

@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Video Modal Dialog Popup window */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 21, 36, 0.9);
}

.video-modal-container {
  position: relative;
  width: 90%;
  max-width: 960px;
  background-color: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .video-modal-container {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.3s ease;
}

.video-modal-close:hover {
  color: var(--gold-500);
}

.video-modal-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-modal-iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Floating movements for services cards ("moving here and there" live feature) */
@keyframes cardFloatOdd {
  0% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-7px) rotate(0.4deg); }
  100% { transform: translateY(0) rotate(0); }
}

@keyframes cardFloatEven {
  0% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-5px) rotate(-0.4deg); }
  100% { transform: translateY(0) rotate(0); }
}

/* Styling active-slide highlight slider and beautiful animations */
.services-showcase-card {
  opacity: 0;
  transform: translateY(60px) scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease !important;
}

.services-showcase-card.is-visible {
  opacity: 0.55; /* Dim adjacent cards in slider */
  transform: translateY(0) scale(0.92);
}

.services-showcase-card.is-visible.active-slide {
  opacity: 1; /* Highlight active card */
  transform: translateY(0) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Hover scales up active slide even more and pauses sliding timer */
.services-showcase-card.is-visible:hover {
  opacity: 1 !important;
  transform: translateY(-10px) scale(1.06) !important;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.55) !important;
  border-color: var(--gold-500) !important;
  z-index: 5;
}

.services-showcase-card.is-visible:nth-child(1) { transition-delay: 0.1s; }
.services-showcase-card.is-visible:nth-child(2) { transition-delay: 0.25s; }
.services-showcase-card.is-visible:nth-child(3) { transition-delay: 0.4s; }
.services-showcase-card.is-visible:nth-child(4) { transition-delay: 0.55s; }

/* WordPress Admin Bar Compatibility & Logo Alignment */
.admin-bar .header-wrapper {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .header-wrapper {
    top: 46px;
  }
}

/* Ensure WordPress custom logo aligns exactly like the fallback logo */
.custom-logo-link {
  display: flex;
  align-items: center;
  margin-right: 3rem;
  flex-shrink: 0;
}

.custom-logo {
  height: 60px;
  width: auto !important;
  max-width: 100%;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.header-scrolled .custom-logo {
  height: 46px;
}



/* Classy Inline Slideshows for Outlets & Halls */
.outlet-image-wrap.inline-slideshow,
.hall-image-wrap.inline-slideshow {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.outlet-slide,
.hall-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.outlet-slide {
  animation: outletBgFade 12s infinite;
}

/* Banquet hall images cycle faster — every 2 seconds */
.hall-slide {
  animation: outletBgFade 6s infinite;
}

.outlet-slide:nth-child(1),
.hall-slide:nth-child(1) { opacity: 1; }
.outlet-slide:nth-child(1) { animation-delay: 0s; }
.outlet-slide:nth-child(2) { animation-delay: 4s; }
.outlet-slide:nth-child(3) { animation-delay: 8s; }

.hall-slide:nth-child(1) { animation-delay: 0s; }
.hall-slide:nth-child(2) { animation-delay: 2s; }
.hall-slide:nth-child(3) { animation-delay: 4s; }

/* Hover zooms background slides classily */
.outlet-image-wrap.inline-slideshow:hover .outlet-slide,
.hall-image-wrap.inline-slideshow:hover .hall-slide {
  transform: scale(1.08);
}

@keyframes outletBgFade {
  0% { opacity: 0; transform: scale(1); }
  8% { opacity: 1; }
  33% { opacity: 1; }
  41% { opacity: 0; transform: scale(1.04); }
  100% { opacity: 0; }
}

/* --- EXTRA DESIGN REFINEMENTS --- */

/* 1. Global Booking Bar Visibility Controls (Home Only) */
.booking-bar-wrapper {
  display: none !important;
}

.home .booking-bar-wrapper,
.home-page .booking-bar-wrapper {
  display: block !important;
}

/* 2. Transparent Header Extensions (Desktop Only) */
@media (min-width: 1025px) {
  .home .booking-bar-wrapper,
  .home-page .booking-bar-wrapper {
    position: absolute !important; /* absolute so it scrolls away naturally with hero */
    top: 110px !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.6rem 10% !important;
    background: transparent !important; /* completely transparent wrapper */
    border-bottom: none !important;
    box-shadow: none !important;
    z-index: 999 !important;
    pointer-events: auto !important;
    box-sizing: border-box !important;
  }

  /* Frosted Glass Floating Booking Bar in Hero */
  .home .booking-bar,
  .home-page .booking-bar {
    display: flex !important;
    gap: 1.25rem !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    background: rgba(255, 255, 255, 0.12) !important; /* transparent frosted glass */
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    border-radius: 18px !important;
    padding: 1.25rem 1.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .home .booking-field label,
  .home-page .booking-field label {
    color: var(--white) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35) !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 0.35rem !important;
  }

  .home .booking-field .input-wrapper,
  .home-page .booking-field .input-wrapper {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: var(--white) !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
  }

  .home .booking-field .input-wrapper:hover,
  .home-page .booking-field .input-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.5) !important;
    background-color: rgba(255, 255, 255, 0.25) !important;
  }

  .home .booking-field .input-wrapper:focus-within,
  .home-page .booking-field .input-wrapper:focus-within {
    border-color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.35) !important;
  }

  .home .booking-field input[type="date"],
  .home-page .booking-field input[type="date"] {
    color: var(--white) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
  }

  .home .booking-field input[type="date"]::-webkit-calendar-picker-indicator,
  .home-page .booking-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) !important; /* white calendar icon */
  }

  .home .booking-field .value,
  .home-page .booking-field .value {
    color: var(--white) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
  }

  .home .booking-field .arrow,
  .home-page .booking-field .arrow {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .home .booking-field .icon,
  .home-page .booking-field .icon {
    color: var(--white) !important;
  }

  /* Dropdown positioning & dark theme */
  .home .guests-dropdown,
  .home-page .guests-dropdown {
    background-color: #13172B !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4) !important;
    color: var(--white) !important;
  }

  .home .guests-dropdown .title,
  .home-page .guests-dropdown .title {
    color: var(--white) !important;
  }

  .home .guests-dropdown .desc,
  .home-page .guests-dropdown .desc {
    color: rgba(255, 255, 255, 0.6) !important;
  }

  .home .guests-dropdown .counter-val,
  .home-page .guests-dropdown .counter-val {
    color: var(--white) !important;
  }

  .home .guests-dropdown .counter-btn,
  .home-page .guests-dropdown .counter-btn {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  .home .guests-dropdown .counter-btn:hover,
  .home-page .guests-dropdown .counter-btn:hover {
    background-color: var(--gold-500) !important;
    border-color: var(--gold-500) !important;
    color: var(--white) !important;
  }

  .home .guests-dropdown select,
  .home-page .guests-dropdown select {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  .home .guests-dropdown select option,
  .home-page .guests-dropdown select option {
    background-color: #13172B !important;
    color: var(--white) !important;
  }

  .home .guests-dropdown .btn-done,
  .home-page .guests-dropdown .btn-done {
    background-color: var(--gold-500) !important;
    color: var(--white) !important;
  }
}

/* 3. Dark Contact Section Styling (#15192E) */
.contact-section-dark {
  background: #15192E !important;
  color: var(--white) !important;
  padding: 5rem 0 !important;
}

.contact-section-dark h2,
.contact-section-dark h3 {
  color: var(--white) !important;
}

.contact-section-dark .contact-info-card {
  background: #1D233F !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  padding: 1.5rem !important;
  border-radius: 12px !important;
  display: flex !important;
  gap: 1.25rem !important;
  align-items: flex-start !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  margin-bottom: 1.5rem;
}

.contact-section-dark .contact-info-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
  border-color: var(--gold-500) !important;
}

.contact-section-dark .contact-info-icon {
  background: rgba(226, 161, 30, 0.12) !important;
  color: var(--gold-500) !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
  flex-shrink: 0 !important;
}

.contact-section-dark .contact-info-text h3 {
  font-size: 1.1rem !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  margin: 0 0 0.5rem 0 !important;
  color: var(--white) !important;
}

.contact-section-dark .contact-info-text p,
.contact-section-dark .contact-info-text a {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  text-decoration: none !important;
}

.contact-section-dark .contact-info-text a:hover {
  color: var(--gold-500) !important;
}

.contact-section-dark .contact-form-wrap {
  background: #1D233F !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 2.5rem !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.contact-section-dark .form-group label {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
}

.contact-section-dark .form-group input,
.contact-section-dark .form-group textarea {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.3s ease !important;
}

.contact-section-dark .form-group input::placeholder,
.contact-section-dark .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

.contact-section-dark .form-group input:focus,
.contact-section-dark .form-group textarea:focus {
  border-color: var(--gold-500) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  outline: none !important;
}

.contact-section-dark .btn-whatsapp {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  margin-top: 1rem;
}

.contact-section-dark .btn-whatsapp:hover {
  background-color: #20ba59 !important;
  border-color: #20ba59 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25) !important;
}

/* 4. Glowing Utility Bar Tagline */
.utility-bar span {
  color: #FFFFFF !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.4) !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
}

/* 5. Responsive Counter Grids */
.counters-overlay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .counters-overlay-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .counters-overlay-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.counters-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .counters-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .counters-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Duplication Safety rule - Hides any duplicate booking form instances rendered in content */
.booking-bar-wrapper ~ .booking-bar-wrapper {
  display: none !important;
}

/* --- MOBILE & ACCESSIBILITY ADVANCED FIXES --- */

/* Scroll locks to prevent background page scroll when mobile overlays are active */
body.nav-menu-open,
body.popup-open {
  overflow: hidden !important;
}

/* Mobile Testimonial Card Padding Fix to prevent narrow squished text columns */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem 1.15rem !important;
    gap: 1rem !important;
  }
  .testimonial-text {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
  }
  .testimonial-card::before {
    font-size: 2.5rem !important;
    top: 1rem !important;
    right: 1.25rem !important;
  }
}

/* FAQ Accordion Visibility Force overrides */
.faq-question {
  color: var(--navy-700) !important;
}
.faq-answer, .faq-answer p, .faq-answer * {
  color: var(--ink) !important;
}

/* Satisfaction Badge Cutout styling (desktop and mobile responsiveness) */
.satisfaction-badge-cutout {
  width: 220px;
  height: 110px;
  background-color: var(--white);
  border-top-left-radius: 110px;
  border-top-right-radius: 110px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1.25rem;
  box-shadow: 0 -8px 25px rgba(0,0,0,0.06);
  box-sizing: border-box;
  z-index: 5;
}

.satisfaction-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy-700);
  line-height: 1;
  display: block;
}

.satisfaction-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy-700);
  margin-top: 4px;
  display: block;
}

@media (max-width: 768px) {
  .satisfaction-badge-cutout {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 2.5rem auto 0 !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-top-left-radius: var(--radius-md) !important;
    border-top-right-radius: var(--radius-md) !important;
    border-radius: var(--radius-md) !important;
    height: auto !important;
    width: 200px !important;
    padding: 1.5rem 1rem !important;
    box-shadow: none !important;
  }
  
  .satisfaction-number {
    color: #0193DE !important;
    font-size: 2.5rem !important;
  }
  
  .satisfaction-label {
    color: rgba(255, 255, 255, 0.8) !important;
  }
}

/* Caret toggle button for mobile dropdowns */
.mobile-dropdown-toggle {
  display: none;
}

@media (max-width: 991px) {
  .nav-item.has-megamenu,
  .nav-item.has-previewdropdown {
    position: relative !important;
  }
  .mobile-dropdown-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    right: 0 !important;
    top: 0.25rem !important;
    width: 2.2rem !important;
    height: 2.2rem !important;
    background: transparent !important;
    border: none !important;
    color: var(--navy-700) !important;
    font-size: 0.8rem !important;
    cursor: pointer !important;
    z-index: 5 !important;
    transition: transform 0.3s ease !important;
    padding: 0 !important;
  }
  .nav-item.active-dropdown > .mobile-dropdown-toggle {
    transform: rotate(180deg) !important;
  }
  .nav-item.has-megamenu > .nav-link,
  .nav-item.has-previewdropdown > .nav-link {
    padding-right: 3rem !important;
  }
}

/* --- ACTIVE LAYOUT & STACKING REFINEMENTS --- */
.header-wrapper {
  z-index: 10000 !important;
}

body {
  padding-top: var(--header-height, 125px) !important;
}

/* Align booking bar container spacing under the fixed header */
.booking-bar-wrapper {
  z-index: 9999 !important;
}

/* Home page specific booking bar styles */
.home .booking-bar-wrapper,
.home-page .booking-bar-wrapper {
  position: absolute !important;
  top: calc(var(--header-height, 125px) + 12px) !important; /* positions exactly 12px below the header */
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  pointer-events: auto !important;
}

/* Admin bar offsets for absolute positioning */
.admin-bar .home .booking-bar-wrapper,
.admin-bar .home-page .booking-bar-wrapper {
  top: calc(var(--header-height, 125px) + 32px + 12px) !important;
}

/* FIX: previously this rule forced the booking bar to position:fixed as soon as
   you scrolled past 50px, which made it freeze/stick on screen and overlap page
   content while scrolling. It now stays in normal absolute flow (inherited from
   the .home .booking-bar-wrapper rule above) so it scrolls away naturally with
   the hero, and only gets a cosmetic dark-glass tint once the header shrinks. */
@media (min-width: 1025px) {
  .header-wrapper.header-scrolled ~ .booking-bar-wrapper {
    padding: 0.45rem 10% !important;
    background: rgba(18, 30, 47, 0.85) !important; /* matching midnight nile glass */
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  }
}

/* Mobile responsive fixes for booking bar */
@media (max-width: 1024px) {
  .booking-bar-wrapper {
    position: absolute !important;
    top: calc(var(--header-height, 70px) + 12px) !important; /* float 12px below mobile header relative to body start */
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 1.5rem) !important;
    max-width: 480px !important;
    z-index: 9999 !important;
  }
  .admin-bar .booking-bar-wrapper {
    top: calc(var(--header-height, 70px) + 32px + 12px) !important;
  }
}

@media (max-width: 782px) {
  .admin-bar .booking-bar-wrapper {
    top: calc(var(--header-height, 70px) + 46px + 12px) !important;
  }
}

/* 2x2 layout grid for mobile screen widths <= 580px to prevent squishing */
@media (max-width: 580px) {
  .booking-bar {
    flex-wrap: wrap !important;
    gap: 0.6rem 0.5rem !important;
    padding: 0.85rem !important;
    border-radius: 16px !important;
    background: rgba(20, 30, 50, 0.85) !important; /* high contrast transparent card */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
  .booking-field {
    flex: 1 1 calc(50% - 0.25rem) !important;
    min-width: 0 !important;
    align-items: stretch !important;
  }
  .booking-field.date-field,
  .booking-field.guests-field {
    flex: 1 1 calc(50% - 0.25rem) !important;
    min-width: 0 !important;
  }
  .booking-action {
    flex: 1 1 calc(50% - 0.25rem) !important;
    min-width: 0 !important;
    align-self: flex-end !important;
    margin-top: 0 !important;
  }
  .booking-field label {
    font-size: 0.6rem !important;
    margin-bottom: 0.2rem !important;
    text-align: left !important;
    align-self: flex-start !important;
    color: rgba(255, 255, 255, 0.9) !important;
  }
  .booking-field .input-wrapper {
    height: 36px !important;
    padding: 0.35rem 0.5rem !important;
    border-radius: 8px !important;
    background-color: var(--white) !important;
  }
  .booking-field .input-wrapper .value {
    max-width: none !important;
    font-size: 0.72rem !important;
  }
  .booking-action .btn-accent {
    height: 36px !important;
    line-height: 36px !important;
    border-radius: 8px !important;
    font-size: 0.72rem !important;
  }
}

/* Fix Hero height layout clearance */
.hero-slider-container {
  padding-top: 0 !important;
  height: calc(100vh - var(--header-height, 125px)) !important;
}
@media (max-width: 768px) {
  .hero-slider-container {
    height: calc(85vh - var(--header-height, 104px)) !important;
    min-height: 380px !important;
  }
}

/* Page banner adjustment to avoid double padding */
.page-banner {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
  height: auto !important;
  min-height: 240px !important;
}

/* Blog Pagination (Stories page) */
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.9rem;
  border-radius: var(--radius-md, 8px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-primary, #1a1a1a);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-pagination .page-numbers:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}
.blog-pagination .page-numbers.current {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: #fff;
}
.blog-pagination .page-numbers.dots {
  border: none;
}
