/* =============================================
   AARADHYA LUXURY PG – PREMIUM CSS
   ============================================= */

:root {
  --blue-light: #EAF4FF;
  --blue-soft: #DCEBFF;
  --blue-primary: #1E5EFF;
  --blue-dark: #0B1B35;
  --blue-mid: #1240A0;
  --white: #FFFFFF;
  --glass-bg: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.18);
  --glass-bg-light: rgba(255,255,255,0.85);
  --shadow-luxury: 0 20px 60px rgba(30,94,255,0.15), 0 4px 20px rgba(0,0,0,0.1);
  --shadow-card: 0 8px 32px rgba(30,94,255,0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --font-heading: 'Outfit', 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--blue-dark);
  overflow-x: hidden;
  cursor: none;
}

body.loaded { cursor: auto; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blue-light); }
::-webkit-scrollbar-thumb { background: var(--blue-primary); border-radius: 10px; }

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--blue-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo {
  font-family: var(--font-heading);
  font-size: 3rem; font-weight: 800;
  color: var(--white); letter-spacing: 3px;
  animation: pulse 1.5s ease infinite;
}
.loader-tagline {
  font-size: 0.9rem; letter-spacing: 6px; text-transform: uppercase;
  color: var(--blue-primary); margin-bottom: 24px;
}
.loader-bar {
  width: 200px; height: 3px; background: rgba(255,255,255,0.15);
  border-radius: 10px; margin: 0 auto; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0%; background: var(--blue-primary);
  border-radius: 10px; animation: load-bar 2s ease forwards;
}
@keyframes load-bar { to { width: 100%; } }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.6;} }

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-primary), #60a5fa);
  z-index: 9998; width: 0%;
  transition: width 0.1s linear;
}

/* ===== CURSOR GLOW ===== */
#cursor-glow {
  position: fixed; width: 32px; height: 32px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,94,255,0.35) 0%, transparent 70%);
  pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  transition: transform 0.1s linear, opacity 0.3s;
}

/* ===== NAVBAR ===== */
#navbar {
  background: transparent;
  padding: 18px 0;
  transition: var(--transition);
  z-index: 1000;
}
#navbar.scrolled {
  background: rgba(11,27,53,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.brand-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--blue-primary);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
}
.brand-text { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.brand-accent { color: #60a5fa; }

.nav-link {
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.85) !important;
  padding: 8px 14px !important; border-radius: 8px;
  position: relative; transition: var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--blue-primary);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.3s ease; border-radius: 2px;
}
.nav-link:hover { color: var(--white) !important; }
.nav-link:hover::after { transform: scaleX(1); }

.btn-book-nav {
  background: var(--blue-primary); color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  border: 2px solid var(--blue-primary);
  transition: var(--transition);
}
.btn-book-nav:hover {
  background: transparent; color: var(--white) !important;
  box-shadow: 0 0 20px rgba(30,94,255,0.5);
}

/* Hamburger */
.navbar-toggler { border: none; background: transparent; padding: 4px; }
.hamburger-icon { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger-icon span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slider .swiper-slide {
  background-size: cover; background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slider .swiper-slide-active { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(11,27,53,0.92) 0%, rgba(11,27,53,0.75) 50%, rgba(30,94,255,0.25) 100%);
}
.hero-overlay::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(11,27,53,0.9) 0%, transparent 20%);
}

/* Particles */
.particles {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(30,94,255,0.4);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

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

.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(30,94,255,0.25);
  border: 1px solid rgba(30,94,255,0.5);
  backdrop-filter: blur(10px);
  color: #a5c8ff; padding: 8px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.1; margin-bottom: 20px;
  color: var(--white);
  animation: fadeInUp 0.9s ease 0.1s both;
}
.hero-title-line { display: block; }
.hero-title-line.accent {
  background: linear-gradient(135deg, #60a5fa, var(--blue-primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.75); max-width: 480px;
  line-height: 1.7; margin-bottom: 32px;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-stats {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.3s both;
}
.stat-item { text-align: center; padding: 0 20px; }
.stat-item:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.stat-item > span:nth-child(2) { color: var(--blue-primary); font-weight: 800; font-size: 1.5rem; }
.stat-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.btn-hero-primary {
  background: var(--blue-primary); color: var(--white) !important;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--blue-primary);
  text-decoration: none; display: inline-flex; align-items: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(30,94,255,0.4);
}
.btn-hero-primary:hover {
  background: transparent; color: var(--white) !important;
  box-shadow: 0 8px 30px rgba(30,94,255,0.6);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent; color: var(--white) !important;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none; display: inline-flex; align-items: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-hero-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.hero-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 0.88rem; text-decoration: none;
  transition: color 0.3s;
  animation: fadeInUp 0.9s ease 0.5s both;
}
.hero-whatsapp i { color: #25d366; font-size: 1.2rem; }
.hero-whatsapp:hover { color: var(--white); }

/* BOOKING FORM */
.booking-col { padding: 40px 0 20px; }

.booking-form-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  animation: fadeInRight 1s ease 0.3s both;
}

.booking-form-header {
  display: flex; align-items: center;
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 28px;
  padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.booking-form-header i { color: var(--blue-primary); font-size: 1.2rem; }

.form-group-luxury { margin-bottom: 16px; }
.form-group-luxury label {
  display: block; font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.7); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.8px;
}

.luxury-select, .luxury-input {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white); font-family: var(--font-body); font-size: 0.88rem;
  transition: var(--transition);
  appearance: none;
}
.luxury-select option { background: var(--blue-dark); color: var(--white); }
.luxury-select:focus, .luxury-input:focus {
  outline: none;
  border-color: var(--blue-primary);
  background: rgba(30,94,255,0.1);
  box-shadow: 0 0 0 3px rgba(30,94,255,0.15);
}
.luxury-input::placeholder { color: rgba(255,255,255,0.35); }
textarea.luxury-input { resize: none; }

.form-buttons { display: flex; gap: 12px; margin-top: 20px; }
.btn-form-primary {
  flex: 1; padding: 13px; background: var(--blue-primary);
  color: var(--white); border: 2px solid var(--blue-primary);
  border-radius: 50px; font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.btn-form-primary:hover {
  background: transparent; box-shadow: 0 6px 20px rgba(30,94,255,0.4);
  transform: translateY(-1px);
}
.btn-form-outline {
  flex: 1; padding: 13px; background: transparent;
  color: var(--white); border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50px; font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.btn-form-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--blue-dark); padding: 20px 0;
  border-top: 1px solid rgba(30,94,255,0.3);
}
.trust-items {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 500;
}
.trust-item i { color: var(--blue-primary); font-size: 0.9rem; }
.trust-sep { color: var(--blue-primary); font-size: 0.7rem; }

/* ===== SECTION COMMONS ===== */
section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue-primary); margin-bottom: 14px;
  padding: 6px 18px; background: rgba(30,94,255,0.08);
  border-radius: 50px; border: 1px solid rgba(30,94,255,0.2);
}
.section-eyebrow.light { color: #60a5fa; background: rgba(96,165,250,0.15); border-color: rgba(96,165,250,0.3); }
.section-title {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; color: var(--blue-dark); line-height: 1.2; margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-title .accent {
  background: linear-gradient(135deg, var(--blue-primary), #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1rem; color: rgba(11,27,53,0.6); max-width: 540px; margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle.light { color: rgba(255,255,255,0.6); }

/* ===== FACILITIES ===== */
.facilities-section { background: var(--blue-light); }

.facilities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1250px;
  margin: 0 auto;
}

.facility-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 36px 20px; text-align: center;
  border: none;
  box-shadow: 0 4px 24px rgba(30,94,255,0.04);
  transition: var(--transition);
  cursor: default;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex: 1 1 200px;
  max-width: 250px;
}
.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
}
.facility-icon-wrap {
  margin: 0 auto 18px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: var(--blue-primary);
  transition: var(--transition);
}
.facility-card:hover .facility-icon-wrap {
  transform: scale(1.1);
}
.facility-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--blue-dark); margin: 0; line-height: 1.4; }

/* ===== ROOMS ===== */
.rooms-section { background: var(--white); }
.rooms-slider { padding-bottom: 60px !important; }

.room-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: var(--transition); height: 100%;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-luxury); }
.room-img-wrap { position: relative; overflow: hidden; height: 240px; }
.room-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img-wrap img { transform: scale(1.08); }
.room-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--blue-primary); color: white;
  padding: 5px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
}
.room-body { padding: 24px; }
.room-title {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
  color: var(--blue-dark); margin-bottom: 14px;
}
.room-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.room-amenities span {
  font-size: 0.75rem; color: var(--blue-primary); font-weight: 500;
  background: rgba(30,94,255,0.07); padding: 4px 12px;
  border-radius: 50px; display: flex; align-items: center; gap: 5px;
}
.room-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.room-price { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--blue-primary); }
.room-btns { display: flex; gap: 8px; }
.btn-room-primary {
  padding: 8px 18px; background: var(--blue-primary); color: white !important;
  border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  text-decoration: none; transition: var(--transition);
}
.btn-room-primary:hover { background: var(--blue-mid); transform: translateY(-1px); }
.btn-room-outline {
  padding: 8px 18px; background: transparent; color: var(--blue-primary) !important;
  border: 2px solid var(--blue-primary); border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: var(--transition);
  display: flex; align-items: center;
}
.btn-room-outline:hover { background: var(--blue-primary); color: white !important; }

/* Swiper custom */
.rooms-pagination .swiper-pagination-bullet,
.testi-pagination .swiper-pagination-bullet { background: rgba(30,94,255,0.3); opacity: 1; }
.rooms-pagination .swiper-pagination-bullet-active,
.testi-pagination .swiper-pagination-bullet-active { background: var(--blue-primary); }
.swiper-button-next, .swiper-button-prev { color: var(--blue-primary) !important; }

/* ===== VIDEO SECTION ===== */
.video-section { background: var(--blue-soft); padding: 100px 0; }
.video-wrapper {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-luxury);
}
.video-wrapper video { width: 100%; display: block; }
.video-overlay {
  position: absolute; inset: 0;
  background: rgba(11,27,53,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease;
}
.video-play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white); border: none; cursor: pointer;
  color: var(--blue-primary); font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  padding-left: 4px;
  box-shadow: 0 8px 32px rgba(30,94,255,0.3);
  transition: var(--transition);
}
.video-play-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(30,94,255,0.5); }

/* ===== FOOD MENU ===== */
.food-section { background: var(--white); }

.food-tab-buttons {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 36px;
}
.food-tab-btn {
  padding: 10px 24px; border-radius: 50px;
  background: transparent; border: 2px solid rgba(30,94,255,0.2);
  color: var(--blue-dark); font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: var(--transition);
  font-family: var(--font-body);
}
.food-tab-btn:hover, .food-tab-btn.active {
  background: var(--blue-primary); border-color: var(--blue-primary);
  color: var(--white); box-shadow: 0 4px 16px rgba(30,94,255,0.35);
}

.food-content { display: none; }
.food-content.active { display: block; animation: fadeInUp 0.4s ease; }

.meal-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.meal-card {
  background: var(--blue-light); border-radius: var(--radius-md);
  padding: 28px 22px; border: 1px solid transparent;
  transition: var(--transition);
}
.meal-card:hover {
  background: var(--white); border-color: rgba(30,94,255,0.15);
  box-shadow: var(--shadow-card); transform: translateY(-4px);
}
.meal-card.highlight { background: rgba(30,94,255,0.06); border: 1px solid rgba(30,94,255,0.15); }
.meal-icon { font-size: 1.6rem; margin-bottom: 10px; }
.meal-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--blue-primary); margin-bottom: 8px;
}
.meal-items { font-size: 0.88rem; color: rgba(11,27,53,0.7); line-height: 1.65; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--blue-dark); }
.gallery-section .section-header .section-title { color: var(--white); }
.gallery-section .section-subtitle { color: rgba(255,255,255,0.5); }
.gallery-section .section-eyebrow { color: #60a5fa; background: rgba(96,165,250,0.12); border-color: rgba(96,165,250,0.25); }

.gallery-marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0;
}
.gallery-marquee-row {
  width: 100%;
  overflow: hidden;
  display: flex;
}
.gallery-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}
.marquee-left .gallery-marquee-track {
  animation: scrollLeft 40s linear infinite;
}
.marquee-right .gallery-marquee-track {
  animation: scrollRight 40s linear infinite;
}
.gallery-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}
@keyframes scrollRight {
  0% { transform: translateX(calc(-50% - 8px)); }
  100% { transform: translateX(0); }
}

.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  cursor: pointer;
  width: 320px;
  height: 240px;
  flex-shrink: 0;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(30,94,255,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
  color: white; font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.93);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s ease; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 12px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; cursor: pointer; border-radius: 50%;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 0.9rem;
}
.lightbox-close { top: -20px; right: -20px; }
.lightbox-prev { left: -52px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: -52px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--blue-primary); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--blue-light); }
.testimonials-slider { padding-bottom: 60px !important; }
.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: var(--shadow-card);
  border: 1px solid rgba(30,94,255,0.06);
  transition: var(--transition);
  height: 100%;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-luxury); }
.testi-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 18px; }
.testi-text { font-size: 0.95rem; color: rgba(11,27,53,0.7); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { font-size: 2.5rem; color: var(--blue-primary); }
.testi-name { font-weight: 700; font-size: 0.92rem; color: var(--blue-dark); }
.testi-role { font-size: 0.78rem; color: rgba(11,27,53,0.5); margin-top: 2px; }

/* ===== SAFETY SECTION ===== */
.safety-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0f2d5a 100%);
  padding: 100px 0;
}
.safety-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.safety-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 28px 22px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.safety-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(30,94,255,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(30,94,255,0.2);
}
.safety-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-primary), #1240a0);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; margin-bottom: 14px;
}
.safety-card h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.safety-card p { color: rgba(255,255,255,0.55); font-size: 0.82rem; line-height: 1.6; margin: 0; }

/* ===== LOCATION ===== */
.location-section { background: var(--white); }
.location-info-card {
  background: var(--blue-light); border-radius: var(--radius-lg);
  padding: 32px 28px; height: 100%;
  border: 1px solid rgba(30,94,255,0.1);
}
.location-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.loc-icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 12px;
  background: var(--blue-primary); color: white;
  display: flex; align-items: center; justify-content: center;
}
.location-detail h5 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--blue-dark); margin-bottom: 4px; }
.location-detail p, .location-detail a { font-size: 0.9rem; color: rgba(11,27,53,0.65); line-height: 1.6; margin: 0; text-decoration: none; }
.location-detail a:hover { color: var(--blue-primary); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; height: 100%; min-height: 350px; box-shadow: var(--shadow-luxury); }
.map-wrapper iframe { height: 100%; min-height: 350px; }

.btn-whatsapp {
  background: #25d366; color: var(--white) !important;
  padding: 12px 24px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ea852; transform: translateY(-2px); }

/* ===== CONTACT ===== */
.contact-section { background: var(--blue-soft); }

.contact-info-wrap h3 {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  color: var(--blue-dark); margin-bottom: 28px;
}
.contact-method { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.contact-btn-call, .contact-btn-wa, .contact-btn-mail {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius-md);
  text-decoration: none; transition: var(--transition);
}
.contact-btn-call { background: var(--blue-primary); color: white !important; }
.contact-btn-wa { background: #25d366; color: white !important; }
.contact-btn-mail { background: var(--blue-dark); color: white !important; }
.contact-btn-call:hover { background: var(--blue-mid); transform: translateX(4px); }
.contact-btn-wa:hover { background: #1ea852; transform: translateX(4px); }
.contact-btn-mail:hover { background: #0a1528; transform: translateX(4px); }
.contact-btn-call i, .contact-btn-wa i, .contact-btn-mail i { font-size: 1.3rem; min-width: 24px; }
.contact-btn-call span, .contact-btn-wa span, .contact-btn-mail span { font-weight: 700; font-size: 0.9rem; display: block; }
.contact-btn-call small, .contact-btn-wa small, .contact-btn-mail small { font-size: 0.78rem; opacity: 0.8; }

.contact-address {
  font-size: 0.85rem; color: rgba(11,27,53,0.6);
  line-height: 1.6; padding: 14px 0;
  border-top: 1px solid rgba(30,94,255,0.1);
}

.contact-form-luxury {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 36px; box-shadow: var(--shadow-card);
}
.contact-form-luxury .form-group-luxury label { color: rgba(11,27,53,0.65); }
.contact-form-luxury .luxury-select,
.contact-form-luxury .luxury-input {
  background: var(--blue-light); border-color: rgba(30,94,255,0.15);
  color: var(--blue-dark);
}
.contact-form-luxury .luxury-select option { background: white; color: var(--blue-dark); }
.contact-form-luxury .luxury-input::placeholder { color: rgba(11,27,53,0.4); }
.contact-form-luxury .luxury-select:focus,
.contact-form-luxury .luxury-input:focus {
  background: var(--white);
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(30,94,255,0.1);
}
/* Fix submit button visibility on white card background */
.contact-form-luxury .btn-hero-primary {
  background: var(--blue-primary);
  color: var(--white) !important;
  border-color: var(--blue-primary);
  width: 100%;
  justify-content: center;
}
.contact-form-luxury .btn-hero-primary:hover {
  background: var(--blue-mid);
  color: var(--white) !important;
  border-color: var(--blue-mid);
}

/* ===== FOOTER ===== */
.footer { background: var(--blue-dark); color: white; }
.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 300px; margin-bottom: 28px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue-primary); border-color: var(--blue-primary); color: white; transform: translateY(-2px); }
.footer-heading { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer-contact-item i { color: var(--blue-primary); margin-top: 3px; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 10px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: white; }
.footer-site { color: var(--blue-primary) !important; }

/* ===== FLOATING BUTTONS ===== */
.float-whatsapp {
  position: fixed; bottom: 90px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: pulse-wa 2s ease infinite;
}
.float-whatsapp:hover { transform: scale(1.1); }
@keyframes pulse-wa {
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.5);}
  50%{box-shadow:0 4px 32px rgba(37,211,102,0.8);}
}

#scrollTop {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--blue-primary); color: white;
  border: none; cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(30,94,255,0.4);
  transition: var(--transition); opacity: 0; visibility: hidden;
}
#scrollTop.visible { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--blue-mid); transform: translateY(-2px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  section { padding: 72px 0; }
  .hero-text-col { text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-badge { margin: 0 auto 24px; }
  .hero-subtitle { margin: 0 auto 32px; }
  .booking-col { padding: 20px 0 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-section .col-lg-5 { margin-bottom: 48px; }
  .safety-section .section-title.light { text-align: center; }
  .safety-section .section-eyebrow.light { display: block; text-align: center; }
  .safety-section .section-subtitle.light { text-align: center; margin: 0 auto; }
  .safety-section a { display: block; text-align: center; }
}

@media (max-width: 768px) {
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .booking-form-card { padding: 24px 18px; }
  .form-buttons { flex-direction: column; }
  .trust-sep { display: none; }
  .trust-items { gap: 12px; }
  .lightbox-prev { left: -16px; }
  .lightbox-next { right: -16px; }
  .contact-form-luxury { padding: 28px 20px; }
  .rooms-mobile-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: none; /* Firefox */
    justify-content: flex-start !important;
  }
  .rooms-mobile-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  .rooms-mobile-scroll > div {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: center;
  }
  
  /* Mobile Gallery 3-Image Marquee */
  .gallery-item {
    width: calc(33.33vw - 21px) !important;
    height: 140px !important;
    flex-shrink: 0;
  }
}

@media (max-width: 576px) {
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .safety-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 2; }
  .hero-title { font-size: 2rem; }
  .meal-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-item { padding: 0 12px; }
  .stat-num { font-size: 1.6rem; }
  .room-footer { flex-direction: column; align-items: flex-start; }
}

/* Accessibility */
:focus-visible { outline: 2px solid var(--blue-primary); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
