/* ===================================================
   RAGHAV HOTEL PALACE - PREMIUM STYLESHEET
   Mobile-First Android App Style + Luxury Desktop Design
   =================================================== */

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

:root {
  --color-gold: #B77916;
  --color-gold-dark: #8F5B0A;
  --color-gold-light: #D9A441;
  --color-cream: #FBF8F2;
  --color-white: #FFFFFF;
  --color-dark-navy: #071522;
  --color-text: #171717;
  --color-secondary-text: #6B6B6B;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-card: 20px;
  --radius-button: 12px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(7, 21, 34, 0.05);
  --shadow-md: 0 8px 24px -4px rgba(7, 21, 34, 0.08);
  --shadow-lg: 0 16px 36px -8px rgba(7, 21, 34, 0.12);
  --shadow-gold: 0 8px 20px -4px rgba(183, 121, 22, 0.3);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16.5px;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #090D12;
  background-image: radial-gradient(circle at 50% 20%, #151F2B 0%, #090D12 70%);
  color: var(--color-text);
  font-family: var(--font-body);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -webkit-font-smoothing: antialiased;
}

/* ===================================================
   MOBILE-ONLY APPLICATION SHELL
   =================================================== */
.app-container {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  background-color: var(--color-cream);
  position: relative;
  overflow-x: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  padding-bottom: 74px; /* Space for fixed bottom navigation */
}

/* Typography Utilities */
.font-heading {
  font-family: var(--font-heading);
}

.font-body {
  font-family: var(--font-body);
}

/* Gold Gradient Utilities */
.bg-gold-gradient {
  background: linear-gradient(135deg, #D9A441 0%, #B77916 50%, #8F5B0A 100%);
}

.bg-gold-subtle {
  background: linear-gradient(135deg, rgba(217, 164, 65, 0.15) 0%, rgba(183, 121, 22, 0.08) 100%);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #D9A441 0%, #B77916 50%, #8F5B0A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Android App-Style Cards */
.app-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid rgba(183, 121, 22, 0.12);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.app-card:hover {
  border-color: rgba(183, 121, 22, 0.35);
  box-shadow: var(--shadow-lg);
}

/* Mobile Touch Feedback */
.touch-press {
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.touch-press:active {
  transform: scale(0.96);
  opacity: 0.9;
}

/* App Buttons */
.btn-gold {
  background: linear-gradient(135deg, #D9A441 0%, #B77916 50%, #8F5B0A 100%);
  color: #FFFFFF;
  font-weight: 600;
  border-radius: var(--radius-button);
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-gold);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(183, 121, 22, 0.45);
}

.btn-gold:active {
  transform: translateY(0) scale(0.98);
}

.btn-gold-outline {
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold-dark);
  background: transparent;
  font-weight: 600;
  border-radius: var(--radius-button);
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-gold-outline:hover {
  background: rgba(183, 121, 22, 0.08);
  border-color: var(--color-gold-dark);
  color: var(--color-gold-dark);
}

/* Filter Pills */
.filter-pill {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(183, 121, 22, 0.2);
  background: #FFFFFF;
  color: #4A4A4A;
}

.filter-pill.active {
  background: linear-gradient(135deg, #D9A441 0%, #B77916 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(183, 121, 22, 0.25);
}

/* Floating Search Card */
.floating-search-card {
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 14px 35px -10px rgba(7, 21, 34, 0.18);
  border: 1px solid rgba(183, 121, 22, 0.15);
}

/* Mobile Fixed Bottom Navigation */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 68px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(183, 121, 22, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 50;
  box-shadow: 0 -4px 20px rgba(7, 21, 34, 0.08);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.nav-item-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #71717A;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  width: 25%;
  height: 100%;
  position: relative;
  transition: all 0.2s ease;
}

.nav-item-mobile i {
  font-size: 20px;
  margin-bottom: 4px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-item-mobile.active {
  color: var(--color-gold);
  font-weight: 600;
}

.nav-item-mobile.active i {
  transform: translateY(-2px);
  color: var(--color-gold);
}

.nav-item-mobile.active::before {
  content: '';
  position: absolute;
  top: 0;
  width: 32px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 0 0 4px 4px;
}

/* Circular Quick Actions */
.action-circle-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFDF9;
  border: 1.5px solid rgba(183, 121, 22, 0.25);
  box-shadow: 0 4px 14px rgba(183, 121, 22, 0.1);
  transition: all 0.25s ease;
  margin: 0 auto;
}

.action-circle-btn i {
  font-size: 22px;
  color: var(--color-gold);
  transition: transform 0.2s ease;
}

.quick-action-card:hover .action-circle-btn {
  background: linear-gradient(135deg, #D9A441 0%, #B77916 100%);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(183, 121, 22, 0.35);
}

.quick-action-card:hover .action-circle-btn i {
  color: #FFFFFF;
}

/* Hide scrollbars for pill carousels while keeping horizontal scroll */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Drawer Menu (Mobile Slide-out) */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 34, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 310px;
  max-width: 82vw;
  background: #FFFFFF;
  z-index: 1000;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  
  /* Hidden off-screen by default */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s ease;
}

/* Align to centered app container on larger screens */
@media (min-width: 431px) {
  .mobile-drawer {
    left: calc(50% - 215px);
  }
  .mobile-drawer.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Align to screen edge on mobile */
@media (max-width: 430px) {
  .mobile-drawer {
    left: 0;
  }
  .mobile-drawer.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Lightbox Styling */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 34, 0.95);
  backdrop-filter: blur(8px);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 16px;
}

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

.lightbox-img-wrapper {
  max-width: 90vw;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}

/* Toast Container */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  width: 90%;
  max-width: 400px;
}

.toast {
  pointer-events: auto;
  background: #FFFFFF;
  border-left: 4px solid var(--color-gold);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(7, 21, 34, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Micro-animations */
@keyframes pulseSubtle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.pulse-badge {
  animation: pulseSubtle 2.5s infinite ease-in-out;
}

/* Bottom navigation clearance is handled by .app-container */

/* ===================================================
   HERO BANNER SLIDER & CAROUSEL UTILITIES
   =================================================== */
.hero-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  width: 100%;
  flex: 0 0 100%;
  min-width: 100%;
  overflow: hidden;
}

.hero-dot {
  cursor: pointer;
  border: none;
  outline: none;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-dot.active {
  width: 26px !important;
  background-color: #FFFFFF !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Scrollbar hiding utility */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ===================================================
   FLOATING ACTION BUTTONS (CALL & WHATSAPP)
   =================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 82px;
  right: max(14px, calc(50% - 215px + 14px));
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 45;
  pointer-events: none;
}

.floating-action-btn {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF !important;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.floating-action-btn:active {
  transform: scale(0.92);
}

.floating-action-btn:hover {
  transform: scale(1.1);
}

.floating-btn-call {
  background: linear-gradient(135deg, #D49326 0%, #A4650E 100%);
  box-shadow: 0 6px 18px rgba(164, 101, 14, 0.45);
}

.floating-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  animation: fabPulse 3s infinite;
}

@keyframes fabPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===================================================
   LIGHT ROYAL TEXTURED HEADER & FOOTER
   =================================================== */
.header-texture-light {
  background-color: #FAF8F5;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(183, 121, 22, 0.05) 0%, transparent 80%),
    url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 0l18 18-18 18L0 18z' fill='%23B6731B' fill-opacity='0.045' fill-rule='evenodd'/%3E%3Ccircle cx='18' cy='18' r='1.5' fill='%23B6731B' fill-opacity='0.09'/%3E%3C/svg%3E");
  border-bottom: 1px solid rgba(183, 121, 22, 0.18);
  box-shadow: 0 4px 16px rgba(7, 21, 34, 0.04);
}

.footer-texture-light {
  background-color: #FAF8F5;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(183, 121, 22, 0.05) 0%, transparent 80%),
    url("data:image/svg+xml,%3Csvg width='36' height='36' viewBox='0 0 36 36' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 0l18 18-18 18L0 18z' fill='%23B6731B' fill-opacity='0.045' fill-rule='evenodd'/%3E%3Ccircle cx='18' cy='18' r='1.5' fill='%23B6731B' fill-opacity='0.09'/%3E%3C/svg%3E");
  border-top: 1px solid rgba(183, 121, 22, 0.18);
  box-shadow: 0 -4px 16px rgba(7, 21, 34, 0.03);
}



