/* 
 * Kanchan Mohan Residency - Premium Hostel Design System
 * Theme: Midnight Blue & Champagne Gold
 */

:root {
  /* Colors */
  /* Colors */
  --color-primary: #0a192f; /* Midnight Blue - Text/Accents */
  --color-secondary: #ffd700; /* Brighter Gold */
  --color-secondary-light: #f3e5ab;
  --color-text-main: #333333; /* Dark text for light bg */
  --color-text-light: #e6f1ff; /* Light text for dark panels */
  --color-bg-dark: #f8f8f8; /* Swapped to Light Cream as main base */
  --color-bg-light: #ffffff; /* White */
  --color-bg-panel: #0a192f; /* Dark Blue for panels like Nav/Footer */
  --color-white: #ffffff;
  --color-accent: #64ffda; /* Subtle Cyan Accent (optional) */
  --color-white: #ffffff;

  /* Fonts */
  --font-heading: "Playfair Display", serif;
  --font-body: "Lato", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Transitions */
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(
    --color-bg-dark
  ); /* Now defined as light cream in root */
  color: var(--color-text-main); /* Now defined as dark gray in root */
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-overflow-scrolling: touch;
  /* Safari fix for 100vh */
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

/* Safari 100vh fix for html */
html {
  height: -webkit-fill-available;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-secondary);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* Typography Utilities */
.text-gold {
  color: var(--color-secondary);
}
.text-white {
  color: var(--color-white);
}
.text-center {
  text-align: center;
}
.uppercase {
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn:hover {
  background: var(--color-secondary-light);
  color: var(--color-bg-dark);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.btn-filled {
  background: var(--color-secondary);
  color: var(--color-bg-dark);
}

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

/* Section Common */
.section-padding {
  padding: var(--spacing-xl) 0;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  padding: 1rem 0;
  background: #ffffff; /* Clean white navbar */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(205, 164, 94, 0.2);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 1.5rem;
}

.logo i {
  color: #000000;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: #000000; /* Pure black text */
  position: relative;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--color-secondary);
}

.nav-links a:not(.nav-btn):not(.nav-phone)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-secondary);
  transition: width 0.3s ease;
}

.nav-links a:not(.nav-btn):not(.nav-phone):hover::after {
  width: 100%;
}

/* Phone Icon */
.nav-phone {
  color: #000000 !important;
  font-size: 1rem;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-phone:hover {
  background: rgba(205, 164, 94, 0.15);
}

/* Sign In Button */
.nav-btn.nav-signin {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  color: #000000 !important;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  box-shadow: none;
}

.nav-btn.nav-signin:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary) !important;
  background: rgba(205, 164, 94, 0.1);
}

.nav-btn.nav-signin:focus,
.nav-btn.nav-signin:active {
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-btn.nav-signin i {
  font-size: 0.85rem;
}

/* User Menu (when logged in) */
.nav-user-menu {
  position: relative;
}

.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px solid rgba(205, 164, 94, 0.5);
  border-radius: 25px;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(205, 164, 94, 0.1);
}

.nav-user-btn:hover {
  border-color: var(--color-secondary);
  background: rgba(205, 164, 94, 0.2);
}

.nav-user-btn i:first-child {
  font-size: 1.2rem;
  color: var(--color-secondary);
}

.nav-user-name {
  font-weight: 500;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-user-btn i:last-child {
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.nav-user-menu.active .nav-user-btn i:last-child {
  transform: rotate(180deg);
}

.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #1a1f38;
  border: 1px solid rgba(205, 164, 94, 0.3);
  border-radius: 12px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.nav-user-menu.active .nav-user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-user-info,
.nav-user-email {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #fff;
  font-size: 0.9rem;
}

.nav-user-info i,
.nav-user-email i {
  color: var(--color-secondary);
  width: 16px;
}

.nav-user-info span {
  font-weight: 600;
}

.nav-user-email span {
  font-size: 0.8rem;
  opacity: 0.7;
}

.nav-user-dropdown hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 8px 0;
}

.nav-user-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: #fff;
  font-size: 0.9rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-user-item:hover {
  background: rgba(205, 164, 94, 0.15);
  color: var(--color-secondary);
}

.nav-user-item i {
  width: 16px;
  color: var(--color-secondary);
}

.nav-logout-btn:hover {
  background: rgba(255, 100, 100, 0.15);
  color: #ff6b6b;
}

.nav-logout-btn:hover i {
  color: #ff6b6b;
}

/* Book Now Button */
.nav-btn.nav-book {
  padding: 10px 22px;
  background: var(--color-secondary);
  color: #fff !important;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-btn.nav-book:hover {
  background: #b8943e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(205, 164, 94, 0.4);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: #000000;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh; /* Fallback */
  height: 100svh; /* Modern mobile browsers */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

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

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(2, 12, 27, 0.7) 0%,
    rgba(2, 12, 27, 0.4) 50%,
    rgba(2, 12, 27, 1) 100%
  );
}

.hero-content h1 {
  font-size: 5rem; /* Larger hero text */
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
  font-size: 1.5rem; /* Larger sub-heading */
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: #e6f1ff; /* Light text for dark bg */
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Hero Static Styles */
.hero-static {
  position: relative;
  width: 100%;
  height: 100vh; /* Fallback */
  height: 100svh; /* Modern mobile browsers */
  min-height: 600px; /* Prevent collapse on small screens */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-static img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform; /* Performance fix for Safari */
  -webkit-transform: translateZ(0); /* Hardware acceleration */
  transform: translateZ(0);
}

.hero-content-static {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 900px;
  padding: 60px 40px;
  /* Soft radial gradient for text readability */
  background: radial-gradient(circle, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Floating Particles */
.hero-content-static::before,
.hero-content-static::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(2px);
  animation: floatParticle 8s infinite linear;
}

.hero-content-static::before {
  top: 20%;
  left: 20%;
  width: 6px;
  height: 6px;
  animation-duration: 6s;
}

.hero-content-static::after {
  bottom: 30%;
  right: 20%;
  width: 8px;
  height: 8px;
  animation-duration: 9s;
  animation-delay: 1s;
}

@keyframes floatParticle {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% { transform: translateY(-100px) translateX(20px); opacity: 0; }
}

.hero-content-static .medical-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(205, 164, 94, 0.15);
  border: 1px solid rgba(205, 164, 94, 0.6);
  padding: 12px 28px;
  border-radius: 30px;
  color: var(--color-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1.5px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 
    0 0 20px rgba(205, 164, 94, 0.15),
    inset 0 0 20px rgba(205, 164, 94, 0.05);
  animation: badgeGlow 3s ease-in-out infinite alternate, heroFadeInUp 0.8s ease-out 0.1s both;
}

.hero-content-static h2 {
  font-size: 1.3rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  font-weight: 500;
  animation: heroFadeInUp 0.8s ease-out 0.25s both;
}

.hero-content-static h1 {
  font-family: var(--font-heading);
  font-size: 4.8rem; /* Slightly larger */
  font-style: italic;
  font-weight: 700; /* Bolder */
  color: #fff; /* White base for better contrast */
  margin-bottom: 2rem;
  text-shadow: 
    0 0 10px rgba(255, 215, 0, 0.6), /* Gold glow */
    0 0 20px rgba(255, 215, 0, 0.3),
    2px 2px 4px rgba(0, 0, 0, 0.8); /* Dark shadow for legibility */
  line-height: 1.1;
  letter-spacing: 1px;
  animation: heroFadeInUp 0.9s ease-out 0.4s both;
}

.hero-content-static h1 span {
  color: var(--color-secondary); /* Highlight specific words if needed */
}

/* Hero Phone Number Enhanced */
.hero-phone-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 2.5rem;
  padding: 12px 35px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.5); /* Gold border */
  transition: all 0.3s ease;
  animation: heroFadeInUp 0.8s ease-out 0.55s both;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.hero-phone-number:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.hero-phone-number i {
  color: var(--color-secondary);
  animation: vibe 1s infinite alternate;
}

@keyframes vibe {
  0% { transform: rotate(-10deg); }
  100% { transform: rotate(10deg); }
}

.hero-content-static .hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeInUp 0.8s ease-out 0.7s both;
  margin-bottom: 3rem;
}

/* Hero Stats Style - Premium Glass Bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  animation: heroFadeInUp 0.8s ease-out 0.9s both;
  background: rgba(10, 25, 47, 0.7); /* Darker background for contrast */
  padding: 20px 40px;
  border-radius: 16px;
  border-top: 2px solid var(--color-secondary); /* Gold top border */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff; /* White text */
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); /* Gold shadow */
}

.stat-label {
  font-size: 0.85rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--color-secondary), transparent);
}

/* Button styles inheritance */
.hero-content-static .btn-gold {
  background: linear-gradient(135deg, #cda45e 0%, #b8943e 100%);
  color: #fff;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(205, 164, 94, 0.35);
  position: relative;
  overflow: hidden;
}

.hero-content-static .btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.hero-content-static .btn-gold:hover::before {
  left: 100%;
}

.hero-content-static .btn-gold:hover {
  background: linear-gradient(135deg, #ddb86a 0%, #c9a54e 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 10px 30px rgba(205, 164, 94, 0.55),
    0 0 50px rgba(205, 164, 94, 0.25),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-content-static .btn-outline {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-content-static .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: width 0.4s ease;
  z-index: -1;
}

.hero-content-static .btn-outline:hover::before {
  width: 100%;
}

.hero-content-static .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.15),
    0 0 30px rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 900px;
  padding: 40px;
  background: rgba(10, 25, 47, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(205, 164, 94, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Staggered entrance animations for hero content */
.hero-slide.active .hero-slide-content .medical-badge {
  animation: heroFadeInUp 0.8s ease-out 0.1s both;
}

.hero-slide.active .hero-slide-content h2 {
  animation: heroFadeInUp 0.8s ease-out 0.25s both;
}

.hero-slide.active .hero-slide-content h1 {
  animation: heroFadeInUp 0.9s ease-out 0.4s both;
}

.hero-slide.active .hero-slide-content p {
  animation: heroFadeInUp 0.8s ease-out 0.55s both;
}

.hero-slide.active .hero-slide-content .hero-btns {
  animation: heroFadeInUp 0.8s ease-out 0.7s both;
}

@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide-content .medical-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(205, 164, 94, 0.15);
  border: 1px solid rgba(205, 164, 94, 0.6);
  padding: 12px 28px;
  border-radius: 30px;
  color: var(--color-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1.5px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 
    0 0 20px rgba(205, 164, 94, 0.15),
    inset 0 0 20px rgba(205, 164, 94, 0.05);
  animation: badgeGlow 3s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
  0% { box-shadow: 0 0 20px rgba(205, 164, 94, 0.15), inset 0 0 20px rgba(205, 164, 94, 0.05); }
  100% { box-shadow: 0 0 30px rgba(205, 164, 94, 0.25), inset 0 0 25px rgba(205, 164, 94, 0.08); }
}

.hero-slide-content .medical-badge i {
  margin-right: 10px;
  font-size: 1rem;
}

.hero-slide-content h2 {
  font-size: 1.3rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-slide-content h1 {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(205, 164, 94, 0.3),
    0 0 80px rgba(205, 164, 94, 0.1);
  line-height: 1.15;
  letter-spacing: 1px;
  animation: heroTextGlow 3s ease-in-out infinite alternate;
}

@keyframes heroTextGlow {
  0% { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 40px rgba(205, 164, 94, 0.2), 0 0 80px rgba(205, 164, 94, 0.05); }
  100% { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 50px rgba(205, 164, 94, 0.35), 0 0 100px rgba(205, 164, 94, 0.15); }
}

.hero-slide-content p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-slide-content .hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-slide-content .btn-gold {
  background: linear-gradient(135deg, #cda45e 0%, #b8943e 100%);
  color: #fff;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(205, 164, 94, 0.35);
  position: relative;
  overflow: hidden;
}

.hero-slide-content .btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.hero-slide-content .btn-gold:hover::before {
  left: 100%;
}

.hero-slide-content .btn-gold:hover {
  background: linear-gradient(135deg, #ddb86a 0%, #c9a54e 100%);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 10px 30px rgba(205, 164, 94, 0.55),
    0 0 50px rgba(205, 164, 94, 0.25),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-slide-content .btn-outline {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-slide-content .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: width 0.4s ease;
  z-index: -1;
}

.hero-slide-content .btn-outline:hover::before {
  width: 100%;
}

.hero-slide-content .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 10px 30px rgba(255, 255, 255, 0.15),
    0 0 30px rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Hero Navigation Arrows */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-nav-btn:hover {
  background: rgba(205, 164, 94, 0.9);
  border-color: rgba(205, 164, 94, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 
    0 0 20px rgba(205, 164, 94, 0.5),
    0 0 40px rgba(205, 164, 94, 0.2);
}

.hero-prev {
  left: 30px;
}
.hero-next {
  right: 30px;
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.15);
}

.hero-dot.active {
  background: var(--color-secondary);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(205, 164, 94, 0.6);
}

.hero-dot.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(205, 164, 94, 0.4);
  animation: dotPulse 2s ease-out infinite;
}

@keyframes dotPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #fff;
  font-size: 1.5rem;
  animation: heroBounce 2s infinite;
  cursor: pointer;
  opacity: 0.8;
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

@keyframes heroBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(10px);
  }
  60% {
    transform: translateX(-50%) translateY(5px);
  }
}

@media (max-width: 768px) {
  .hero-static {
    height: 100vh; /* Ensure full height on mobile */
  }
  
  .hero-content-static h1 {
    font-size: 2.5rem;
  }
  .hero-content-static h2 {
    font-size: 1rem;
    letter-spacing: 2px;
  }
  .hero-content-static .medical-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  .hero-phone-number {
    font-size: 1.2rem;
    padding: 8px 20px;
    margin-bottom: 1.5rem;
  }
  .hero-content-static .btn-gold,
  .hero-content-static .btn-outline {
    padding: 12px 24px;
    font-size: 0.8rem;
    width: 100%; /* Full width buttons on mobile */
  }
  
  .hero-stats {
    gap: 0.5rem;
    padding: 10px 10px;
    width: 100%;
    margin-top: 0.5rem;
    flex-wrap: nowrap; /* Keep in one line */
    justify-content: space-evenly; /* Distribute space evenly */
  }
  
  .stat-number {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  
  .stat-label {
    font-size: 0.55rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
  }
  
  .hero-scroll-indicator {
    bottom: 20px;
  }
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.5, 0, 0, 1) forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility for sections */
.bg-light {
  background-color: var(--color-bg-light);
}
.text-dark {
  color: var(--color-text-dark);
}
.bg-darker {
  background-color: #01060e;
}
.mb-5 {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}
.section-title.text-dark {
  color: var(--color-primary);
}

.section-subtitle {
  font-size: 1.5rem;
  color: var(--color-text-main);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--color-text-main);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}
.section-desc.text-dark {
  color: var(--color-text-dark);
  opacity: 0.8;
}

/* Experience Section */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.experience-text p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.experience-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.bullet {
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  margin-right: 15px;
}

.experience-image img {
  border-radius: 4px;
  box-shadow: -20px 20px 0 var(--color-secondary-light);
}

/* Rooms Section */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* =========================================
   Rooms Grid V2 - 2x2 Layout with Carousel
   ========================================= */

.rooms-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .rooms-grid-2x2 {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
}

.room-card-v2 {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  border: 2px solid rgba(205, 164, 94, 0.6);
}

.room-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Room Carousel */
.room-carousel {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.carousel-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-images img.active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #333;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: auto;
}

.room-card-v2:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}

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

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--color-primary);
  width: 20px;
  border-radius: 4px;
}

.room-badge-v2 {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #cda45e, #b8943e);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
}

/* Room Content V2 */
.room-content-v2 {
  padding: 18px;
}

.room-header-v2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.room-header-v2 h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin: 0;
  font-weight: 700;
}

.room-price-v2 {
  background: var(--color-primary);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 700;
}

.room-price-v2 span {
  font-size: 0.7rem;
  opacity: 0.8;
  font-weight: 400;
}

.room-meta-v2 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.room-meta-v2 span {
  font-size: 0.75rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}

.room-meta-v2 span i {
  color: var(--color-primary);
  font-size: 0.8rem;
}

.room-meta-v2 span.available {
  color: #22c55e;
}

.room-meta-v2 span.available i {
  color: #22c55e;
}

.room-meta-v2 span.not-available {
  color: #ef4444;
}

.room-meta-v2 span.not-available i {
  color: #ef4444;
}

.room-amenities-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.room-amenities-v2 span {
  background: #f5f5f5;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 4px;
}

.room-amenities-v2 span i {
  color: var(--color-primary);
  font-size: 0.7rem;
}

.room-desc-v2 {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.4;
  margin: 0 0 12px 0;
}

.room-btn-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--color-primary), #b8943e);
  color: #fff;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.room-card-v2:hover .room-btn-v2 {
  box-shadow: 0 8px 20px rgba(205, 164, 94, 0.3);
}

.room-card {
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
}

.room-card:hover .room-overlay {
  opacity: 1;
}

.room-info {
  padding: 1.5rem;
  color: var(--color-text-dark);
}

.room-info h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.room-info p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}

.room-price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* Amenities Section */
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.amenity-item {
  flex: 0 1 250px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  text-align: center;
  transition: var(--transition-fast);
}

.amenity-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-secondary);
}

.amenity-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.amenity-item h4 {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.amenity-item p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Contact Section Redesign */
.contact-bg {
  background-color: #f9fafe; /* Very light blue-grey similar to screenshot */
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  text-align: left; /* Reset from previous center */
}

.contact-col-title {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.contact-desc {
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  background: var(--color-secondary);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-details {
  margin-top: 0; /* Reset */
  line-height: normal; /* Reset */
}

.contact-details h4 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-details p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0.2rem;
  line-height: 1.5;
}

.gold-text {
  color: #c5a059 !important; /* Gold color */
  font-weight: 500;
}

.direction-link {
  display: inline-block;
  color: var(--color-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-weight: 600;
  transition: color 0.3s;
}

.direction-link:hover {
  color: var(--color-primary);
}

/* Contact Form */
.contact-form-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef0f5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fcfcfc;
  font-family: "Lato", sans-serif;
  color: var(--color-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.btn-gold-filled {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.btn-gold-filled:hover {
  background: #b38f3d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.full-width {
  width: 100%;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  display: block;
}

/* Connect Section */
.connect-section .social-links.large a {
  font-size: 1.5rem;
  color: var(--color-secondary);
  transition: 0.3s;
}

.connect-section .social-links.large a:hover {
  color: var(--color-primary);
  transform: translateY(-3px);
}

/* Responsive details */
@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

.footer-bottom {
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-legal-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: 0.3s;
}

.footer-legal-links a:hover {
  color: var(--color-secondary);
}

.footer-legal-links span {
  color: rgba(255, 255, 255, 0.3);
}

/* New Gallery & Dining Grids */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.category-title {
  font-size: 1.5rem;
  color: var(--color-secondary);
  border-left: 4px solid var(--color-secondary);
  padding-left: 15px;
  margin-bottom: 1rem;
}

.gallery-item {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Persistent Text Overlay */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  color: #fff;
  pointer-events: none;
}

.gallery-text h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.gallery-text p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  border: 2px solid var(--color-secondary);
  object-fit: contain;
}

#lightboxCaption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 20px 0;
  height: 150px;
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--color-secondary);
  text-decoration: none;
  cursor: pointer;
}

/* =========================================
   Amazon-Style Gallery
========================================= */
.gallery-row {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.gallery-column {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gallery-column-title {
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-column-title i {
  color: var(--color-secondary);
  font-size: 1.2rem;
}

.amazon-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.main-image-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f9fa;
  border: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
}

.main-image-container:hover {
  border-color: #cda45e;
  box-shadow: 0 8px 25px rgba(205, 164, 94, 0.15);
  transform: translateY(-2px);
}

.main-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  will-change: transform;
  pointer-events: none;
}

.main-image-container:hover .main-gallery-image {
  transform: scale(1.05);
}

.thumbnail-row {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) #eee;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
}

.thumbnail-row::-webkit-scrollbar {
  height: 6px;
}

.thumbnail-row::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
}

.thumbnail-row::-webkit-scrollbar-thumb {
  background:linear-gradient(90deg, #cda45e, #d4af37);
  border-radius: 10px;
}

.gallery-thumb {
  flex: 0 0 auto;
  width: 65px;
  height: 65px;
  min-width: 65px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid #eee;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0.7;
  scroll-snap-align: start;
  will-change: opacity, border-color, transform;
  touch-action: pan-x;
  filter: grayscale(10%);
}

.gallery-thumb:hover {
  opacity: 1;
  border-color: #cda45e;
  transform: translateY(-2px) scale(1.05);
  filter: grayscale(0%);
}

.gallery-thumb.active {
  opacity: 1;
  border-color: #cda45e;
  box-shadow: 0 4px 12px rgba(205, 164, 94, 0.3);
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Responsive Gallery */
@media (max-width: 992px) {
  .gallery-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .gallery-column {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .gallery-column {
    padding: 15px;
    max-width: 100%;
  }

  /* Horizontal scrollable thumbnail row for mobile */
  .amazon-gallery {
    max-width: 100%;
    overflow: hidden;
  }

  .thumbnail-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 5px;
    margin: 0 -5px;
    max-width: calc(100vw - 60px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-secondary) #eee;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }

  .thumbnail-row::-webkit-scrollbar {
    height: 6px;
  }

  .thumbnail-row::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 4px;
  }

  .thumbnail-row::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 4px;
  }

  .gallery-thumb {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 6px;
  }

  .main-image-container {
    aspect-ratio: 16 / 10;
  }
}

/* Animation */
.lightbox-content,
#lightboxCaption {
  animation-name: zoom;
  animation-duration: 0.4s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.section-subtitle-sm {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  margin: 1rem auto 1.5rem;
}

/* Premium Room Cards Redesign */
.room-card-premium {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid #b8943e; /* Darker Gold for visibility */
  position: relative;
  height: 100%;
}

.room-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-secondary),
    #f3e5ab,
    var(--color-secondary)
  );
}

.room-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(205, 164, 94, 0.25);
  border-color: var(--color-secondary);
}

.room-img-premium {
  height: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* Room Badge for Balcony */
.room-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--color-secondary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
}

.room-img-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.room-content-premium {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.room-content-premium h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  position: relative;
  padding-bottom: 0.6rem;
}

.room-content-premium h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 1px;
}

.room-amenities-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #555;
  font-size: 0.8rem;
  flex-wrap: wrap;
  padding: 0.6rem 0.8rem;
  background: rgba(205, 164, 94, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(205, 164, 94, 0.12);
  min-height: 60px;
  align-content: flex-start;
}

.room-amenities-icons span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.room-amenities-icons i {
  color: var(--color-secondary);
  font-size: 1rem;
}

.room-content-premium p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  flex: 1;
  min-height: 45px;
}

.btn-full-width {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #cda45e, #b8943e);
  color: white;
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  margin-top: auto;
  overflow: hidden;
}

.btn-full-width::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-full-width:hover {
  background: linear-gradient(135deg, #b8943e, #a0813a);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(205, 164, 94, 0.4);
}

.btn-full-width:hover::before {
  left: 100%;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: 0.3s;
}

.service-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.service-card:hover::before {
  background: var(--color-secondary);
}

.service-icon-box {
  width: 70px;
  height: 70px;
  background-color: #fcf6e7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #cda45e;
  font-size: 2rem;
}

.service-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-family: var(--font-heading);
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.service-link {
  color: #cda45e;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
  border: 1px solid #cda45e;
  padding: 10px 25px;
  border-radius: 30px;
}

.service-link:hover {
  background: #cda45e;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .experience-image {
    order: -1;
    margin-bottom: 2rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    background: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    gap: 0;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 15px 0;
    color: #000000 !important;
    font-size: 1rem;
  }

  .nav-links a:hover {
    color: var(--color-secondary) !important;
  }

  .nav-links a::after {
    display: none !important;
  }

  /* Mobile Phone Icon */
  .nav-phone {
    display: inline-flex !important;
    padding: 15px 0 !important;
  }

  /* Mobile Sign In Button */
  .nav-btn.nav-signin {
    border: none !important;
    padding: 15px 0 !important;
    justify-content: flex-start;
    border-radius: 0 !important;
    font-size: 1rem; /* Match other links */
    color: #000000 !important;
  }

  .nav-btn.nav-signin i {
    font-size: 1rem; /* Match text size */
    width: 20px; /* Aligns icon width with others if needed */
  }

  /* Mobile Book Now Button */
  .nav-btn.nav-book {
    margin-top: 10px;
    text-align: center;
    border-radius: 25px !important;
    padding: 12px 0 !important;
  }

  /* Mobile User Menu */
  .nav-user-menu {
    width: 100%;
    margin-bottom: 15px;
  }

  .nav-user-btn {
    border: none;
    background: transparent;
    padding: 15px 0;
    justify-content: flex-start;
    color: #000000;
    width: 100%;
    border-radius: 0;
  }

  .nav-user-btn:hover {
    background: transparent;
    color: var(--color-secondary);
  }

  .nav-user-dropdown {
    position: static; /* Stack naturally on mobile */
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(
      0,
      0,
      0,
      0.05
    ); /* Slight background to distinguish */
    border: none;
    box-shadow: none;
    min-width: 100%;
    display: none; /* Hidden by default, toggled via JS class */
    padding-left: 10px;
  }

  .nav-user-menu.active .nav-user-dropdown {
    display: block;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s ease-in-out;
  }

  .hamburger.toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.toggle span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* ===== MOBILE HERO SECTION ===== */
  .hero-carousel {
    height: 50vh;
    min-height: 300px;
  }

  .hero-slide-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-slide-content h2 {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .hero-slide-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-slide-content .medical-badge {
    font-size: 0.7rem;
    padding: 8px 14px;
  }

  .hero-slide-content .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-slide-content .btn-gold,
  .hero-slide-content .btn-outline {
    padding: 12px 30px;
    font-size: 0.85rem;
  }

  .hero-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .hero-prev {
    left: 10px;
  }
  .hero-next {
    right: 10px;
  }

  .hero-dots {
    bottom: 25px;
  }

  .hero-scroll-indicator {
    bottom: 60px;
  }

  /* ===== MOBILE SECTIONS PADDING ===== */
  .section-padding {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle-sm {
    font-size: 0.75rem;
  }

  .section-desc {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  /* ===== MOBILE EXPERIENCE SECTION ===== */
  .experience-text h2 {
    font-size: 1.6rem;
  }

  .experience-text h3 {
    font-size: 1.2rem;
  }

  .experience-text p {
    font-size: 0.95rem;
  }

  .experience-image img {
    border-radius: 8px;
    box-shadow: none;
  }

  /* ===== MOBILE ROOM CARDS ===== */
  .rooms-grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .room-card-premium {
    border-radius: 12px;
  }

  .room-img-premium {
    height: 200px;
  }

  .room-content-premium {
    padding: 1.2rem 1rem 1.5rem;
  }

  .room-content-premium h3 {
    font-size: 1.3rem;
    padding-bottom: 0.6rem;
  }

  .room-content-premium h3::after {
    width: 40px;
    height: 2px;
  }

  .room-amenities-icons {
    gap: 0.6rem;
    padding: 0.6rem;
    font-size: 0.75rem;
  }

  .room-amenities-icons i {
    font-size: 0.85rem;
  }

  .room-content-premium p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .btn-full-width {
    padding: 12px 0;
    font-size: 0.85rem;
  }

  .room-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
    top: 10px;
    right: 10px;
  }

  /* ===== MOBILE DINING SECTION ===== */
  .dining-compact-container {
    flex-direction: column;
  }

  .dining-image-side {
    height: 300px;
  }

  .dining-compact-title {
    font-size: 1.8rem;
  }

  .dining-info-side {
    padding: 1rem;
  }

  .dining-compact-card {
    padding: 1rem;
  }

  /* ===== MOBILE SERVICES SECTION ===== */
  .services-grid {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  /* ===== MOBILE AMENITIES SECTION ===== */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .amenity-item {
    padding: 1.2rem 1rem;
  }

  .amenity-icon {
    font-size: 1.8rem;
  }

  .amenity-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .amenity-item p {
    font-size: 0.75rem;
  }

  /* ===== MOBILE GALLERY SLIDER ===== */
  .fullwidth-slider-section.plain-gallery {
    height: 35vh;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

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

  /* ===== MOBILE STAFF SECTION ===== */
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 0.5rem;
  }

  .staff-card {
    padding: 1rem;
  }

  .staff-img-box {
    width: 100px;
    height: 100px;
  }

  .staff-info h3 {
    font-size: 1.1rem;
  }

  .staff-info p {
    font-size: 0.85rem;
  }

  /* ===== MOBILE CONTACT SECTION ===== */
  .contact-container {
    padding: 0 0.5rem;
  }

  .contact-col-title {
    font-size: 1.5rem;
  }

  .contact-card {
    padding: 1rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contact-details h4 {
    font-size: 1rem;
  }

  .contact-details p {
    font-size: 0.85rem;
  }

  .contact-form-box {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }

  /* ===== MOBILE FOOTER ===== */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding: 1rem;
  }

  .footer-policy {
    display: block;
    margin-top: 0.5rem;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .hero-slide-content h1 {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .amenity-item {
    padding: 1rem 0.8rem;
    flex: none;
    max-width: none;
  }

  .amenity-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .amenity-item h4 {
    font-size: 0.8rem;
  }

  .room-img-premium {
    height: 180px;
  }

  .container {
    padding: 0 1rem;
  }
}

/* Footer Styles */
.footer-section {
  background-color: var(--color-bg-panel); /* Dark Blue */
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Partners Bar */
.partners-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}
.partners-bar span {
  color: var(--color-secondary);
  font-weight: 700;
  margin-right: 10px;
}

/* Footer Content */
.footer-content {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.footer-desc {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
}

.social-links a:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

.footer-links a {
  color: #ccc;
  transition: 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-secondary);
  transform: translateX(5px);
}

.contact-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: #ccc;
  align-items: flex-start;
}

.contact-list i {
  margin-top: 5px;
}

/* Footer Bottom */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: #888;
}

.footer-policy {
  color: var(--color-secondary);
  margin-left: 10px;
}

/* Responsive Footer */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo,
  .contact-list li {
    justify-content: center;
  }
  .footer-desc {
    margin: 0 auto 2rem;
  }
  .social-links {
    justify-content: center;
  }
}
/* Medical Badge */
.medical-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4); /* Darker background for contrast */
  border: 1px solid var(--color-secondary);
  padding: 8px 16px;
  border-radius: 30px;
  color: #fff; /* Force white text */
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  backdrop-filter: blur(5px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.medical-badge i {
  font-size: 1.1rem;
}

/* Why Us Section */
#why-us {
  background: linear-gradient(rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.98)),
    url("assets/hero-bg.png"); /* Reuse bg for faint texture */
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  color: white;
}

#why-us .section-title {
  color: white;
}

#why-us .section-subtitle-sm {
  color: var(--color-secondary);
}

#why-us .amenity-item {
  background: rgba(255, 255, 255, 0.05); /* Lighter touch for dark bg */
  border-color: rgba(255, 255, 255, 0.1);
}

#why-us .amenity-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

#why-us .amenity-item h4 {
  color: var(--color-secondary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

#why-us .amenity-item p {
  color: #e6f1ff;
  opacity: 0.9;
}

/* Why Us Section Mobile - Single Column */
@media (max-width: 768px) {
  #why-us .amenities-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
    gap: 1rem;
  }
}

/* Update Bullet Icon styling */
.bullet i {
  color: var(--color-secondary);
  margin-right: 0px; /* Reset */
  width: 20px;
  text-align: center;
}

/* Override existing bullet style */
.experience-features li {
  align-items: flex-start; /* Align top for multi-line */
}

.experience-features .bullet {
  background: none; /* Remove dot */
  width: auto;
  height: auto;
  margin-right: 15px;
  font-size: 1.2rem;
  margin-top: -2px;
}
/* Full-Width Image Slider (Hotel Nayara Style) */
.fullwidth-slider-section {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

/* Plain Gallery - No text overlay */
.fullwidth-slider-section.plain-gallery {
  height: 50vh;
}

.plain-gallery .slider-overlay {
  display: none;
}

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

.slider-track {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

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

.slide-caption {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  background: rgba(10, 25, 47, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem 4rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-caption h3 {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  margin: 0;
}

/* Slider Navigation Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.slider-btn:hover {
  background: var(--color-secondary);
  transform: translateY(-50%) scale(1.1);
}

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

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.dot.active {
  background: var(--color-secondary);
  border-color: white;
  transform: scale(1.2);
}

/* Hero Style Slider Enhancements */
.fullwidth-slider-section.hero-style {
  height: 90vh;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.slide-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  width: 90%;
  max-width: 800px;
}

.slide-hero-content h2 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-hero-content p {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.slide-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.slide-btns .btn-gold {
  background: var(--color-secondary);
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid var(--color-secondary);
  transition: all 0.3s ease;
}

.slide-btns .btn-gold:hover {
  background: #b8943e;
  border-color: #b8943e;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(205, 164, 94, 0.4);
}

.slide-btns .btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.slide-btns .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Scroll Down Indicator */
.slider-scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #fff;
  font-size: 1.5rem;
  animation: bounceDown 2s infinite;
  cursor: pointer;
  opacity: 0.8;
}

.slider-scroll-indicator:hover {
  opacity: 1;
}

@keyframes bounceDown {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(10px);
  }
  60% {
    transform: translateX(-50%) translateY(5px);
  }
}

@media (max-width: 768px) {
  .fullwidth-slider-section {
    height: 60vh;
  }
  .fullwidth-slider-section.hero-style {
    height: 70vh;
  }
  .slide-caption {
    padding: 1rem 2rem;
  }
  .slide-caption h3 {
    font-size: 1.5rem;
  }
  .slide-hero-content h2 {
    font-size: 2.2rem;
  }
  .slide-hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .slide-btns {
    gap: 1rem;
  }
  .slide-btns .btn-gold,
  .slide-btns .btn-outline {
    padding: 12px 24px;
    font-size: 0.8rem;
  }
  .slider-scroll-indicator {
    bottom: 60px;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
  }
  .slider-prev {
    left: 15px;
  }
  .slider-next {
    right: 15px;
  }
}
/* Staff Section */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.staff-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.staff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--color-secondary);
}

.staff-img-box {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
}

.staff-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--color-bg-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.staff-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 35px;
  height: 35px;
  background: var(--color-secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  font-size: 0.9rem;
}

.staff-info h3 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.staff-role {
  display: block;
  font-size: 0.8rem;
  color: var(--color-secondary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.staff-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ============================================
   COMPACT DINING SECTION - SINGLE VIEWPORT
   ============================================ */

.dining-compact-section {
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: stretch;
  background: #0a192f;
  overflow: hidden;
}

.dining-compact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

/* Left Side - Image */
.dining-image-side {
  position: relative;
  overflow: hidden;
}

.dining-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.dining-compact-section:hover .dining-image-side img {
  transform: scale(1.05);
}

.dining-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: linear-gradient(
    to right,
    rgba(10, 25, 47, 0.95) 0%,
    rgba(10, 25, 47, 0.4) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.dining-compact-subtitle {
  color: #cda45e;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.dining-compact-title {
  color: #fff;
  font-size: 3rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.dining-image-overlay > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.dining-features-mini {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.dining-features-mini span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cda45e;
  font-size: 0.85rem;
  font-weight: 500;
}

.dining-features-mini i {
  font-size: 1rem;
}

/* Right Side - Info Cards */
.dining-info-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 3rem;
  background: linear-gradient(135deg, #112240 0%, #0a192f 100%);
}

/* Compact Info Cards */
.dining-compact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(205, 164, 94, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.dining-compact-card:hover {
  border-color: rgba(205, 164, 94, 0.5);
  background: rgba(205, 164, 94, 0.05);
  transform: translateX(5px);
}

.compact-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compact-card-header i {
  color: #cda45e;
  font-size: 1.4rem;
}

.compact-card-header h3 {
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  margin: 0;
}

/* Compact Timings */
.compact-timings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.compact-time-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.compact-time-row .meal {
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compact-time-row .meal i {
  color: #cda45e;
  font-size: 0.9rem;
}

.compact-time-row .time {
  color: #cda45e;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Compact Menu Grid */
.compact-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.compact-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.compact-menu-item:hover {
  background: rgba(205, 164, 94, 0.1);
}

.compact-menu-item .day {
  color: #cda45e;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.compact-menu-item .dish {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  text-align: right;
}

.compact-menu-item.special {
  background: linear-gradient(
    90deg,
    rgba(205, 164, 94, 0.15),
    rgba(205, 164, 94, 0.05)
  );
  border: 1px solid rgba(205, 164, 94, 0.2);
}

/* Enhanced Weekly Menu Card */
.weekly-menu-card {
  min-height: 280px;
}

.weekly-menu-card .compact-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.menu-badge {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  margin-left: auto;
}

.weekly-menu-tabs {
  display: flex;
  gap: 0.3rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.menu-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(205, 164, 94, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 35px;
  text-align: center;
}

.menu-tab:hover {
  background: rgba(205, 164, 94, 0.15);
  color: #cda45e;
}

.menu-tab.active {
  background: linear-gradient(135deg, #cda45e, #b8934a);
  color: #1a1a2e;
  border-color: #cda45e;
  box-shadow: 0 4px 15px rgba(205, 164, 94, 0.3);
}

.weekly-menu-content {
  position: relative;
}

.menu-meals {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.meal-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid #cda45e;
  transition: all 0.3s ease;
}

.meal-item:hover {
  background: rgba(205, 164, 94, 0.1);
  transform: translateX(5px);
}

.meal-time {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  min-width: 90px;
}

.meal-dish {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-align: right;
  flex: 1;
}

.header-badges {
  display: flex;
  gap: 0.4rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.menu-special-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f39c12, #e74c3c);
  color: white;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive - Compact Dining */
@media (max-width: 991px) {
  .dining-compact-section {
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .dining-compact-container {
    grid-template-columns: 1fr;
  }

  .dining-image-side {
    height: 50vh;
    min-height: 350px;
  }

  .dining-image-overlay {
    background: linear-gradient(
      to top,
      rgba(10, 25, 47, 0.95) 0%,
      rgba(10, 25, 47, 0.5) 100%
    );
    justify-content: flex-end;
    padding: 2rem;
  }

  .dining-compact-title {
    font-size: 2.2rem;
  }

  .dining-info-side {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .compact-timings {
    grid-template-columns: 1fr;
  }

  .compact-menu-grid {
    grid-template-columns: 1fr;
  }

  .dining-features-mini {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Weekly Menu Mobile Fix */
  .weekly-menu-tabs {
    gap: 0.15rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .menu-tab {
    padding: 0.35rem 0.4rem;
    font-size: 0.65rem;
    min-width: auto;
    flex: 1 1 auto;
    white-space: nowrap;
  }

  .weekly-menu-card {
    min-height: auto;
  }

  .menu-badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.4rem;
  }

  .meal-time {
    min-width: 75px;
    font-size: 0.75rem;
  }

  .meal-dish {
    font-size: 0.8rem;
  }

  .meal-item {
    padding: 0.5rem 0.7rem;
  }

  .menu-special-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.5rem;
    top: -5px;
  }
}

/* =========================================
   Sign In Modal Styles
   ========================================= */

.signin-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.signin-modal.active {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

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

.signin-modal-content {
  background: linear-gradient(135deg, #1a1f38 0%, #0d1225 100%);
  border: 1px solid rgba(205, 164, 94, 0.3);
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 40px;
  position: relative;
  animation: modalSlide 0.3s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

@keyframes modalSlide {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.signin-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.signin-close:hover {
  color: var(--color-secondary);
  transform: rotate(90deg);
}

.signin-header {
  text-align: center;
  margin-bottom: 30px;
}

.signin-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.signin-logo i {
  font-size: 1.3rem;
}

.signin-header h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.signin-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.signin-form-group {
  margin-bottom: 20px;
}

.signin-form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.9rem;
}

.signin-form-group label i {
  color: var(--color-secondary);
}

.signin-form-group input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.signin-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.signin-form-group input:focus {
  outline: none;
  border-color: var(--color-secondary);
  background: rgba(205, 164, 94, 0.05);
  box-shadow: 0 0 0 3px rgba(205, 164, 94, 0.1);
}

.signin-error {
  display: none;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.5);
  border-radius: 8px;
  color: #ef4444;
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-align: center;
}

.signin-error.show {
  display: block;
  animation: shakeError 0.4s ease;
}

@keyframes shakeError {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.signin-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #b8943e 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.signin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(205, 164, 94, 0.4);
}

.signin-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.signin-footer {
  margin-top: 24px;
  text-align: center;
}

.signin-footer p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.signin-footer a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.signin-footer a:hover {
  text-decoration: underline;
}

/* Auth Tabs */
.auth-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.auth-tab {
  padding: 10px 28px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-tab:hover {
  border-color: rgba(205, 164, 94, 0.5);
  color: rgba(255, 255, 255, 0.9);
}

.auth-tab.active {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}

/* Auth Form Containers */
.auth-form-container {
  display: none;
  animation: fadeIn 0.3s ease;
}

.auth-form-container.active {
  display: block;
}

.auth-form-container h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
  text-align: center;
}

.auth-form-container p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 25px;
}

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

/* Sign Up Button Variant */
.signin-btn.signup-btn {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.signin-btn.signup-btn:hover {
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

/* Success Message */
.signin-success {
  display: none;
  padding: 12px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 8px;
  color: #22c55e;
  margin-bottom: 20px;
  font-size: 0.9rem;
  text-align: center;
}

.signin-success.show {
  display: block;
  animation: successPulse 0.5s ease;
}

@keyframes successPulse {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Auth Divider */
.auth-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.auth-divider span {
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Google Sign In Button */
.google-signin-btn {
  width: 100%;
  padding: 14px 20px;
  background: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.google-signin-btn:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.google-signin-btn svg {
  flex-shrink: 0;
}

.google-signin-btn span {
  color: #555;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .signin-modal-content {
    padding: 30px 24px;
  }

  .signin-logo {
    font-size: 1.3rem;
  }

  .signin-header h2 {
    font-size: 1.5rem;
  }

  .auth-tabs {
    gap: 5px;
  }

  .auth-tab {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .google-signin-btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

/* Room Price Tag */

/* Room Price Tag */
.room-price-tag {
  color: var(--color-bg-light);
  background: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.5rem 0 1.2rem 0;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(10, 25, 47, 0.15);
  border: 1px solid rgba(205, 164, 94, 0.3);
}

.room-price-tag span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  text-transform: lowercase;
}

/* =========================================
   Sticky Booking Button - Desktop
   ========================================= */

.sticky-booking-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #cda45e 0%, #b8943e 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 40px rgba(205, 164, 94, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  animation: pulseGlow 2s infinite;
}

.sticky-booking-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 50px rgba(205, 164, 94, 0.5);
}

.sticky-booking-btn i {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sticky-booking-btn span {
  white-space: nowrap;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 10px 40px rgba(205, 164, 94, 0.4);
  }
  50% {
    box-shadow: 0 10px 50px rgba(205, 164, 94, 0.6);
  }
}

/* Hide desktop button on mobile */
@media (max-width: 768px) {
  .sticky-booking-btn {
    display: none;
  }
}

/* =========================================
   Mobile Sticky Bar
   ========================================= */

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  border-top: 2px solid rgba(205, 164, 94, 0.3);
  padding: 10px 15px;
  z-index: 999;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
}

.mobile-sticky-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 10px;
}

.mobile-sticky-item i {
  font-size: 1.2rem;
}

.mobile-sticky-item:hover {
  color: #cda45e;
}

.mobile-sticky-item.primary {
  background: linear-gradient(135deg, #cda45e 0%, #b8943e 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(205, 164, 94, 0.3);
}

.mobile-sticky-item.primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(205, 164, 94, 0.5);
}

/* Show mobile bar on mobile devices */
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
  }

  /* Add padding to footer so it doesn't get hidden behind sticky bar */
  .footer-section {
    padding-bottom: 80px !important;
  }
}

/* =========================================
   Trial Stay Card
   ========================================= */

.trial-stay-card-section {
  padding: 80px 0;
  background: var(--color-bg-light);
}

.trial-stay-card {
  max-width: 450px;
  margin: 0 auto;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  border: 3px solid #cda45e;
  transition: all 0.4s ease;
}

.trial-stay-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(205, 164, 94, 0.25);
}

.trial-stay-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #cda45e, #b8943e);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulseGlow 2s infinite;
}

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

.trial-stay-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.trial-stay-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 60px 20px 20px;
}

.trial-stay-price-box {
  display: flex;
  align-items: baseline;
  gap: 5px;
  justify-content: flex-start;
}

.trial-stay-price-box .price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #cda45e;
}

.trial-stay-price-box .price-period {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.trial-stay-card-content {
  padding: 25px;
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
}

.trial-stay-card-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.trial-stay-card-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.trial-stay-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trial-stay-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.trial-stay-card-features i {
  color: #cda45e;
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.trial-stay-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #cda45e, #b8943e);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.trial-stay-card-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(205, 164, 94, 0.4);
}

@media (max-width: 768px) {
  .trial-stay-card-section {
    padding: 50px 0;
  }

  .trial-stay-card {
    margin: 0 15px;
  }

  .trial-stay-card-features {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Experience Grid with Trial Stay
   ========================================= */

.experience-grid-with-trial {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 40px;
  align-items: center;
}

/* Inline Trial Stay Card */
.trial-stay-card-inline {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  border: 3px solid #cda45e;
  transition: all 0.4s ease;
}

.trial-stay-card-inline:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(205, 164, 94, 0.2);
}

.trial-stay-card-inline .trial-stay-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #cda45e, #b8943e);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulseGlow 2s infinite;
}

.trial-stay-card-inline .trial-stay-card-image {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.trial-stay-card-inline .trial-stay-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trial-stay-card-inline:hover .trial-stay-card-image img {
  transform: scale(1.08);
}

.trial-stay-card-inline .trial-stay-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 30px 15px 10px;
}

.trial-stay-card-inline .trial-stay-price-box .price-amount {
  font-size: 1.8rem;
}

.trial-stay-card-inline .trial-stay-price-box .price-period {
  font-size: 0.9rem;
}

.trial-stay-card-inline .trial-stay-card-content {
  padding: 15px;
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
}

.trial-stay-card-inline .trial-stay-card-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.trial-stay-card-inline .trial-stay-card-desc {
  font-size: 0.8rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.trial-stay-card-features-mini {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  display: flex;
  gap: 15px;
}

.trial-stay-card-features-mini li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
}

.trial-stay-card-features-mini i {
  color: #cda45e;
  font-size: 0.8rem;
}

.trial-stay-card-inline .trial-stay-card-btn {
  padding: 12px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

/* Hide trial card section, show experience image when trial is disabled */
.experience-grid-with-trial:has(
    .trial-stay-card-inline[style*="display: none"]
  ) {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 991px) {
  .experience-grid-with-trial {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trial-stay-card-inline {
    max-width: 350px;
    margin: 0 auto;
  }
}

/* =========================================
   Trial Stay Modal Form
   ========================================= */

.trial-stay-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.3s ease;
}

.trial-stay-modal {
  background: linear-gradient(135deg, #1a1f38 0%, #0d1225 100%);
  border: 2px solid rgba(205, 164, 94, 0.4);
  border-radius: 20px;
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlide 0.3s ease;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.trial-stay-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.trial-stay-modal-close:hover {
  background: rgba(239, 68, 68, 0.8);
  color: #fff;
  transform: rotate(90deg);
}

.trial-stay-modal-header {
  text-align: center;
  padding: 30px 30px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trial-stay-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #cda45e, #b8943e);
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.trial-stay-modal-header h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.trial-stay-modal-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.trial-stay-form {
  padding: 25px 30px 30px;
}

.trial-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.trial-form-group {
  margin-bottom: 18px;
}

.trial-form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.85rem;
}

.trial-form-group label i {
  color: #cda45e;
  font-size: 0.9rem;
}

.trial-form-group input,
.trial-form-group select,
.trial-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.trial-form-group input::placeholder,
.trial-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.trial-form-group input:focus,
.trial-form-group select:focus,
.trial-form-group textarea:focus {
  outline: none;
  border-color: #cda45e;
  background: rgba(205, 164, 94, 0.05);
  box-shadow: 0 0 0 3px rgba(205, 164, 94, 0.1);
}

.trial-form-group select {
  cursor: pointer;
}

.trial-form-group select option {
  background: #1a1f38;
  color: #fff;
}

.trial-form-price-summary {
  background: rgba(205, 164, 94, 0.1);
  border: 1px solid rgba(205, 164, 94, 0.3);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
}

.trial-form-price-summary .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.trial-form-price-summary .price-row span:first-child {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.trial-form-price-summary .price-value {
  color: #cda45e;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.trial-form-price-summary .price-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #22c55e;
  font-size: 0.8rem;
  margin: 0;
}

.trial-form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #cda45e 0%, #b8943e 100%);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trial-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(205, 164, 94, 0.4);
}

.trial-form-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-top: 15px;
}

@media (max-width: 600px) {
  .trial-stay-modal {
    max-height: 95vh;
  }

  .trial-stay-modal-header {
    padding: 25px 20px 15px;
  }

  .trial-stay-modal-header h2 {
    font-size: 1.5rem;
  }

  .trial-stay-form {
    padding: 20px;
  }

  .trial-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* =========================================
   All Rooms Sold Out Banner
   ========================================= */
.sold-out-banner {
  margin-top: 3rem;
  background: linear-gradient(135deg, #fef3e2 0%, #fff9f0 100%);
  border: 2px solid #f0c14b;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 30px rgba(240, 193, 75, 0.15);
  overflow: hidden;
  animation: soldOutFadeIn 0.6s ease;
}

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

.sold-out-banner-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
}

.sold-out-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #cda45e, #b8943e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(205, 164, 94, 0.35);
}

.sold-out-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.sold-out-text {
  flex: 1;
}

.sold-out-text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #1a1a2e;
  margin-bottom: 8px;
  font-weight: 700;
}

.sold-out-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.sold-out-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #cda45e, #b8943e);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(205, 164, 94, 0.35);
}

.sold-out-btn:hover {
  background: linear-gradient(135deg, #b8943e, #a07d32);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(205, 164, 94, 0.45);
}

.sold-out-btn i {
  font-size: 1rem;
}

/* Responsive: Sold Out Banner */
@media (max-width: 768px) {
  .sold-out-banner-content {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

  .sold-out-icon {
    width: 60px;
    height: 60px;
  }

  .sold-out-icon i {
    font-size: 1.5rem;
  }

  .sold-out-text h3 {
    font-size: 1.2rem;
  }

  .sold-out-text p {
    font-size: 0.9rem;
  }

  .sold-out-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* Guest Button Style */
.guest-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: transparent;
  border: 1px dashed #ccc;
  border-radius: 8px;
  color: #666;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.guest-btn:hover {
  background: #f5f5f5;
  border-color: #999;
  color: #333;
}

/* =========================================
   NEW YEAR 2026 FESTIVE THEME
   ========================================= */

/* Festive Color Variables */
:root {
  --color-gold-metallic: #ffd700;
  --color-silver-metallic: #c0c0c0;
  --color-champagne: #f7e7ce;
  --color-festive-gradient: linear-gradient(
    135deg,
    #cda45e 0%,
    #ffd700 50%,
    #c0c0c0 100%
  );
}

/* ---- New Year Top Banner ---- */
.new-year-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #1a1f38 0%, #2d1f4e 50%, #1a1f38 100%);
  border-bottom: 2px solid var(--color-secondary);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  z-index: 1100;
  font-family: var(--font-body);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  animation: bannerShimmer 3s infinite;
}

.new-year-banner span.banner-text {
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.new-year-banner .emoji {
  font-size: 1.2rem;
  animation: emojiPulse 1s infinite alternate;
}

@keyframes bannerShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes emojiPulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* Shift navbar down when banner is visible */
body.has-new-year-banner .navbar {
  top: 44px;
}

body.has-new-year-banner .hero-carousel {
  margin-top: 44px;
}

/* Close button for banner */
.new-year-banner .banner-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
}

.new-year-banner .banner-close:hover {
  color: #fff;
}

/* ---- Logo 2026 Badge ---- */
.logo-badge-2026 {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ffd700, #cda45e);
  color: #1a1f38;
  font-size: 0.5rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(205, 164, 94, 0.5);
  animation: badgePulse 2s infinite;
  margin-left: 8px;
  white-space: nowrap;
}

.logo {
  position: relative;
  flex-wrap: nowrap;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(205, 164, 94, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.7);
  }
}

/* ---- Confetti Animation ---- */
#confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
  animation: confettiFall 4s ease-out forwards;
}

.confetti.circle {
  border-radius: 50%;
}

.confetti.rect {
  border-radius: 2px;
}

.confetti.star {
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(-100px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg);
  }
}

/* ---- Sparkle/Firework Effects ---- */
.sparkle-container {
  position: absolute;
  pointer-events: none;
  z-index: 5;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #ffd700, transparent 70%);
  border-radius: 50%;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hero corner sparkles */
.hero-sparkle-corner {
  position: absolute;
  width: 150px;
  height: 150px;
  pointer-events: none;
  z-index: 10;
}

.hero-sparkle-corner.top-left {
  top: 80px;
  left: 20px;
}

.hero-sparkle-corner.top-right {
  top: 80px;
  right: 20px;
}

.hero-sparkle-corner .sparkle-star {
  position: absolute;
  color: #ffd700;
  font-size: 0.8rem;
  opacity: 0;
  animation: sparkleFloat 3s ease-in-out infinite;
}

@keyframes sparkleFloat {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
}

/* ---- Button Shimmer Effect ---- */
.btn-gold,
.nav-btn.nav-book,
.btn-submit,
.sticky-booking-btn,
.trial-stay-card-btn {
  position: relative;
  overflow: hidden;
}

.btn-gold::before,
.nav-btn.nav-book::before,
.btn-submit::before,
.sticky-booking-btn::before,
.trial-stay-card-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(205, 164, 94, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.btn-gold:hover::before,
.nav-btn.nav-book:hover::before,
.btn-submit:hover::before,
.sticky-booking-btn:hover::before,
.trial-stay-card-btn:hover::before {
  left: 100%;
}

/* ---- Cursor Trail Effect ---- */
.cursor-trail-particle {
  position: fixed;
  pointer-events: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd700, #cda45e);
  opacity: 0;
  z-index: 9998;
  animation: cursorTrailFade 0.5s ease-out forwards;
}

@keyframes cursorTrailFade {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}

/* Cursor trail toggle button */
.cursor-trail-toggle {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #1a1f38, #2d1f4e);
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  color: var(--color-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cursor-trail-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(205, 164, 94, 0.4);
}

.cursor-trail-toggle.active {
  background: var(--color-secondary);
  color: #1a1f38;
}

/* ---- New Year Greeting Modal ---- */
.new-year-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.new-year-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.new-year-modal {
  background: linear-gradient(180deg, #1a1f38 0%, #0a192f 100%);
  border: 2px solid var(--color-secondary);
  border-radius: 20px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(205, 164, 94, 0.2);
  animation: modalPop 0.4s ease-out;
}

@keyframes modalPop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.new-year-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.new-year-modal-close:hover {
  color: #fff;
}

.new-year-modal .modal-emoji {
  font-size: 4rem;
  margin-bottom: 15px;
  animation: emojiPulse 1s infinite alternate;
}

.new-year-modal h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-secondary);
  margin-bottom: 10px;
  background: linear-gradient(135deg, #cda45e, #ffd700, #cda45e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.new-year-modal p {
  color: #e6f1ff;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.new-year-modal .discount-code-box {
  background: rgba(205, 164, 94, 0.15);
  border: 2px dashed var(--color-secondary);
  border-radius: 12px;
  padding: 15px 20px;
  margin: 20px 0;
}

.new-year-modal .discount-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.new-year-modal .discount-code {
  font-family: "Courier New", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  letter-spacing: 2px;
}

.new-year-modal .discount-info {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

.new-year-modal .modal-btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, #cda45e, #b8943e);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.new-year-modal .modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(205, 164, 94, 0.4);
}

.new-year-modal .modal-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s;
}

.new-year-modal .modal-btn:hover::before {
  left: 100%;
}

/* ---- Modal Fireworks Animation ---- */
.modal-fireworks {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
}

.modal-fireworks .firework {
  font-size: 1.5rem;
  animation: fireworkFloat 2s ease-in-out infinite;
}

.modal-fireworks .firework:nth-child(1) {
  animation-delay: 0s;
}
.modal-fireworks .firework:nth-child(2) {
  animation-delay: 0.5s;
}
.modal-fireworks .firework:nth-child(3) {
  animation-delay: 1s;
}

@keyframes fireworkFloat {
  0%,
  100% {
    opacity: 0.6;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-10px) scale(1.2);
  }
}

/* ---- Welcome Text Styling ---- */
.new-year-modal .welcome-text {
  color: #e6f1ff;
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.new-year-modal .welcome-text strong {
  color: var(--color-secondary);
  font-weight: 700;
}

/* ---- Hostel Invite Box ---- */
.hostel-invite-box {
  background: linear-gradient(
    135deg,
    rgba(205, 164, 94, 0.15),
    rgba(255, 215, 0, 0.1)
  );
  border: 1px solid rgba(205, 164, 94, 0.5);
  border-radius: 12px;
  padding: 15px 20px;
  margin: 15px 0;
  position: relative;
  overflow: hidden;
}

.hostel-invite-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.1) 0%,
    transparent 70%
  );
  animation: inviteGlow 3s ease-in-out infinite;
}

@keyframes inviteGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: rotate(180deg);
  }
}

.invite-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 5px;
  position: relative;
}

.invite-label i {
  margin-right: 8px;
}

.invite-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

/* ---- Enhanced Emoji Pulse ---- */
@keyframes emojiPulse {
  0%,
  100% {
    transform: scale(1) rotate(-5deg);
  }
  50% {
    transform: scale(1.15) rotate(5deg);
  }
}

/* ---- Enhanced Confetti with More Particles ---- */
.confetti {
  position: absolute;
  width: 12px;
  height: 12px;
  opacity: 0;
  animation: confettiFallEnhanced 5s ease-out forwards;
}

@keyframes confettiFallEnhanced {
  0% {
    opacity: 1;
    transform: translateY(-50px) rotate(0deg) scale(1);
  }
  25% {
    opacity: 1;
    transform: translateY(25vh) rotate(180deg) translateX(20px);
  }
  50% {
    opacity: 0.8;
    transform: translateY(50vh) rotate(360deg) translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg) translateX(10px);
  }
}

/* ---- Sparkle Burst Effect ---- */
.sparkle-burst {
  position: fixed;
  width: 10px;
  height: 10px;
  pointer-events: none;
  z-index: 9998;
}

.sparkle-burst::before,
.sparkle-burst::after {
  content: "✨";
  position: absolute;
  font-size: 1rem;
  animation: sparkleBurst 1s ease-out forwards;
}

.sparkle-burst::after {
  animation-delay: 0.2s;
}

@keyframes sparkleBurst {
  0% {
    opacity: 1;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.5) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.5) rotate(360deg) translateY(-30px);
  }
}

/* ---- New Year Special Badge ---- */
.new-year-special-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
  animation: badgeShake 2s infinite;
}

@keyframes badgeShake {
  0%,
  100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

/* ---- Festive Hero Gradient Overlay ---- */
.hero-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(205, 164, 94, 0.08) 0%,
    transparent 30%,
    transparent 70%,
    rgba(255, 215, 0, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ---- Subtle Background Star Pattern ---- */
.festive-bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      rgba(205, 164, 94, 0.15),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.1), transparent),
    radial-gradient(
      2px 2px at 50px 160px,
      rgba(192, 192, 192, 0.12),
      transparent
    ),
    radial-gradient(2px 2px at 90px 40px, rgba(205, 164, 94, 0.15), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(255, 215, 0, 0.1), transparent),
    radial-gradient(
      2px 2px at 160px 120px,
      rgba(192, 192, 192, 0.08),
      transparent
    );
  background-size: 200px 200px;
  animation: bgPatternFloat 20s linear infinite;
}

@keyframes bgPatternFloat {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200px 200px;
  }
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 768px) {
  .new-year-banner {
    padding: 10px 40px 10px 15px;
    font-size: 0.85rem;
  }

  body.has-new-year-banner .navbar {
    top: 40px;
  }

  body.has-new-year-banner .hero-carousel {
    margin-top: 40px;
  }

  .navbar {
    padding: 1rem 0;
  }

  .logo-badge-2026 {
    font-size: 0.45rem;
    padding: 2px 6px;
    margin-left: 5px;
  }

  .cursor-trail-toggle {
    bottom: 140px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .new-year-modal {
    padding: 30px 25px;
  }

  .new-year-modal h2 {
    font-size: 1.8rem;
  }

  .new-year-modal .modal-emoji {
    font-size: 3rem;
  }

  .hero-sparkle-corner {
    display: none;
  }
}

/* ==========================================
   SNEHALATA MAHESHWARI ART GALLERY STYLES
   ========================================== */

/* Art Gallery Card (in experience section) */
.art-gallery-card {
  background: linear-gradient(145deg, #1a1f38 0%, #0a192f 100%);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  max-width: 320px;
}

.art-gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(205, 164, 94, 0.25);
}

.art-gallery-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #cda45e, #b8943e);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 15px rgba(205, 164, 94, 0.4);
}

.art-gallery-card-badge i {
  font-size: 0.7rem;
}

.art-gallery-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.art-gallery-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.art-gallery-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.art-gallery-card-name {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.art-gallery-card-content {
  padding: 20px;
}

.art-gallery-card-title {
  color: var(--color-secondary);
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.art-gallery-card-title i {
  font-size: 1rem;
}

.art-gallery-card-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.art-gallery-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-secondary), #b8943e);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.art-gallery-card:hover .art-gallery-card-btn {
  box-shadow: 0 5px 20px rgba(205, 164, 94, 0.4);
}

/* Art Gallery Modal Overlay */
.art-gallery-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

.art-gallery-modal-overlay.active {
  display: flex;
  opacity: 1;
}

/* Art Gallery Modal */
.art-gallery-modal {
  background: linear-gradient(145deg, #1a1f38 0%, #0a192f 100%);
  border-radius: 24px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(205, 164, 94, 0.2);
}

.art-gallery-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.art-gallery-modal-close:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: rotate(90deg);
}

/* Art Gallery Modal Header */
.art-gallery-modal-header {
  text-align: center;
  padding: 40px 30px 30px;
  border-bottom: 1px solid rgba(205, 164, 94, 0.2);
}

.art-gallery-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-secondary), #b8943e);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.art-gallery-modal-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.art-gallery-modal-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Art Gallery Grid */
.art-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px;
}

.art-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: all 0.4s ease;
}

.art-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(205, 164, 94, 0.3);
}

.art-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.art-gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.art-gallery-item-overlay span {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
}

/* Art Gallery Modal Footer */
.art-gallery-modal-footer {
  text-align: center;
  padding: 25px 30px;
  border-top: 1px solid rgba(205, 164, 94, 0.2);
}

.art-gallery-modal-footer p {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
}

.art-gallery-modal-footer i {
  color: #e74c3c;
  margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .art-gallery-card {
    max-width: 100%;
  }

  .art-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
  }

  .art-gallery-modal-header h2 {
    font-size: 1.6rem;
  }

  .art-gallery-modal-header {
    padding: 30px 20px 20px;
  }
}

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

  .art-gallery-item {
    aspect-ratio: 16/9;
  }
}

/* ==========================================
   MINIMALISTIC PROFILE CARD STYLES
   ========================================== */

.profile-card-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(145deg, #fff 0%, #faf8f5 100%);
  padding: 35px 25px 30px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  transition: all 0.4s ease;
  width: 280px;
  border: 2px solid transparent;
  background-image: linear-gradient(145deg, #fff, #faf8f5), 
                    linear-gradient(135deg, #cda45e, #e8d4a8, #cda45e);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative corner elements */
.profile-card-minimal::before,
.profile-card-minimal::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(205, 164, 94, 0.2);
  pointer-events: none;
}

.profile-card-minimal::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}

.profile-card-minimal::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

.profile-card-minimal:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(205, 164, 94, 0.25),
              0 0 40px rgba(205, 164, 94, 0.1);
}

.profile-card-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 4px solid var(--color-secondary);
  margin-bottom: 18px;
  box-shadow: 0 8px 25px rgba(205, 164, 94, 0.3),
              inset 0 0 20px rgba(205, 164, 94, 0.1);
  position: relative;
  z-index: 1;
}

/* Photo glow ring */
.profile-card-photo::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px dashed rgba(205, 164, 94, 0.3);
  border-radius: 50%;
  animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.profile-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.profile-card-minimal:hover .profile-card-photo img {
  transform: scale(1.05);
}

.profile-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.profile-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: linear-gradient(135deg, #cda45e, #b8943e);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 8px;
  box-shadow: 0 4px 15px rgba(205, 164, 94, 0.3);
}

.profile-card-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.2;
}

.profile-card-subtitle {
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.profile-card-subtitle::before,
.profile-card-subtitle::after {
  content: "✦";
  font-size: 0.5rem;
  color: var(--color-secondary);
  opacity: 0.6;
}

.profile-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0a192f, #1a2f4f);
  padding: 14px 28px;
  border-radius: 30px;
  margin-top: 20px;
  transition: all 0.3s ease;
  width: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.profile-card-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.profile-card-minimal:hover .profile-card-link::before {
  left: 100%;
}

.profile-card-minimal:hover .profile-card-link {
  background: linear-gradient(135deg, var(--color-secondary), #b8943e);
  gap: 14px;
  box-shadow: 0 8px 25px rgba(205, 164, 94, 0.4);
}

.profile-card-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.profile-card-minimal:hover .profile-card-link i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .profile-card-minimal {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 25px 20px;
  }

  .profile-card-photo {
    width: 100px;
    height: 100px;
  }

  .profile-card-name {
    font-size: 1.15rem;
  }
}

/* ==========================================
   PRICE ANNOUNCEMENT BANNER
   ========================================== */

.price-announcement-banner {
  background: linear-gradient(135deg, #0a192f 0%, #1a2f4f 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.price-announcement-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cda45e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.announcement-icon {
  width: 60px;
  height: 60px;
  background: rgba(205, 164, 94, 0.15);
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.announcement-icon i {
  font-size: 1.5rem;
  color: var(--color-secondary);
}

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

.announcement-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(205, 164, 94, 0.8);
  margin-bottom: 5px;
}

.announcement-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.price-highlight {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.8rem;
}

.announcement-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-secondary);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.announcement-btn:hover {
  background: #b8943e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(205, 164, 94, 0.4);
}

.announcement-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.announcement-btn:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .price-announcement-banner {
    padding: 25px 0;
  }

  .announcement-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .announcement-icon {
    width: 50px;
    height: 50px;
  }

  .announcement-icon i {
    font-size: 1.2rem;
  }

  .announcement-title {
    font-size: 1.3rem;
  }

  .price-highlight {
    font-size: 1.5rem;
  }

  .announcement-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* Logo Icon Styles */
.logo-icon {
  height: 35px;
  width: 35px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  border: 1px solid var(--color-secondary);
  background: #0a192f;
}

.building-label .logo-icon {
  height: 20px;
  width: 20px;
  margin-right: 0;
  margin-bottom: 2px;
  border: none;
  background: transparent;
}

/* Fix for mobile navbar spacing */
@media (max-width: 768px) {
  .navbar-container {
    gap: 40px;
  }
  
  .logo {
    margin-right: 0;
    min-width: 0; /* Allow shrinking */
    flex: 1;
  }
  
  .logo span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .hamburger {
    flex-shrink: 0; /* Prevent hamburger from shrinking */
  }
}

/* Logo Icon Styles */
.logo-icon {
  height: 35px;
  width: 35px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  border: 1px solid var(--color-secondary);
  background: #0a192f;
}

.building-label .logo-icon {
  height: 20px;
  width: 20px;
  margin-right: 0;
  margin-bottom: 2px;
  border: none;
  background: transparent;
}

/* Mobile Logo Tweaks */
@media (max-width: 768px) {
  .logo-icon {
    height: 32px;
    width: 32px;
  }
  
  .logo span {
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 200px;
  }
}

/* ==========================================
   ART GALLERY ENHANCED CARD STYLES
   ========================================== */

.art-gallery-enhanced {
  background: linear-gradient(145deg, #fffbf5 0%, #fff9f0 50%, #fef5e7 100%) !important;
  border: 2px solid transparent !important;
  background-image: linear-gradient(145deg, #fffbf5, #fef5e7), 
                    linear-gradient(135deg, #e8a0b5, #cda45e, #a8d8a0, #cda45e) !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
  position: relative;
}

.art-gallery-enhanced::before {
  background: radial-gradient(circle at 20% 20%, rgba(232, 160, 181, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(168, 216, 160, 0.1) 0%, transparent 50%);
}

/* Flower Decorations */
.flower-decoration {
  position: absolute;
  font-size: 1.2rem;
  color: #e8a0b5;
  opacity: 0.7;
  z-index: 1;
  transition: all 0.5s ease;
}

.flower-top-left {
  top: 12px;
  left: 12px;
  transform: rotate(-15deg);
}

.flower-top-right {
  top: 12px;
  right: 12px;
  transform: rotate(15deg);
  color: #d4a0c8;
}

.flower-bottom-left {
  bottom: 80px;
  left: 12px;
  transform: rotate(-30deg);
  color: #a8d8a0;
  font-size: 1rem;
}

.flower-bottom-right {
  bottom: 80px;
  right: 12px;
  transform: rotate(30deg);
  color: #a8d8a0;
  font-size: 1rem;
}

.art-gallery-enhanced:hover .flower-decoration {
  opacity: 1;
  transform: scale(1.2) rotate(0deg);
}

.art-gallery-enhanced:hover .flower-top-left {
  transform: scale(1.3) rotate(-25deg);
  color: #ff8fab;
}

.art-gallery-enhanced:hover .flower-top-right {
  transform: scale(1.3) rotate(25deg);
  color: #c77dff;
}

/* Floating Petals */
.floating-petals {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  font-size: 0.8rem;
  opacity: 0;
  color: #ffb3c6;
  animation: floatPetal 4s ease-in-out infinite;
}

.petal:nth-child(1) {
  left: 15%;
  animation-delay: 0s;
  color: #ffb3c6;
}

.petal:nth-child(2) {
  left: 35%;
  animation-delay: 1s;
  color: #ffc8dd;
}

.petal:nth-child(3) {
  left: 60%;
  animation-delay: 2s;
  color: #bde0fe;
}

.petal:nth-child(4) {
  left: 80%;
  animation-delay: 3s;
  color: #a2d2ff;
}

@keyframes floatPetal {
  0% {
    top: -10%;
    opacity: 0;
    transform: translateX(0) rotate(0deg);
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    top: 100%;
    opacity: 0;
    transform: translateX(20px) rotate(360deg);
  }
}

.art-gallery-enhanced:hover .petal {
  animation-duration: 3s;
}

/* Sparkle Effects */
.sparkle {
  position: absolute;
  font-size: 0.6rem;
  color: var(--color-secondary);
  opacity: 0;
  animation: sparkleGlow 2s ease-in-out infinite;
  z-index: 2;
}

.sparkle-1 {
  top: 25%;
  left: 8%;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 40%;
  right: 8%;
  animation-delay: 0.7s;
}

.sparkle-3 {
  bottom: 35%;
  left: 15%;
  animation-delay: 1.4s;
  font-size: 0.5rem;
}

@keyframes sparkleGlow {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Enhanced Profile Photo for Art Gallery */
.art-gallery-enhanced .profile-card-photo {
  border: 3px solid;
  border-image: linear-gradient(135deg, #e8a0b5, #cda45e, #a8d8a0) 1;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(232, 160, 181, 0.3),
              0 0 20px rgba(205, 164, 94, 0.2);
}

.art-gallery-enhanced .profile-card-photo::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px dashed rgba(232, 160, 181, 0.4);
  border-radius: 50%;
  animation: rotateGlow 15s linear infinite;
}

/* Enhanced Label */
.art-gallery-enhanced .profile-card-label {
  background: linear-gradient(135deg, #e8a0b5, #d4a0c8) !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.art-gallery-enhanced .profile-card-label i {
  font-size: 0.7rem;
}

/* Enhanced Button */
.art-gallery-enhanced .profile-card-link {
  background: linear-gradient(135deg, #e8a0b5, #d4a0c8) !important;
}

.art-gallery-enhanced:hover .profile-card-link {
  background: linear-gradient(135deg, #ff8fab, #c77dff) !important;
  box-shadow: 0 8px 25px rgba(232, 160, 181, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .flower-decoration {
    font-size: 1rem;
  }
  
  .flower-bottom-left,
  .flower-bottom-right {
    bottom: 70px;
    font-size: 0.85rem;
  }
  
  .petal {
    font-size: 0.6rem;
  }
}

/* ==========================================
   ART GALLERY MEGA ENHANCED STYLES
   ========================================== */

/* Glowing Animated Border */
.glow-border {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 26px;
  background: linear-gradient(45deg, #ff6b9d, #c44569, #f8b500, #a8d8a0, #5f9ea0, #c44569, #ff6b9d);
  background-size: 400% 400%;
  animation: glowingBorder 4s ease infinite;
  z-index: -1;
  filter: blur(4px);
  opacity: 0.7;
}

@keyframes glowingBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.art-gallery-enhanced:hover .glow-border {
  filter: blur(8px);
  opacity: 1;
}

/* Vine Decorations */
.vine-decoration {
  position: absolute;
  width: 30px;
  height: 100%;
  top: 0;
  z-index: 2;
  pointer-events: none;
}

.vine-left {
  left: -5px;
}

.vine-right {
  right: -5px;
}

.vine-svg {
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.vine-flower {
  position: absolute;
  font-size: 0.9rem;
  animation: swayFlower 3s ease-in-out infinite;
}

.vine-left .v1 { top: 15%; left: 5px; animation-delay: 0s; }
.vine-left .v2 { top: 45%; left: -2px; animation-delay: 0.5s; }
.vine-left .v3 { top: 75%; left: 8px; animation-delay: 1s; }

.vine-right .v1 { top: 20%; right: 5px; animation-delay: 0.3s; }
.vine-right .v2 { top: 50%; right: -2px; animation-delay: 0.8s; }
.vine-right .v3 { top: 80%; right: 8px; animation-delay: 1.3s; }

@keyframes swayFlower {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.1); }
}

/* Rose Bouquets */
.rose-bouquet {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 2px;
}

.bouquet-top-left {
  top: 8px;
  left: 8px;
  transform: rotate(-15deg);
}

.bouquet-top-right {
  top: 8px;
  right: 8px;
  transform: rotate(15deg);
}

.rose {
  font-size: 1rem;
  animation: bloomRose 2s ease-in-out infinite;
  display: inline-block;
}

.r1 { animation-delay: 0s; }
.r2 { animation-delay: 0.3s; font-size: 0.85rem; }
.r3 { animation-delay: 0.6s; font-size: 0.7rem; }

@keyframes bloomRose {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.art-gallery-enhanced:hover .rose-bouquet {
  animation: bouquetPop 0.5s ease forwards;
}

@keyframes bouquetPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1.2); }
}

/* Butterflies */
.butterfly {
  position: absolute;
  font-size: 1.2rem;
  z-index: 5;
  opacity: 0.8;
}

.butterfly-1 {
  top: 30%;
  right: 15%;
  animation: flyButterfly1 8s ease-in-out infinite;
}

.butterfly-2 {
  bottom: 40%;
  left: 10%;
  animation: flyButterfly2 10s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes flyButterfly1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-20px, -15px) rotate(-10deg); }
  50% { transform: translate(-10px, 10px) rotate(5deg); }
  75% { transform: translate(15px, -5px) rotate(-5deg); }
}

@keyframes flyButterfly2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scaleX(-1); }
  25% { transform: translate(15px, -10px) rotate(10deg) scaleX(-1); }
  50% { transform: translate(5px, 15px) rotate(-5deg) scaleX(-1); }
  75% { transform: translate(-10px, 5px) rotate(5deg) scaleX(-1); }
}

/* Petal Rain */
.petal-rain {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.petal-rain .petal {
  position: absolute;
  font-size: 0.8rem;
  animation: petalFall 6s linear infinite;
  opacity: 0;
}

.p1 { left: 10%; animation-delay: 0s; }
.p2 { left: 25%; animation-delay: 1s; }
.p3 { left: 40%; animation-delay: 2s; }
.p4 { left: 55%; animation-delay: 3s; }
.p5 { left: 70%; animation-delay: 4s; }
.p6 { left: 85%; animation-delay: 5s; }

@keyframes petalFall {
  0% { top: -10%; opacity: 0; transform: rotate(0deg) translateX(0); }
  10% { opacity: 1; }
  90% { opacity: 0.8; }
  100% { top: 110%; opacity: 0; transform: rotate(360deg) translateX(30px); }
}

/* Sparkle Container */
.sparkle-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.sparkle-container .sparkle {
  position: absolute;
  animation: sparkleFloat 3s ease-in-out infinite;
  opacity: 0;
}

.s1 { top: 20%; left: 15%; animation-delay: 0s; font-size: 0.8rem; }
.s2 { top: 35%; right: 20%; animation-delay: 0.5s; font-size: 0.7rem; }
.s3 { top: 55%; left: 25%; animation-delay: 1s; font-size: 0.6rem; }
.s4 { bottom: 35%; right: 15%; animation-delay: 1.5s; font-size: 0.5rem; }
.s5 { bottom: 25%; left: 20%; animation-delay: 2s; font-size: 0.6rem; }

@keyframes sparkleFloat {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* Gold Dust */
.gold-dust {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.dust {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, #ffd700, #ffec8b);
  border-radius: 50%;
  animation: dustFloat 4s ease-in-out infinite;
  opacity: 0;
  box-shadow: 0 0 6px #ffd700;
}

.d1 { left: 20%; animation-delay: 0s; }
.d2 { left: 35%; animation-delay: 0.7s; }
.d3 { left: 50%; animation-delay: 1.4s; }
.d4 { left: 65%; animation-delay: 2.1s; }
.d5 { left: 80%; animation-delay: 2.8s; }
.d6 { left: 90%; animation-delay: 3.5s; }

@keyframes dustFloat {
  0% { top: 100%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 0.8; }
  100% { top: -10%; opacity: 0; }
}

/* Floral Frame around Photo */
.floral-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.frame-flower {
  position: absolute;
  font-size: 1rem;
  animation: orbitFlower 8s linear infinite;
  z-index: 3;
}

.ff1 { animation-delay: 0s; }
.ff2 { animation-delay: 2s; }
.ff3 { animation-delay: 4s; }
.ff4 { animation-delay: 6s; }

@keyframes orbitFlower {
  0% { transform: rotate(0deg) translateX(70px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(70px) rotate(-360deg); }
}

/* Name Flowers */
.name-flower {
  font-size: 0.9rem;
  display: inline-block;
  animation: nameFlowerPulse 2s ease-in-out infinite;
}

.name-flower:first-child { animation-delay: 0s; }
.name-flower:last-child { animation-delay: 1s; }

@keyframes nameFlowerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Bottom Flower Garden */
.flower-garden {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 4;
}

.garden-flower {
  font-size: 0.9rem;
  animation: gardenGrow 3s ease-in-out infinite;
  transform-origin: bottom center;
}

.gf1 { animation-delay: 0s; }
.gf2 { animation-delay: 0.3s; }
.gf3 { animation-delay: 0.6s; font-size: 1.1rem; }
.gf4 { animation-delay: 0.9s; }
.gf5 { animation-delay: 1.2s; }

@keyframes gardenGrow {
  0%, 100% { transform: scaleY(1) rotate(-3deg); }
  50% { transform: scaleY(1.1) rotate(3deg); }
}

/* Enhanced Art Gallery Card Override */
.art-gallery-enhanced {
  padding-bottom: 40px !important;
}

.art-gallery-enhanced .profile-card-subtitle::before,
.art-gallery-enhanced .profile-card-subtitle::after {
  content: none;
}

/* Hover Super Effects */
.art-gallery-enhanced:hover {
  transform: translateY(-12px) scale(1.02) !important;
}

.art-gallery-enhanced:hover .butterfly {
  animation-duration: 4s;
}

.art-gallery-enhanced:hover .petal-rain .petal {
  animation-duration: 4s;
}

.art-gallery-enhanced:hover .dust {
  animation-duration: 2.5s;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .vine-decoration { display: none; }
  .butterfly { font-size: 1rem; }
  .rose { font-size: 0.8rem; }
  .garden-flower { font-size: 0.75rem; }
  .frame-flower { font-size: 0.8rem; }
  @keyframes orbitFlower {
    0% { transform: rotate(0deg) translateX(55px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(55px) rotate(-360deg); }
  }
}

/* ==========================================
   ART GALLERY PROFESSIONAL LINE ART STYLES
   ========================================== */

.art-gallery-pro {
  background: linear-gradient(145deg, #fdfcfb 0%, #f8f6f4 100%) !important;
  border: 1px solid rgba(205, 164, 94, 0.3) !important;
  position: relative;
  overflow: visible !important;
}

/* Corner Line Art */
.corner-art {
  position: absolute;
  width: 40px;
  height: 40px;
  color: rgba(205, 164, 94, 0.5);
  transition: all 0.4s ease;
  z-index: 2;
}

.corner-art.top-left {
  top: 8px;
  left: 8px;
}

.corner-art.top-right {
  top: 8px;
  right: 8px;
}

.corner-art.bottom-left {
  bottom: 8px;
  left: 8px;
}

.corner-art.bottom-right {
  bottom: 8px;
  right: 8px;
}

.art-gallery-pro:hover .corner-art {
  color: var(--color-secondary);
  transform: scale(1.1);
}

/* Line Accents */
.line-accent {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205, 164, 94, 0.4), transparent);
  z-index: 2;
}

.accent-top {
  top: 50px;
}

.accent-bottom {
  bottom: 70px;
}

.art-gallery-pro:hover .line-accent {
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  width: 70%;
}

/* Enhanced Photo Frame for Pro Version */
.art-gallery-pro .profile-card-photo {
  border: 3px solid transparent;
  background: linear-gradient(#fff, #fff), linear-gradient(135deg, #cda45e, #f4d9a0, #cda45e);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08),
              0 0 20px rgba(205, 164, 94, 0.2);
  animation: photoGlow 3s ease-in-out infinite;
}

@keyframes photoGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 20px rgba(205, 164, 94, 0.2); }
  50% { box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12), 0 0 30px rgba(205, 164, 94, 0.35); }
}

.art-gallery-pro:hover .profile-card-photo {
  box-shadow: 0 8px 30px rgba(205, 164, 94, 0.3),
              0 0 40px rgba(205, 164, 94, 0.4);
  transform: scale(1.05);
}

/* Professional Label with shimmer */
.art-gallery-pro .profile-card-label {
  background: linear-gradient(135deg, #1a1a2e, #2d2d44) !important;
  color: var(--color-secondary) !important;
  position: relative;
  overflow: hidden;
}

.art-gallery-pro .profile-card-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Professional Button with glow */
.art-gallery-pro .profile-card-link {
  background: linear-gradient(135deg, #1a1a2e, #2d2d44) !important;
  position: relative;
  overflow: hidden;
}

.art-gallery-pro .profile-card-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(205, 164, 94, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.art-gallery-pro:hover .profile-card-link::after {
  width: 300px;
  height: 300px;
}

.art-gallery-pro:hover .profile-card-link {
  background: linear-gradient(135deg, var(--color-secondary), #b8943e) !important;
}

/* Add floating sparkles */
.art-gallery-pro::before {
  content: "✨";
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.2rem;
  animation: sparkle 2s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.2) rotate(15deg); opacity: 1; }
}

/* Subtle Hover Effect - Premium */
.art-gallery-pro:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15),
              0 0 0 2px rgba(205, 164, 94, 0.5),
              0 0 60px rgba(205, 164, 94, 0.2) !important;
}

/* Art Gallery Text Glow on Hover */
.art-gallery-pro:hover .profile-card-name {
  text-shadow: 0 0 20px rgba(205, 164, 94, 0.3);
}

.art-gallery-pro:hover .profile-card-subtitle {
  color: var(--color-secondary);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .corner-art {
    width: 30px;
    height: 30px;
  }
  
  .line-accent {
    width: 50%;
  }
}

/* Logo Gem Icon Styles */
.logo i.fa-gem {
  color: #000000;
  font-size: 1.3rem;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.logo:hover i.fa-gem {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
  .logo i.fa-gem {
    font-size: 1.1rem;
  }
}

/* Powered By Styles */
.powered-by {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #666;
}

.powered-by a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.powered-by a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================
   BOYS HOSTEL BANNER CARD
   ========================================== */

.boys-hostel-banner {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Hostel Video Row - Side by Side Layout */
.hostel-video-row {
  display: flex;
  gap: 25px;
  align-items: stretch;
}

/* Video Card Styles */
.hostel-video-card {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(205, 164, 94, 0.2);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #cda45e, #b8963f);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  width: fit-content;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Mobile Hero Video Section */
.mobile-hero-video {
  display: none;
  background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
  padding: 15px 20px 25px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-hero-video::before {
  content: "🎥 Take a Virtual Tour";
  display: block;
  color: #333;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 12px;
}

.mobile-hero-video .video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .mobile-hero-video {
    display: block;
  }
  
  /* Adjust hero content for smaller height */
  .hero-slide-content {
    padding-top: 60px;
  }
  
  .hero-slide-content h1 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-slide-content p {
    display: none; /* Hide description on mobile to save space */
  }
  
  .hero-btns {
    gap: 0.8rem;
  }
  
  .hero-btns .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
  
  /* Hide scroll indicator on mobile with reduced hero */
  .hero-scroll-indicator {
    display: none;
  }
}

.video-caption {
  color: #666;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 0;
}


.boys-hostel-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(205, 164, 94, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}

.boys-hostel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(205, 164, 94, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.boys-hostel-card:hover::before {
  opacity: 1;
}

.boys-hostel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(205, 164, 94, 0.6);
}

.boys-hostel-content {
  position: relative;
  z-index: 1;
}

.boys-hostel-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(205, 164, 94, 0.2);
  border: 1px solid var(--color-secondary);
  border-radius: 25px;
  color: var(--color-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.boys-hostel-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.boys-hostel-desc {
  font-size: 1rem;
  color: #666;
  max-width: 500px;
  margin-bottom: 20px;
}

.boys-hostel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.boys-hostel-card:hover .boys-hostel-link {
  gap: 15px;
}

.boys-hostel-link i {
  transition: transform 0.3s ease;
}

.boys-hostel-card:hover .boys-hostel-link i {
  transform: translateX(5px);
}

.boys-hostel-icon {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  background: rgba(205, 164, 94, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-secondary);
  transition: all 0.4s ease;
}

.boys-hostel-card:hover .boys-hostel-icon {
  transform: scale(1.1);
  background: rgba(205, 164, 94, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .hostel-video-row {
    flex-direction: column;
  }
  
  .boys-hostel-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .boys-hostel-content {
    order: 2;
  }
  
  .boys-hostel-icon {
    order: 1;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
  
  .boys-hostel-title {
    font-size: 1.5rem;
  }
  
  .boys-hostel-desc {
    font-size: 0.9rem;
  }
  
  .hostel-video-card {
    display: none;
  }
  
  .video-caption {
    font-size: 0.85rem;
  }
}

/* Fix Trial Stay Sticky Button */
#stickyBookingBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  white-space: nowrap;
}

#stickyBookingBtn span {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  #stickyBookingBtn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  
  #stickyBookingBtn span {
    font-size: 0.85rem;
  }
}

/* =========================================
   Room Preview Card
   ========================================= */

.room-preview-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.room-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.room-preview-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.room-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.room-preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.room-preview-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.room-preview-price .price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.room-preview-price .price-period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.room-preview-content {
  padding: 20px;
  text-align: center;
}

.room-preview-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.room-preview-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.room-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #0a192f, #1a2f4f);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.room-preview-btn:hover {
  background: linear-gradient(135deg, var(--color-secondary), #b8943e);
}

/* Announcement Card Styles */
.announcement-card {
  border: 2px solid var(--color-secondary);
  box-shadow: 0 0 20px rgba(205, 164, 94, 0.3) !important;
  position: relative;
}

.announcement-card:hover {
  box-shadow: 0 0 30px rgba(205, 164, 94, 0.5) !important;
  transform: translateY(-5px);
}

.offer-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff4757;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.3);
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 71, 87, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

.announcement-card .price-amount {
  color: var(--color-secondary-light);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-size: 1.8rem;
}

.announcement-card .room-preview-desc {
  color: var(--color-primary);
  font-weight: 700;
}

/* ============================================
   NEET Result Showcase Section - Light Theme
   ============================================ */
.neet-result-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8f5f0 50%, #fdf8f3 100%);
    overflow: hidden;
    position: relative;
}

/* Decorative background elements */
.neet-result-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), #e8d4a8, var(--color-secondary));
}

.neet-result-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), #e8d4a8, var(--color-secondary));
}

.neet-header {
    text-align: center;
    margin-bottom: 40px;
}

.neet-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fff8e7 0%, #ffefc8 100%);
    border: 2px solid var(--color-secondary);
    color: #8b6914;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(205, 164, 94, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(205, 164, 94, 0.2); }
    50% { box-shadow: 0 4px 25px rgba(205, 164, 94, 0.4); }
}

.neet-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #1a1f38;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.neet-header p {
    color: #555 !important;
    font-size: 1.1rem;
}

.neet-scroller-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
}

.neet-scroller {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px 15px 5px; /* Reduced bottom padding */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--color-secondary) rgba(255, 255, 255, 0.1);
}

.neet-scroller::-webkit-scrollbar {
    height: 4px; /* Thin bar */
}

.neet-scroller::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.neet-scroller::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 4px;
}

.neet-card {
    min-width: 280px;
    max-width: 280px;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(205, 164, 94, 0.1);
    overflow: hidden;
}

.neet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-secondary), #e8d4a8, var(--color-secondary));
    border-radius: 20px 20px 0 0;
}

.neet-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(205, 164, 94, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.neet-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(205, 164, 94, 0.2);
}


.neet-student-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-secondary);
    padding: 2px;
    background: #fff;
}

/* Girl Icon for NEET Result Cards (Fallback) */
.neet-student-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* Safari/WebKit compatible gradients */
    background: #e8b4d8; /* Fallback solid color */
    background: -webkit-linear-gradient(315deg, #f8e1f4 0%, #e8b4d8 50%, #d896c8 100%);
    background: -moz-linear-gradient(315deg, #f8e1f4 0%, #e8b4d8 50%, #d896c8 100%);
    background: -o-linear-gradient(315deg, #f8e1f4 0%, #e8b4d8 50%, #d896c8 100%);
    background: linear-gradient(135deg, #f8e1f4 0%, #e8b4d8 50%, #d896c8 100%);
    border: 3px solid #cda45e;
    /* Safari-compatible flexbox */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 4px 15px rgba(205, 164, 94, 0.3);
    box-shadow: 0 4px 15px rgba(205, 164, 94, 0.3);
}

.neet-student-icon i {
    font-size: 2rem;
    color: #8b4789;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Ensure icon is visible */
    display: block;
    line-height: 1;
}

/* Student Photo for NEET Result Cards */
.neet-student-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%; /* Focus on face area */
    display: block;
    transition: transform 0.3s ease;
}

.neet-card:hover .neet-student-photo {
    transform: scale(1.1);
}

/* Ensure consistent wrapper sizing with circular mask */
.neet-student-img-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #cda45e;
    box-shadow: 0 4px 15px rgba(205, 164, 94, 0.3);
    background: linear-gradient(135deg, #f8e1f4 0%, #e8b4d8 50%, #d896c8 100%);
}


.neet-rank-badge {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: #0a192f;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.neet-score {
    display: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.neet-score span {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
}

.neet-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1f38;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.neet-quote {
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
    line-height: 1.5;
    background: linear-gradient(135deg, #fdf8f3 0%, #f8f5f0 100%);
    padding: 12px 16px;
    border-radius: 12px;
    position: relative;
    border-left: 3px solid var(--color-secondary);
    margin-top: 8px;
}

.neet-quote::before {
    content: '❝';
    font-size: 1.2rem;
    color: var(--color-secondary);
    position: absolute;
    top: -6px;
    left: 10px;
    background: #fff;
    padding: 0 4px;
}

.neet-college {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--color-secondary), #b8943e);
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(205, 164, 94, 0.3);
}

/* ============================================
   NEET Scrolling Marquee (Slider) - Light Theme
   ============================================ */
.neet-marquee-container {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, #fff8e7, #ffefc8, #fff8e7);
    padding: 14px 0;
    margin-top: 30px;
    border-top: 2px solid rgba(205, 164, 94, 0.3);
    border-bottom: 2px solid rgba(205, 164, 94, 0.3);
}

.neet-marquee-content {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.neet-marquee-item {
    color: #1a1f38;
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    padding: 4px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.neet-marquee-item i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.neet-marquee-container:hover .neet-marquee-content {
    animation-play-state: paused;
}

/* ==========================================
   MOBILE VIEWPORT & OVERFLOW FIXES
   ========================================== */

/* Prevent horizontal scrolling on all devices */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
    /* Fix body overflow */
    body {
        position: relative;
        width: 100%;
        min-height: 100vh;
    }
    
    /* Ensure all sections don't overflow */
    section,
    .container,
    header,
    footer {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Fix navbar to be truly fixed */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }
    
    /* Ensure hero doesn't cause overflow */
    .hero-carousel,
    .hero-slide,
    .hero-slide img {
        max-width: 100vw;
        overflow: hidden;
    }
    
    /* Fix any wide elements */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    
    /* Prevent text from causing overflow */
    h1, h2, h3, h4, h5, h6, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix welcome modal on mobile */
    .signin-modal-content {
        max-width: 90vw !important;
        margin: 0 auto;
    }
}

/* ============================================
   OUR RESULT SHOWCASE SECTION
   ============================================ */

.result-showcase-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fffdf8 0%, #fef9f0 50%, #fff8eb 100%);
    position: relative;
    overflow: hidden;
}

.result-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #cda45e, #d4af37, #cda45e, transparent);
}

.result-showcase-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #cda45e, #d4af37, #cda45e, transparent);
}

.result-header {
    text-align: center;
    margin-bottom: 50px;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #cda45e 0%, #d4af37 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(205, 164, 94, 0.4);
}

.result-badge i {
    font-size: 1rem;
}

.result-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1f38;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.result-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Horizontal Scroller Wrapper */
.result-scroller-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #cda45e #f0f0f0;
    padding: 20px 0;
}

.result-scroller-wrapper::-webkit-scrollbar {
    height: 8px;
}

.result-scroller-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.result-scroller-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #cda45e, #d4af37);
    border-radius: 4px;
}

.result-scroller {
    display: flex;
    gap: 25px;
    padding: 10px 20px 30px;
    width: max-content;
}

.result-student-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(205, 164, 94, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 240px;
    max-width: 260px;
    flex-shrink: 0;
}

.result-student-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #cda45e, #d4af37, #cda45e);
}

.result-student-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(205, 164, 94, 0.25);
}

.result-photo-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #cda45e;
    box-shadow: 0 5px 20px rgba(205, 164, 94, 0.3);
    background: linear-gradient(135deg, #f8e1f4 0%, #e8b4d8 50%, #d896c8 100%);
}

.result-student-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.4s ease;
}

.result-student-card:hover .result-student-photo {
    transform: scale(1.1);
}

.result-rank-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a1f38 0%, #2a3050 100%);
    color: #cda45e;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid #cda45e;
    margin-bottom: 10px;
    position: relative;
    top: -10px; /* Slight overlap with photo for style, or 0 for no overlap */
    z-index: 2;
}

.result-student-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1f38;
    margin: 0 0 12px 0;
    font-family: 'Poppins', sans-serif;
}

.result-quote {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    padding: 12px 10px;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0e8 100%);
    border-radius: 10px;
    border-left: 3px solid #cda45e;
    position: relative;
}

.result-quote::before {
    content: '"';
    position: absolute;
    top: 5px;
    left: 8px;
    font-size: 1.5rem;
    color: #cda45e;
    opacity: 0.4;
    font-family: Georgia, serif;
}

/* Responsive Styles */
/* Responsive Styles */
@media (max-width: 768px) {
    .result-showcase-section {
        padding: 60px 0;
    }
    
    .result-main-title {
        font-size: 2rem;
    }
    
    .result-scroller {
        gap: 15px;
        padding: 0 15px 20px;
    }
    
    .result-student-card {
        padding: 20px 15px;
        min-width: 220px;
        max-width: 220px;
    }
    
    .result-photo-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .result-student-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .result-student-card {
        min-width: 200px;
        max-width: 200px;
    }
    
    .result-photo-wrapper {
        width: 90px;
        height: 90px;
    }
    
    .result-rank-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
}

/* Location Highlight Section */
.location-highlight-section {
    padding: 60px 0 30px;
    background: #fff;
    scroll-margin-top: 100px; /* Offset for sticky headers if any */
}

.location-banner {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    color: #1a1f38;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(205, 164, 94, 0.3);
}

.location-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(205, 164, 94, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.location-badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: rgba(205, 164, 94, 0.15);
    color: #cda45e;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(205, 164, 94, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-title {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    color: #1a1f38;
}

.highlight-text {
    color: #cda45e;
    font-style: normal; /* Removed italics as per request */
}

.location-subtitle {
    position: relative;
    z-index: 2;
    opacity: 0.9;
    margin-bottom: 50px;
    font-size: 1.15rem;
    color: #555;
}

.location-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.loc-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2;
    min-width: 120px;
}

.loc-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #1a1f38;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #f0f0f0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hostel-point .loc-icon {
    color: #fff;
    background: #1a1f38;
    border-color: #cda45e;
    box-shadow: 0 10px 30px rgba(26, 31, 56, 0.2);
}

.allen-point .loc-icon {
     color: #1a1f38;
     border-color: #cda45e;
}

.loc-point:hover .loc-icon {
    transform: scale(1.15);
}

.loc-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1f38;
    letter-spacing: 0.5px;
}

.loc-path {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}

.loc-distance {
    background: #fff;
    color: #1a1f38;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: bounce 2s infinite ease-in-out;
    border: 1px solid #cda45e;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.path-line {
    width: 100%;
    height: 4px;
    background: rgba(26, 31, 56, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.path-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #cda45e, transparent);
    transform: translateX(-100%);
    animation: flow 2.5s infinite linear;
}

@keyframes flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

/* Responsive Styles for Location Section */
@media (max-width: 768px) {
    .location-highlight-section {
        padding: 40px 0 20px;
    }

    .location-banner {
        padding: 40px 20px;
    }

    .location-visual {
        flex-direction: column;
        gap: 30px;
    }
    
    .path-line {
        width: 4px;
        height: 80px;
    }
    
    .path-line::after {
        background: linear-gradient(180deg, transparent, #cda45e, transparent);
        height: 50%;
        width: 100%;
        animation: flow-vert 2.5s infinite linear;
    }
    
    .loc-path {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    @keyframes flow-vert {
        0% { transform: translateY(-100%); }
        100% { transform: translateY(250%); }
    }
    
    /* Reorder for mobile: Hostel -> Line -> Distance -> Allen */
    .loc-distance {
        order: -1;
        position: absolute;
        left: 50%;
        transform: translateX(-50%); /* Centered to avoid cutting off */
        white-space: nowrap;
        animation: none;
        z-index: 10;
    }

    .location-title {
        font-size: 1.8rem;
    }
}

/* ===========================================
   SMOOTH SCROLL REVEAL ANIMATIONS
   GPU-accelerated for buttery smooth movement
   =========================================== */

/* Base state for elements that will animate on scroll */
.reveal-element {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up reveal */
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered reveal delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Smooth section transitions */
section {
  transition: opacity 0.3s ease;
}

/* Improved card hover animations */
.room-card-v2,
.service-card,
.result-student-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Smooth image hover effects */
.room-carousel img,
.experience-image img,
.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Hero content entrance animation */
.hero-slide-content {
  animation: heroContentFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroContentFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Improved hero slide transitions */
.hero-slide {
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth button interactions */
.btn,
.btn-gold,
.btn-outline,
.nav-btn,
.room-btn-v2 {
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, box-shadow;
}

/* Smooth navbar background transition */
.navbar {
  transition: box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reduced motion preference support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal-element,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* --- Added Safari Fixes and Missing Animations --- */

/* Missing Keyframes for Hero Animation */
@keyframes kenBurns {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Ensure images don't distort */
img {
  max-width: 100%;
  height: auto;
  object-fit: cover; /* Global fix for object-fit: ensures aspect ratio is preserved */
}

/* Fix for specific Safari mobile flex issues */
.hero-btns {
  flex-wrap: wrap; 
}

/* Fix for gallery grid items if they lack object-fit */
.gallery-item img {
  object-fit: cover !important;
}

