:root {
  --color-bg: #f8f9fa; /* base background */
  --color-surface: #ffffff;
  --color-card: #ffffff;
  --color-accent: #38b6ff; /* Changed: Blue shade to #38b6ff */
  --color-accent-2: #fff6d4; /* Changed: Yellow to gold #ffd21c */
  --color-text: #1a1a1a; /* intensified black for titles */
  --color-text-secondary: #4a4a4a; /* softer black for descriptions */
  --color-muted: #5d6f6f;
  --border: #e7efef;
  --shadow-1: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius-1: 12px;
  --radius-2: 20px;
  --maxw: 1400px; /* widened content width to reduce side space */
  /* customization tokens */
  --spacing-section-y: clamp(18px, 3.2vw, 28px); /* fluid section spacing */
  --btn-radius: 999px; /* Changed: Make buttons capsule shaped */
  --link-underline: currentColor; /* underline color */
  /* optimized animation timing for better performance */
  --anim-duration: 0.3s; /* Reduced duration for snappier animations */
  --anim-ease: ease-out;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}

/* Ensure footer sticks to bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-top: 0; /* No padding needed since promo hero is full height */
}

@media (max-width: 768px) {
  main {
    padding-top: 0; /* No padding for mobile */
  }
}
body {  
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: clamp(14px, 1.8vw, 16px); /* fluid base font size */
}

/* Global Custom Scrollbar - Hidden until hover */
* {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

*:hover {
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

/* Webkit browsers (Chrome, Safari, Edge) */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 4px;
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}

*:hover::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Global heading styles with intensified black */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text);
  font-weight: 600;
}

/* Global paragraph and text styles with softer black */
p,
span,
div,
li {
  color: var(--color-text-secondary);
}

/* Override for white text elements to maintain their white color */
.tile.portrait .p-body h3,
.tile.portrait .p-body p,
.tile.portrait .p-view,
.tile.portrait .p-view .arrow {
  color: #ffffff !important;
}

/* Home page section titles - black with fancy underline */
.section-head h2 {
  color: #1a1a1a !important;
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.container {
  width: 100%;
  /* Remove horizontal gutters to maximize content width */
  max-width: min(var(--maxw), 100%);
  margin: 0px auto;
  padding: 20px; /* no extra side padding */
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #000;
  color: #fff;
  z-index: 1000;
}

/* Header */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #38b6ff; /* Changed: Blue shade to #38b6ff */
  backdrop-filter: blur(8px);
  border-bottom: none;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.brand {
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 24px;
}
.menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  position: relative;
  transition: transform var(--anim-duration) var(--anim-ease);
}
.menu a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--anim-duration) var(--anim-ease);
  opacity: 0.7;
}
.menu a:hover::after {
  transform: scaleX(1);
}
.menu a:hover {
  transform: scale(1.1);
}

/* Ensure enlarge effect applies specifically to primary menu anchors */
#primary-menu a {
  display: inline-block;
  transform-origin: center;
  font-size: 18px;
  font-weight: 500;
}
#primary-menu a:hover {
  transform: scale(1.1);
}
.menu a:hover,
.menu a[aria-current="page"] {
  color: #ffffff;
  background: transparent; /* remove hover background */
}

/* Footer */
#site-footer {
  margin-top: 60px;
  padding: 60px 0 24px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: rgba(255, 255, 255, 0.9);
  border-top: none;
}

#site-footer .container {
  max-width: var(--maxw);
}

#site-footer h3 {
  color: white;
  font-size: 24px;
  margin: 0 0 16px 0;
  font-weight: 700;
}

#site-footer h4 {
  color: white;
  font-size: 18px;
  margin: 0 0 12px 0;
  font-weight: 600;
}

#site-footer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin: 0 0 12px 0;
}

#site-footer a {
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s ease;
}

#site-footer a:hover {
  color: #ffed4e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about {
  max-width: 350px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  transform: translateX(4px);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffd700;
}

.contact-text {
  flex: 1;
}

.contact-text strong {
  display: block;
  color: white;
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ffd700;
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Hero */
.hero {
  position: relative;
  height: calc(100vh - 100px);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity var(--anim-duration) var(--anim-ease);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}
.hero-content {
  position: absolute;
  left: 5%;
  bottom: 10%;
  max-width: 640px;
}
.eyebrow {
  color: #ffd21c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(16px, 3vw, 24px);
}
.h1 {
  font-size: clamp(36px, 7vw, 55px);
  line-height: 1.1;
  margin: 10px 0 16px;
  color: #fff;
}
.lede {
  color: #eaf4f4;
  font-size: clamp(16px, 3vw, 24px);
  margin-bottom: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px; /* more tablet-like */
  border-radius: var(--btn-radius);
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--color-text);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 600;
}

.btn.primary {
  background: #ffd21c;
  border-color: #ffd21c;
  color: #2b2b2b;
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 127, 80, 0.18);
}
.btn:active {
  transform: scale(1);
}
button.btn,
a.btn {
  cursor: pointer;
}

.btn.hollow {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
  border-width: 3px;
}

/* Overview tiles */
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.tile {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.tile h3 {
  margin: 6px 0 8px;
  font-size: 18px;
}
.tile p {
  margin: 0;
  color: var(--color-muted);
}

/* Portrait tile variant (kept for backward compatibility if used elsewhere) */
.tile.portrait {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border-radius: 0;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  will-change: transform;
}
.tile.portrait:hover {
  transform: scale(1.02);
  z-index: 3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.tile.portrait .p-media {
  position: absolute;
  inset: 0;
  background: #eef5f5 center/cover no-repeat;
  transition: filter 0.2s ease-out, transform 0.2s ease-out;
}
.tile.portrait:hover .p-media {
  filter: blur(1px) brightness(0.95);
  transform: scale(1.01);
}
.tile.portrait .p-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 80%
  );
}
.tile.portrait .p-body h3 {
  margin: 0 0 6px;
  color: #ffffff;
}
.tile.portrait .p-body p {
  margin: 0;
  color: #eaf4f4;
}

/* Weather & Video Side by Side Section */
#section-weather-video {
  margin: var(--spacing-section-y) 0;
  padding: clamp(40px, 5vw, 60px) 0;
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8feff 100%);
}

#section-weather-video .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

#section-weather-video .section-head {
  text-align: center;
}

.weather-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

.weather-card,
.video-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weather-card:hover,
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.subsection-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 20px 0;
  position: relative;
  padding-bottom: 12px;
}

.subsection-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  border-radius: 2px;
}

/* Weather widget */
.weather {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.weather .current {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--color-bg);
  border-radius: 12px;
  margin-bottom: 16px;
}
.weather .current .temp {
  font-size: 48px;
  font-weight: 700;
  color: #38b6ff;
}
.weather .current .cond {
  color: var(--color-muted);
  font-size: 14px;
}
.weather .future {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 8px;
  align-items: stretch;
  margin-bottom: 16px;
}
.chip {
  min-width: 0;
  width: 100%;
  background: #f2f7f7;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
  cursor: pointer;
}

.chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}

/* Sections */
section {
  margin: var(--spacing-section-y) 0;
  /* Add vertical padding to separate sections (top & bottom) */
  padding: 10px 50px; /* only vertical padding, no horizontal */
}
/* Remove top padding for the hero section only */
#section-hero {
  padding-top: 0 !important;
}
#section-hero {
  margin-top: 0 !important;
}
/* Make hero section full-bleed */
#section-hero.container {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}
section#section-hero {
  margin-left: 0;
  margin-right: 0;
}
#section-hero .hero {
  border-radius: 0;
  box-shadow: none;
}
/* Apply vertical padding to all top-level sections inside main, except the first (hero wrapper) */
main > section {
  padding-block: clamp(16px, 3vw, 36px);
}
main > section:first-of-type {
  padding-block: 0;
}

/* Fix "Ready to plan?" section spacing */
#section-cta {
  padding-block: clamp(40px, 6vw, 60px) !important;
  text-align: center;
}

#section-cta .section-head {
  margin-bottom: 24px;
  justify-content: center;
  text-align: center;
}

#section-cta .section-head h2 {
  margin-bottom: 0;
}

#section-cta .btn {
  margin-right: 12px;
  margin-bottom: 8px;
}
section .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
section .section-head h2 {
  margin: 0;
}

#section-promo .section-head,
#section-pool .section-head,
#section-gallery .section-head {
  justify-content: center;
  text-align: center;
}
#section-promo .section-head h2,
#section-pool .section-head h2,
#section-gallery .section-head h2,
#section-video .section-head h2,
#section-weather .section-head h2,
#section-cta .section-head h2 {
  font-size: 45px;
}

/* Homepage section titles - underline reaches end of text */
#section-promo .section-head h2::after,
#section-pool .section-head h2::after,
#section-gallery .section-head h2::after,
#section-video .section-head h2::after,
#section-weather .section-head h2::after,
#section-cta .section-head h2::after {
  width: 100%;
  right: 0;
}

#section-video {
  position: relative;
  z-index: 1;
  contain: layout style;
}

/* Optimized lazy section reveal */
.lazy-in {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}
.lazy-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery */
#section-gallery {
  margin: 0 !important;
}

.feature-list {
  display: grid;
  gap: 100px; /* increased vertical space between gallery items */
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0; /* maximize horizontal space */
}
.feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
  opacity: 0.001;
  transform: translateY(8px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  overflow: hidden;
}
.feature:nth-child(even) {
  grid-template-columns: 0.9fr 1.1fr;
}
.feature:nth-child(even) .feature-media-wrap {
  order: 2;
}
.feature:nth-child(even) .feature-content {
  order: 1;
}
.feature.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-media-wrap {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 60px 0px;
  overflow: hidden;
}
.feature-media {
  position: absolute;
  inset: 0;
  background: #eef5f5 url("") center/cover no-repeat;
  transform: scale(1);
  transition: transform 0.2s ease-out;
}
.feature-media-wrap:hover .feature-media {
  transform: scale(1.02);
}
.feature-content {
  padding: 10px 12px;
}
.feature-content h3 {
  margin: 0 0 6px;
  position: relative;
  font-size: 36px;
  font-weight: 300;
}
.feature-content h3::after {
  display: none;
}
.feature-content p {
  margin: 10px 0 0;
  max-width: 56ch;
}

/* Responsive video embed */
.video-embed {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-bg);
}
.video-embed::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  pointer-events: auto;
  transform: translateZ(0);
  will-change: auto;
}

/* Toasts */
#toast-root {
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 8px;
  z-index: 100;
}
.toast {
  background: #0a7c7c;
  color: #ffffff;
  border: 1px solid transparent;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow-1);
}
.toast.error {
  background: #b54747;
}
.toast.success {
  background: #2f8a57;
}

/* Modal */
#modal-root .modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  z-index: 90;
}
#modal-root .card {
  background: var(--color-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 640px;
  width: 92%;
  padding: 18px;
}

/* Loader */
#loader-root[aria-busy="true"] {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.45);
  z-index: 95;
}
.spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(0, 0, 0, 0.12);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Packages grid with slide-in overlay reveal + bg blur */
.packages-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 20px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.package-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-1);
}
.package-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: filter 0.4s ease, transform 0.4s ease;
}
.package-overlay {
  position: absolute;
  top: 0;
  right: -60%;
  bottom: 0;
  width: 60%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-left: 1px solid var(--border);
}
.package-meta {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.package-card:hover .package-media {
  filter: blur(2px) brightness(0.9);
  transform: scale(1.04);
}
.package-card:hover .package-overlay {
  right: 0;
}
.package-title {
  font-weight: 600;
  margin: 0;
}
.package-price {
  color: var(--color-accent-2);
}
.package-cta {
  margin-top: auto;
  display: flex;
  gap: 8px;
}
.package-cta .btn {
  padding: 10px 12px;
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
  /* Simplify package cards on touch */
  .package-overlay {
    position: static;
    right: auto;
    width: auto;
    background: #ffffff;
    backdrop-filter: none;
    border-left: 0;
    padding: 12px;
    transition: none;
  }
  .package-card:hover .package-media {
    filter: none;
    transform: none;
  }
  .package-card:hover .package-overlay {
    right: auto;
  }
}

/* Forms, inputs, tables */
.input,
select {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--color-text);
  padding: 12px 14px;
  border-radius: 12px;
  min-width: 220px;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"] {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--color-text);
  padding: 12px 14px;
  border-radius: 12px;
  min-width: 220px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: hue-rotate(120deg) saturate(1.2);
  opacity: 0.8;
}
input[type="date"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}
label {
  display: block;
  margin: 6px 0 4px;
}
.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form {
  background: var(--color-surface);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
}
.error-text {
  color: #b54747;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.table th,
.table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.chip.badge {
  padding: 4px 8px;
  display: inline-block;
  background: #eef5f5;
  border: 1px solid var(--border);
}

/* Footer and About underline animation */
#site-footer a,
[href^="#/about"] {
  position: relative;
}
#site-footer a::after,
[href^="#/about"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  opacity: 0.6;
}
#site-footer a:hover::after,
[href^="#/about"]:hover::after {
  transform: scaleX(1);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 24px; /* Aligned with AI button horizontal position */
  bottom: 106px; /* Vertically aligned with AI button */
  z-index: 110;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px -8px rgba(59, 130, 246, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  cursor: pointer;
  outline: none;
}
.back-to-top[hidden] {
  opacity: 0;
  pointer-events: none;
}
.back-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px -8px rgba(59, 130, 246, 0.35);
}

.back-to-top:focus {
  outline: none;
  box-shadow: 0 8px 32px -8px rgba(59, 130, 246, 0.25);
}

.back-to-top:active {
  transform: scale(0.95);
}

.ai-button {
  position: fixed;
  bottom: 40px;
  right: 24px;
  z-index: 110;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px -8px rgba(59, 130, 246, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  cursor: pointer;
}

.ai-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px -8px rgba(59, 130, 246, 0.35);
}

.ai-button.hidden {
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

/* AI Chat Popup - Modern Design */
.ai-chat-popup {
  position: fixed;
  bottom: 40px;
  right: 90px;
  z-index: 130;
  width: 380px;
  height: 500px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px -15px rgba(39, 39, 42, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(32px) scale(0.95);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.ai-chat-popup.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}

/* Header */
.ai-chat-header {
  background: var(--color-accent);
  color: white;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px 24px 0 0;
}

.ai-chat-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.ai-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}


@keyframes pulse {
  0%, 100% { 
    opacity: 1; 
    box-shadow: 
      0 0 0 2px rgba(255, 255, 255, 0.8),
      0 0 12px rgba(74, 222, 128, 0.8),
      0 0 24px rgba(74, 222, 128, 0.6),
      0 0 36px rgba(74, 222, 128, 0.4);
  }
  50% { 
    opacity: 0.8; 
    box-shadow: 
      0 0 0 3px rgba(255, 255, 255, 1),
      0 0 18px rgba(74, 222, 128, 1),
      0 0 36px rgba(74, 222, 128, 0.8),
      0 0 54px rgba(74, 222, 128, 0.6);
  }
}

.ai-chat-details {
  flex: 1;
}

.ai-name {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
}

.ai-status {
  font-size: 12px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  color: white;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #10b981 0%, #22c55e 50%, #16a34a 100%);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 
    0 0 0 2px rgba(255, 255, 255, 0.8),
    0 0 12px rgba(74, 222, 128, 0.8),
    0 0 24px rgba(74, 222, 128, 0.6),
    0 0 36px rgba(74, 222, 128, 0.4);
}

.ai-chat-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ai-chat-minimize,
.ai-chat-close {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0.8;
  font-weight: 900;
  font-size: 24px;
}

.ai-chat-minimize:hover,
.ai-chat-close:hover {
  background-color: rgba(255,255,255,0.1);
  opacity: 1;
}

/* Messages Area */
.ai-chat-messages {
  flex: 1;
  height: 400px;
  padding: 16px;
  overflow-y: auto;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

.message-group {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  max-width: 80%;
}

.user-message-group {
  flex-direction: row-reverse;
  align-self: flex-end;
  margin-left: auto;
}

.message-avatar {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.user-message-group .message-avatar {
  background: #6366f1;
}

.message-bubble {
  background: white;
  border-radius: 16px;
  padding: 12px 16px;
  position: relative;
  max-width: 100%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ai-message-bubble {
  background: #ffd700;
  color: white;
  border-bottom-left-radius: 4px;
}

.user-message-bubble {
  background: #f4f4f5;
  color: #18181b;
  border-bottom-right-radius: 4px;
}

.message-text {
  margin: 0;
}

.message-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: inherit;
}

.message-time {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 4px;
  color: #71717a;
}

.ai-message-bubble .message-time {
  color: rgba(0,0,0,0.6);
}

/* Input Area */
.ai-chat-input-container {
  padding: 16px;
  background: white;
  border-top: 1px solid #e4e4e7;
  border-radius: 0 0 24px 24px;
}

.ai-chat-input-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ai-chat-input {
  flex: 1;
  border: 1px solid #e4e4e7;
  border-radius: 24px;
  padding: 12px 16px;
  font-size: 14px;
  color: #18181b;
  outline: none;
  transition: all 0.2s ease;
}

.ai-chat-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ai-chat-input::placeholder {
  color: #71717a;
}

.ai-chat-send {
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ai-chat-send:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.ai-chat-send:active {
  transform: scale(0.95);
}

.ai-chat-send:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  transform: none;
}

/* Hide notification when chat is open */
.ai-chat-popup.show ~ .ai-notification {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 480px) {
  .ai-button {
    bottom: 20px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  
  .ai-chat-popup {
    right: 16px;
    bottom: 20px;
    left: 16px;
    width: auto;
    height: 500px;
    max-height: calc(100vh - 40px);
    border-radius: 24px;
  }
  
  .ai-chat-messages {
    padding: 16px;
    height: 400px;
  }
  
  .ai-chat-header {
    padding: 16px;
  }
  
  .ai-chat-user-info {
    gap: 8px;
  }
  
  .ai-name {
    font-size: 14px;
  }
  
  .ai-status {
    font-size: 12px;
  }
  
  .message-group {
    max-width: 90%;
  }
  
  .ai-chat-input-container {
    padding: 16px;
  }
  
  /* Additional mobile chatbot improvements */
  
  .ai-chat-input {
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 14px 16px;
  }
  
  .ai-chat-send {
    width: 44px;
    height: 44px;
  }
  
  .message-bubble {
    padding: 10px 14px;
    border-radius: 14px;
  }
  
  .message-text p {
    font-size: 15px;
    line-height: 1.4;
  }
  
  .typing-indicator {
    padding: 10px 14px;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .ai-chat-popup {
    right: 80px;
    bottom: 40px;
    width: 360px;
    height: 500px;
  }
  
  .ai-chat-messages {
    padding: 14px;
    height: 380px;
  }
  
  .ai-chat-header {
    padding: 14px 16px;
  }
  
  .ai-chat-input-container {
    padding: 14px;
  }
  
  .ai-chat-input {
    font-size: 15px;
    padding: 13px 15px;
  }
  
  .message-bubble {
    padding: 11px 15px;
  }
  
  .message-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #ffd700;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  max-width: 80px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.typing-dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
  animation-delay: -0.3s;
}

.typing-dots span:nth-child(2) {
  animation-delay: -0.15s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0s;
}

@keyframes typing {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* AI Notification Popup */
.ai-notification {
  position: fixed;
  right: 100px; /* Moved further left to create gap */
  bottom: 30px;
  z-index: 120;
  max-width: 280px;
  background: #ffd21c;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(255, 210, 28, 0.3);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  animation: slideInFromLeft 0.4s ease forwards;
}

.ai-notification::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid #ffd21c;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.ai-notification-content {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ai-notification-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ai-notification-text strong {
  color: #2b2b2b;
  font-size: 16px;
  font-weight: 600;
}

.ai-notification-text span {
  color: #2b2b2b;
  font-size: 14px;
  opacity: 0.8;
}

.ai-notification-close {
  background: none;
  border: none;
  color: #2b2b2b;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.ai-notification-close:hover {
  background-color: rgba(43, 43, 43, 0.1);
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(
      calc(100% + 20px)
    ); /* Start from chatbot's left edge */
  }
  to {
    transform: translateX(0);
  }
}

/* On small screens, maintain vertical stacking */
@media (max-width: 480px) {
  .back-to-top {
    right: 18px;
    bottom: 106px;
  }
  .ai-button {
    right: 18px;
    bottom: 30px;
  }
}

/* Responsive tweaks */
@media (max-width: 960px) {
  .feature {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .feature {
    grid-template-columns: 1fr;
  }
  .feature-content {
    padding: 8px 10px;
  }
}

/* Mobile navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    padding: 12px;
    font-weight: bold;
  }

  .menu {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 80px;
    flex-direction: column;
    background: #ffffff;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    z-index: 99;
    box-shadow: var(--shadow-1);
    gap: 8px;
  }
  .menu.open {
    display: flex;
  }
  .menu a {
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--color-text);
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  .menu a:hover {
    background-color: var(--color-bg);
  }
}

/* Comprehensive mobile responsive design */
@media (max-width: 768px) {
  /* Disable animations on mobile */
  * {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0.2s !important;
    transition-delay: 0s !important;
  }

  /* Container adjustments */
  .container {
    padding: 16px;
  }

  /* Header responsive */
  .nav {
    height: 80px;
    padding: 0 16px;
  }

  .brand {
    font-size: 18px;
    flex-shrink: 0;
    max-width: 120px;
    overflow: hidden;
  }

  .brand img {
    max-width: 100%;
    height: 60px;
    width: auto;
    object-fit: contain;
  }

  /* Hero responsive */
  .hero {
    height: calc(100vh - 80px);
  }

  .hero-content {
    left: 50%;
    right: auto;
    bottom: 50%;
    max-width: none;
    transform: translateX(-50%);
    text-align: center;
    width: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .h1 {
    font-size: 66px;
    line-height: 1.2;
  }

  .lede {
    display: none;
  }

  /* Section spacing */
  main > section {
    padding-block: 20px;
  }

  /* Gallery responsive */
  .feature-list {
    gap: 40px;
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .feature:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature:nth-child(even) .feature-media-wrap,
  .feature:nth-child(even) .feature-content {
    order: unset;
  }

  .feature-content h3 {
    font-size: 28px;
  }


  /* Weather responsive */
  .weather {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .weather .future {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .weather .future .chip:nth-child(n + 5) {
    display: none;
  }

  .weather .current .cond:last-child {
    display: none;
  }

  /* Video responsive */
  .video-embed {
    margin: 0;
  }

  /* CTA section responsive */
  #section-cta {
    padding-block: 30px !important;
  }

  #section-cta .section-head {
    text-align: center;
    margin-bottom: 20px;
  }

  #section-cta .btn {
    margin: 4px;
    flex: 1;
    min-width: 120px;
  }

  /* Section headings */
  .section-head h2 {
    font-size: 32px;
    text-align: center;
  }

  .section-head {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Floating buttons responsive */
  .back-to-top,
  .ai-button {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .back-to-top {
    right: 16px;
    bottom: 86px;
  }

  .ai-button {
    right: 16px;
    bottom: 20px;
  }

  /* AI notification responsive */
  .ai-notification {
    display: none !important;
  }
}

/* Footer stacks on mobile */
@media (max-width: 680px) {
  #site-footer .container > div {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .container {
    padding: 12px;
  }

  /* Smaller logo container on extra small screens */
  .brand {
    max-width: 80px;
  }

  .brand img {
    height: 50px;
  }

  .h1 {
    font-size: 70px;
  }

  .lede {
    font-size: 14px;
  }

  .section-head h2 {
    font-size: 28px;
  }


  .weather .future {
    grid-template-columns: repeat(3, 1fr);
  }

  .weather .future .chip:nth-child(n + 4) {
    display: none;
  }

  .feature-content h3 {
    font-size: 24px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* Smaller floating buttons */
  .back-to-top,
  .ai-button {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .back-to-top {
    right: 12px;
    bottom: 76px;
  }

  .ai-button {
    right: 12px;
    bottom: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto, "Roboto Fallback", sans-serif;
}

#section-weather .section-head .btn {
  border: 3px solid var(--color-text);
}

/* Weather "See Details" link underline animation */
.weather a[href="#/weather"] {
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
}

.weather a[href="#/weather"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.weather a[href="#/weather"]:hover::after {
  width: 85px;
}

/* ========================================
   SMOOTH SCROLLING & ANIMATIONS
   ======================================== */

/* CSS Variables for smooth scrolling */
:root {
  --scroll-padding: 100px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --slide-distance: 40px;
}

/* Smooth scroll container for Lenis */
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Scroll-triggered animation utilities */
.scroll-animate {
  opacity: 0;
  transform: translateY(var(--slide-distance));
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-fast {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-fast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for multiple elements */
.scroll-animate:nth-child(1) {
  transition-delay: 0ms;
}
.scroll-animate:nth-child(2) {
  transition-delay: 100ms;
}
.scroll-animate:nth-child(3) {
  transition-delay: 200ms;
}
.scroll-animate:nth-child(4) {
  transition-delay: 300ms;
}
.scroll-animate:nth-child(5) {
  transition-delay: 400ms;
}
.scroll-animate:nth-child(6) {
  transition-delay: 500ms;
}

/* Ensure animations don't interfere with existing functionality */
.scroll-animate {
  will-change: opacity, transform;
}

/* Disable animations on mobile for better performance */
@media (max-width: 768px) {
  .scroll-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  .scroll-animate-fast {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }
}

/* ========================================
   LUXURY RESORT CARD COMPONENT
   ======================================== */

/* Luxury Card Base Styles */
.luxury-card {
  height: 350px;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 300ms ease;
  cursor: pointer;
  position: relative;
}

/* Discount Badge */
.discount-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a1a;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  }
  50% {
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.6);
  }
}

.discount-badge svg {
  width: 14px;
  height: 14px;
}

/* Discount Info in Hover Content */
.discount-info {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 8px;
  font-size: 12px;
  color: var(--color-text);
  margin-bottom: 12px;
  font-weight: 500;
}

.discount-info svg {
  width: 16px;
  height: 16px;
  color: #ffd700;
  flex-shrink: 0;
}

.luxury-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Image Layer */
.luxury-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease-out, filter 500ms ease-out;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.luxury-card:hover img {
  transform: scale(1.1);
  filter: blur(4px);
}

/* Ensure no gaps or empty spaces */
.luxury-card .relative {
  background: #38b6ff;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Gradient Overlay */
.luxury-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.2) 80%,
    transparent 100%
  );
  transition: background 500ms ease;
  z-index: 2;
}

.luxury-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.8) 30%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.3) 80%,
    transparent 100%
  );
}

/* Content Container */
.luxury-card .content-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  z-index: 3;
  text-align: left;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  border-radius: 0 0 0.75rem 0.75rem;
}

/* Always Visible Content */
.luxury-card .always-visible {
  transition: transform 300ms ease;
}

.luxury-card:hover .always-visible {
  transform: translateY(-20px);
}

.luxury-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
  text-align: left;
  margin-left: 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5);
}

.luxury-card .card-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffd700;
  text-align: left;
  margin-left: 0;
  margin-bottom: 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 6px rgba(0, 0, 0, 0.6);
}

/* Hover-Only Content */
.luxury-card .hover-content {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;
  transition: max-height 500ms ease-out, opacity 500ms ease-out, margin-top 500ms ease-out;
}

.luxury-card:hover .hover-content {
  max-height: 12rem;
  opacity: 1;
  margin-top: 1rem;
}

.luxury-card .card-description {
  font-size: 0.875rem;
  color: white;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.6);
}

.luxury-card .book-button {
  width: 100%;
  background-color: #ffd700;
  color: #1a1a1a;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.luxury-card .book-button:hover {
  background-color: #ffed4e;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 2rem 2rem;
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Section Styling */
.packages-section {
  background: #f8f9fa;
  padding: 4rem 0;
  margin: 0;
}

.packages-hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  text-align: center;
  margin-bottom: 1rem;
}

.packages-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
}

.packages-section p {
  text-align: center;
  font-size: 1.125rem;
  color: #4a5568;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   PROMOTIONAL HERO CAROUSEL STYLES
   ======================================== */

/* Promotional Hero Section - Full Screen */
#section-promo-hero,
.promo-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden; /* Prevent slides from showing outside */
}

/* Promotional Hero Carousel */
.promo-hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: default;
}

/* Edge hover zones for auto-scroll - much narrower */
.promo-hero-carousel::before,
.promo-hero-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.promo-hero-carousel::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 215, 0, 0.3), transparent);
}

.promo-hero-carousel::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 215, 0, 0.3), transparent);
}

.promo-hero-carousel.edge-hover-left::before {
  opacity: 1;
}

.promo-hero-carousel.edge-hover-right::after {
  opacity: 1;
}

.promo-hero-track {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.promo-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-in-out;
  will-change: transform, opacity;
}

.promo-hero-slide:first-child {
  opacity: 1;
  visibility: visible;
}

/* Collage Layout */
.promo-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 0;
}

/* Single Image Layout for Function Hall */
.promo-hero-single-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.collage-item {
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.collage-item.large {
  grid-row: 1 / 3;
}

.promo-hero-slide:hover .collage-item {
  transform: scale(1.02);
}

/* Overlay */
.promo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

/* Content */
.promo-hero-content {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 600px;
}

.promo-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: #38b6ff;
  color: white;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(56, 182, 255, 0.4);
}

.promo-hero-badge.cottage {
  background: #ffd700;
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.promo-hero-badge.packages {
  background: linear-gradient(135deg, #38b6ff 0%, #2a9ce8 100%);
  box-shadow: 0 4px 12px rgba(56, 182, 255, 0.5);
}

.promo-hero-badge.function-hall {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
  box-shadow: 0 4px 12px rgba(155, 89, 182, 0.5);
}

.promo-hero-title {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.1;
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.promo-hero-desc {
  font-size: clamp(16px, 2.5vw, 20px);
  margin: 0 0 28px 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.promo-hero-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.detail-item span {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.detail-item svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  color: #ffffff;
}

.detail-item.discount {
  color: #ffed4e !important;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.detail-item.discount span {
  color: #ffed4e !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.promo-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn.large {
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
}

/* Navigation Buttons */
.promo-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.promo-hero-nav:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: white;
  color: #38b6ff;
  transform: translateY(-50%) scale(1.1);
}

.promo-hero-prev {
  left: 32px;
}

.promo-hero-next {
  right: 32px;
}

/* Welcome Overlay */
.welcome-overlay {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  pointer-events: none;
}

.welcome-overlay .eyebrow {
  color: #ffd700;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(14px, 2.5vw, 18px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.welcome-overlay .h1 {
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1.1;
  margin: 8px 0 0;
  color: white;
  font-weight: 700;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

/* Navigation Dots */
.promo-hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.promo-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.promo-hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.promo-hero-dot.active {
  background: #ffd700;
  border-color: #ffd700;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

/* ========================================
   POOL SHOWCASE SECTION STYLES
   ======================================== */

#section-pool {
  margin: 0;
  padding: clamp(40px, 5vw, 80px) 0;
  width: 100%;
  background: linear-gradient(180deg, #f8feff 0%, #ffffff 100%);
}

/* Pool section scroll animations */
#section-pool .pool-showcase > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#section-pool.is-visible .pool-showcase > * {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for pool children */
#section-pool.is-visible .pool-hero {
  transition-delay: 0.1s;
}

#section-pool.is-visible .pool-features {
  transition-delay: 0.2s;
}

#section-pool.is-visible .pool-gallery {
  transition-delay: 0.3s;
}

/* Individual pool feature cards stagger */
.pool-feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#section-pool.is-visible .pool-feature-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

#section-pool.is-visible .pool-feature-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

#section-pool.is-visible .pool-feature-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Pool gallery items stagger */
.pool-gallery-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#section-pool.is-visible .pool-gallery-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

#section-pool.is-visible .pool-gallery-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

#section-pool.is-visible .pool-gallery-item:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

#section-pool .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.pool-showcase {
  margin-top: 30px;
  max-width: 100%;
  padding: 0 clamp(20px, 5vw, 80px);
}

.pool-hero {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin-bottom: 50px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.pool-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: white;
}

.pool-hero-overlay h3 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin: 0 0 12px 0;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.pool-hero-overlay p {
  font-size: clamp(18px, 3vw, 24px);
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.pool-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.pool-feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pool-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #38b6ff;
}

.pool-feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #38b6ff 0%, #2a9ce8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
}

.pool-feature-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 12px 0;
}

.pool-feature-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}

.pool-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.pool-gallery-item {
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.pool-gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESPONSIVE STYLES FOR PROMO HERO & POOL
   ======================================== */

@media (max-width: 1024px) {
  .promo-hero-content {
    left: 6%;
    max-width: 500px;
  }
  
  .promo-collage {
    gap: 6px;
  }
  
  .pool-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pool-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #section-promo-hero,
  .promo-hero-section {
    height: 100vh;
  }
  
  .promo-hero-content {
    left: 5%;
    right: 5%;
    max-width: none;
    padding: 0 20px;
  }
  
  .promo-hero-title {
    font-size: clamp(32px, 6vw, 48px);
  }
  
  .promo-hero-desc {
    font-size: clamp(14px, 2.5vw, 16px);
  }
  
  .promo-hero-details {
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .detail-item {
    font-size: 14px;
  }
  
  .promo-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn.large {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .promo-hero-nav {
    width: 44px;
    height: 44px;
  }
  
  .promo-hero-prev {
    left: 16px;
  }
  
  .promo-hero-next {
    right: 16px;
  }
  
  .welcome-overlay {
    top: 100px;
  }
  
  .promo-collage {
    gap: 4px;
  }
  
  .pool-hero {
    height: 300px;
  }
  
  .pool-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pool-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .pool-feature-card {
    padding: 24px 20px;
  }
  
  /* Weather-Video Grid Responsive */
  .weather-video-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px;
  }
  
  .weather .future {
    grid-template-columns: repeat(4, 1fr);
  }
  
  #section-weather-video {
    padding: clamp(30px, 5vw, 50px) 0;
  }
  
  /* Footer Responsive */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-about {
    max-width: none;
  }
}

@media (max-width: 480px) {
  #section-promo-hero,
  .promo-hero-section {
    height: 100vh;
  }
  
  #section-pool {
    padding: 20px 12px;
  }
  
  .promo-hero-content {
    left: 4%;
    right: 4%;
    padding: 0 16px;
  }
  
  .promo-hero-badge {
    padding: 6px 16px;
    font-size: 12px;
  }
  
  .promo-hero-title {
    font-size: clamp(28px, 7vw, 36px);
    margin-bottom: 12px;
  }
  
  .promo-hero-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .promo-hero-details {
    gap: 8px;
    margin-bottom: 20px;
  }
  
  .detail-item {
    font-size: 13px;
    gap: 8px;
  }
  
  .detail-item svg {
    width: 18px;
    height: 18px;
  }
  
  .btn.large {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .promo-hero-nav {
    width: 40px;
    height: 40px;
  }
  
  .promo-hero-nav svg {
    width: 24px;
    height: 24px;
  }
  
  .promo-hero-prev {
    left: 12px;
  }
  
  .promo-hero-next {
    right: 12px;
  }
  
  .welcome-overlay {
    top: 90px;
  }
  
  .welcome-overlay .eyebrow {
    font-size: clamp(12px, 2.5vw, 14px);
  }
  
  .welcome-overlay .h1 {
    font-size: clamp(36px, 9vw, 56px);
  }
  
  .promo-hero-dots {
    bottom: 24px;
    gap: 8px;
  }
  
  .promo-hero-dot {
    width: 10px;
    height: 10px;
  }
  
  .promo-hero-dot.active {
    width: 24px;
  }
  
  .pool-hero {
    height: 250px;
    border-radius: 12px;
  }
  
  .pool-hero-overlay {
    padding: 24px;
  }
  
  .pool-feature-icon {
    width: 56px;
    height: 56px;
  }
  
  .pool-feature-icon svg {
    width: 28px;
    height: 28px;
  }
  
  /* Weather-Video Grid Mobile */
  .weather .future {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .weather .current .temp {
    font-size: 40px;
  }
  
  /* Footer Mobile */
  .footer-grid {
    gap: 24px;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* About page hero section */
.about-hero {
  text-align: center;
  padding: 100px 20px 30px 20px;
  margin-bottom: 20px;
}

.about-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 16px;
  font-weight: 700;
}

.about-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  margin: 0;
  opacity: 0.9;
  font-weight: 400;
}

/* About content sections */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 24px;
  color: var(--color-accent);
  text-align: center;
  position: relative;
}

.about-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  margin: 12px auto 0;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.about-content p {
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.7;
  margin: 0 0 20px;
  color: var(--color-text);
}

/* Location features grid */
.location-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.feature-item {
  background: var(--color-surface);
  padding: 24px;
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}

.feature-item h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--color-accent);
}

.feature-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
}

/* Amenities grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.amenity-card {
  background: var(--color-surface);
  padding: 28px;
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}

.amenity-card h3 {
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--color-accent);
}

.amenity-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Experience highlights */
.experience-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.highlight-item {
  background: var(--color-surface);
  padding: 24px;
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  text-align: center;
}

.highlight-item h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--color-accent);
}

.highlight-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
}

/* Sustainability features */
.sustainability-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.sustainability-item {
  background: var(--color-surface);
  padding: 24px;
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sustainability-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}

.sustainability-item h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--color-accent);
}

.sustainability-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
}

/* Contact info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.contact-item {
  background: var(--color-surface);
  padding: 24px;
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  text-align: center;
}

.contact-item h3 {
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--color-accent);
}

.contact-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
}

/* CTA buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 160px;
}

/* Section spacing for about page */
.about-story,
.about-location,
.about-amenities,
.about-experience,
.about-sustainability,
.about-contact {
  margin: 60px 0;
  padding: 40px 0;
}

.about-story {
  background: var(--color-bg);
  border-radius: var(--radius-1);
}

.about-location {
  background: var(--color-surface);
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
}

.about-amenities {
  background: var(--color-bg);
  border-radius: var(--radius-1);
}

.about-experience {
  background: var(--color-surface);
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
}

.about-sustainability {
  background: var(--color-bg);
  border-radius: var(--radius-1);
}

.about-contact {
  background: var(--color-surface);
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
}

/* Mobile responsive for about page */
@media (max-width: 768px) {
  .about-hero {
    padding: 80px 20px 30px 20px;
    margin: 20px 0;
  }

  .about-content {
    padding: 0 16px;
  }

  .location-features,
  .amenities-grid,
  .experience-highlights,
  .sustainability-features,
  .contact-info {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-story,
  .about-location,
  .about-amenities,
  .about-experience,
  .about-sustainability,
  .about-contact {
    margin: 40px 0;
    padding: 24px 0;
  }
}

/* Header spacer to prevent overlap with fixed header */
.header-spacer {
  height: 100px; /* Match exact header height */
  width: 100%;
}

/* Fix filter section being blocked by header */
.packages-section {
  padding-top: 0; /* Remove padding since we have spacer */
  margin-top: 0;
}

.search-filter-wrapper {
  margin-top: 0; /* Remove negative margin */
  position: relative;
  z-index: 10; /* Ensure it's above other content */
}

.packages-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: auto;
  max-height: 80vh; /* Fit within viewport */
}

.packages-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px; /* Reduced minimum */
}

.package-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease-in-out;
  z-index: 0;
  will-change: transform; /* Performance optimization */
}

.package-slide.dragging {
  transition: none !important; /* Disable transitions during drag */
}

.package-slide.snapping {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.package-slide-container {
  display: flex; /* Changed from grid to flex for better alignment */
  width: 100%;
  height: 100%;
  max-height: 70vh; /* Match parent */
  background: white;
  align-items: stretch; /* Ensure both sides stretch to full height */
}

/* Alternating layout */
.package-slide-container.package-slide-image-left {
  flex-direction: row; /* Image on left, content on right */
}

.package-slide-container.package-slide-image-right {
  flex-direction: row-reverse; /* Content on left, image on right */
}

/* Alternating layout */
.package-slide-container.package-slide-image-left {
  grid-template-areas: "image content";
}

.package-slide-container.package-slide-image-right {
  grid-template-areas: "content image";
}

.package-slide-image {
  flex: 1; /* Take half the space */
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  height: 100%; /* Fill container height */
}

.package-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.packages-slider:hover .package-slide-image img {
  transform: scale(1.05);
}

.package-discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  z-index: 2;
}

.package-discount-badge svg {
  width: 16px;
  height: 16px;
}

.package-slide-content {
  flex: 1; /* Take half the space */
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  gap: 12px; /* Spacing between elements */
  background: white;
  overflow-y: auto; /* Allow scrolling if content exceeds */
  max-height: 100%;
  box-sizing: border-box;
  text-align: center; /* Center all text */
  position: relative; /* For absolute positioning of calendar icon */
}

.package-slide-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.1;
  text-align: center; /* Center title */
}

.package-slide-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0;
  text-align: center; /* Center price */
}

.package-slide-capacity {
  display: flex;
  align-items: center;
  justify-content: center; /* Center capacity info */
  gap: 6px;
  font-size: 13px;
  color: #666;
  margin: 0;
  text-align: center; /* Center capacity text */
}

.package-slide-capacity svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-accent);
}

.package-slide-description {
  font-size: 14px;
  line-height: 1.4;
  color: #555;
  margin: 0;
  flex: 1; /* Take available space */
}

.package-slide-discount {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #ffd700;
  font-weight: 600;
  margin: 0;
  padding: 12px 16px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  border-left: 3px solid #ffd700;
}

.package-slide-discount svg {
  width: 16px;
  height: 16px;
  stroke: #ffd700;
  flex-shrink: 0;
}

.package-slide-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #2a9ce8 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(56, 182, 255, 0.3);
  align-self: center; /* Center button */
  margin-top: 8px; /* Add some top margin */
}

.package-slide-button:hover {
  background: linear-gradient(135deg, #2a9ce8 0%, var(--color-accent) 100%);
  box-shadow: 0 6px 24px rgba(56, 182, 255, 0.5);
  transform: translateY(-2px);
}

.package-slide-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.package-slide-button:hover svg {
  transform: translateX(4px);
}

/* Slider Navigation */
.packages-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.packages-slider-nav:hover {
  background: white;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.packages-slider-prev {
  left: 20px;
}

.packages-slider-next {
  right: 20px;
}

.packages-slider-nav svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  stroke-width: 3;
}

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

.packages-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3); /* Changed from white to dark for visibility */
  border: 2px solid rgba(255, 255, 255, 0.8); /* White border for contrast */
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.packages-slider-dot:hover {
  background: rgba(0, 0, 0, 0.6); /* Darker on hover */
  transform: scale(1.2);
}

.packages-slider-dot.active {
  background: var(--color-accent); /* Blue accent color for active */
  border-color: white;
  width: 32px;
  border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .packages-slider {
    max-height: 65vh;
  }
  
  .packages-slider-track {
    min-height: 300px;
  }
  
  .package-slide-container {
    flex-direction: column; /* Stack vertically on tablet */
    max-height: 65vh;
  }
  
  .package-slide-image {
    height: 35vh;
    min-height: 200px;
    max-height: 250px;
    flex: none; /* Don't flex on mobile */
  }
  
  .package-slide-content {
    padding: 20px;
    gap: 8px;
    flex: none; /* Don't flex on mobile */
  }
  
  .package-slide-title {
    font-size: 22px;
  }
  
  .package-slide-price {
    font-size: 18px;
  }
  
  .package-slide-description {
    font-size: 13px;
  }
  
  .package-slide-button {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .packages-slider-nav {
    width: 48px;
    height: 48px;
  }
  
  .packages-slider-prev {
    left: 12px;
  }
  
  .packages-slider-next {
    right: 12px;
  }
}

@media (max-width: 768px) {
  .packages-slider {
    max-height: 60vh;
  }
  
  .packages-slider-track {
    min-height: 250px;
  }
  
  .package-slide-container {
    max-height: 60vh;
  }
  
  .package-slide-image {
    height: 30vh;
    min-height: 150px;
    max-height: 200px;
  }
  
  .package-slide-content {
    padding: 16px;
    gap: 6px;
  }
  
  .package-slide-title {
    font-size: 20px;
  }
  
  .package-slide-price {
    font-size: 16px;
  }
  
  .package-slide-description {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .package-slide-button {
    padding: 8px 16px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }
  
  .packages-slider-nav {
    width: 40px;
    height: 40px;
  }
  
  .packages-slider-nav svg {
    width: 18px;
    height: 18px;
  }
  
  .packages-slider-dots {
    bottom: 16px;
  }
}

/* Calendar Icon and Modal Styles */
.calendar-icon-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(56, 182, 255, 0.3);
  z-index: 10;
}

.calendar-icon-btn:hover {
  background: #2a9ce8;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(56, 182, 255, 0.5);
}

.calendar-reservation-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4444;
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Calendar Navigation Styles */
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-nav-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.calendar-nav-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.calendar-nav-btn:disabled {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.calendar-month-year {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.calendar-month-select,
.calendar-year-select {
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #333;
  min-width: 120px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.calendar-month-select:hover,
.calendar-year-select:hover {
  background: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.calendar-month-select:focus,
.calendar-year-select:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.calendar-month-select option,
.calendar-year-select option {
  background: white;
  color: #333;
  padding: 8px;
  font-weight: 500;
}

/* Prevent body scrolling when modal is open */
body.modal-open {
  overflow: hidden !important;
  height: 100% !important;
}

/* Ensure modal overlay captures all scroll events */
.calendar-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
  /* Ensure overlay captures scroll events */
  overflow: hidden;
  overscroll-behavior: contain;
}

.calendar-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.calendar-modal {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  /* Enable smooth scrolling */
  scroll-behavior: smooth;
  /* Glass effect scrollbar */
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  /* Prevent scroll chaining to background */
  overscroll-behavior: contain;
}

/* Calendar Modal - Glass effect scrollbar */
.calendar-modal:hover {
  scrollbar-color: rgba(102, 126, 234, 0.3) rgba(0, 0, 0, 0.05);
}

.calendar-modal::-webkit-scrollbar {
  width: 6px;
}

.calendar-modal::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 3px;
}

.calendar-modal::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 3px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.calendar-modal:hover::-webkit-scrollbar-thumb {
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.calendar-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(102, 126, 234, 0.4);
}

.calendar-modal-overlay.show .calendar-modal {
  transform: scale(1);
}

.calendar-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.2s ease;
  z-index: 10;
}

.calendar-modal-close:hover {
  background: #e5e5e5;
  color: #333;
}

.calendar-modal-header {
  padding: 30px 30px 20px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.calendar-modal-header h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
}

.calendar-package-title {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--color-accent);
  font-weight: 600;
}

.calendar-reservation-count {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.calendar-container {
  padding: 20px 30px;
}

.calendar-header {
  text-align: center;
  margin-bottom: 20px;
}

.calendar-header h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 0 0 16px 16px;
}

.calendar-day-header {
  padding: 12px 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  background: #f8f9fa;
  border-radius: 4px;
}

.calendar-date {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.calendar-date.empty {
  background: transparent;
  cursor: default;
}

.calendar-date.available {
  background: #38b6ff;
  color: white;
}

.calendar-date.available:hover {
  background: #2a9ce8;
  transform: scale(1.05);
}

.calendar-date.today {
  background: white;
  color: var(--color-text);
  border: 2px solid #38b6ff;
  font-weight: 700;
}

.calendar-date.today:hover {
  background: #f0f8ff;
}

.calendar-date.booked {
  background: #ffc107;
  color: #333;
}

.calendar-date.booked:hover {
  background: #ffb300;
  transform: scale(1.05);
}

.calendar-date.maintenance {
  background: #9e9e9e;
  color: white;
}

.calendar-date.maintenance:hover {
  background: #757575;
}

.calendar-date.past {
  background: #d6d6d6;
  color: #999;
  cursor: not-allowed;
}

.calendar-date.past:hover {
  background: #d6d6d6;
  transform: none;
}

.calendar-date.selected-checkin {
  border: 3px solid #1976d2 !important;
  background: #1976d2 !important;
  color: white !important;
  font-weight: 700;
  box-shadow: 0 0 0 2px white, 0 0 0 4px #1976d2;
}

.calendar-date.selected-checkout {
  border: 3px solid #28a745 !important;
  background: #28a745 !important;
  color: white !important;
  font-weight: 700;
  box-shadow: 0 0 0 2px white, 0 0 0 4px #28a745;
}

.calendar-date.in-range {
  background: #e3f2fd !important;
  color: #1976d2 !important;
  border: 1px solid #90caf9 !important;
}

.calendar-selection-instruction {
  text-align: center;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  font-size: 14px;
  color: #495057;
  font-weight: 500;
  border-left: 4px solid #667eea;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.calendar-actions {
  text-align: center;
  margin-top: 16px;
}

.calendar-reset-btn {
  padding: 8px 16px;
  background: #6c757d;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-reset-btn:hover {
  background: #5a6268;
}

.calendar-undo-btn {
  padding: 8px 16px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.calendar-undo-btn:hover {
  background: #5a67d8;
  transform: translateY(-1px);
}

.calendar-undo-btn svg {
  width: 14px;
  height: 14px;
}

.calendar-confirm-btn {
  padding: 8px 16px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.calendar-confirm-btn:hover {
  background: #218838;
  transform: translateY(-1px);
}

.calendar-confirm-btn svg {
  width: 14px;
  height: 14px;
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 30px 30px;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.legend-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.legend-color.available {
  background: #38b6ff;
}

.legend-color.today {
  background: white;
  border: 2px solid #38b6ff;
}

.legend-color.booked {
  background: #ffc107;
}

.legend-color.maintenance {
  background: #9e9e9e;
}

.legend-color.past {
  background: #d6d6d6;
}

/* Unavailable Room Styling */
.checkbox-item.unavailable {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkbox-item.unavailable:hover {
  background: #f8f9fa;
}

.checkbox-item.unavailable input[type="checkbox"] {
  cursor: not-allowed;
}

.room-name-strike {
  text-decoration: line-through;
  color: #999;
}

.not-available-label {
  font-size: 12px;
  color: #dc3545;
  font-weight: 600;
  margin-left: 8px;
}

/* Responsive Calendar Modal */
@media (max-width: 768px) {
  .calendar-modal {
    margin: 10px;
    max-height: 95vh;
  }
  
  .calendar-modal-header {
    padding: 20px 20px 15px;
  }
  
  .calendar-modal-header h3 {
    font-size: 20px;
  }
  
  .calendar-container {
    padding: 15px 20px;
  }
  
  .calendar-date {
    font-size: 12px;
    padding: 8px 4px;
  }
  
  .calendar-day-header {
    padding: 8px 4px;
    font-size: 11px;
  }
  
  .calendar-legend {
    gap: 15px;
    padding: 15px 20px 20px;
  }
  
  .legend-item {
    font-size: 12px;
  }
  
  .legend-color {
    width: 14px;
    height: 14px;
  }
}

/* Booking Modal Styles */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.booking-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  background: white;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  /* Glass effect scrollbar */
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

/* Booking Modal - Glass effect scrollbar */
.booking-modal:hover {
  scrollbar-color: rgba(102, 126, 234, 0.3) rgba(0, 0, 0, 0.05);
}

.booking-modal::-webkit-scrollbar {
  width: 6px;
}

.booking-modal::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 3px;
}

.booking-modal::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 3px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.booking-modal:hover::-webkit-scrollbar-thumb {
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.booking-modal::-webkit-scrollbar-thumb:hover {
  background: rgba(102, 126, 234, 0.4);
}

/* Calendar icon button styling */
.calendar-icon-btn {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border: 1px solid #e7efef;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
  color: #667eea;
}

.calendar-icon-btn:hover {
  background: #667eea;
  color: white;
  border-color: #667eea;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Make readonly date inputs look clickable */
input[type="date"][readonly] {
  cursor: pointer;
  background-color: #f8f9fa;
}

input[type="date"][readonly]:hover {
  background-color: #e9ecef;
  border-color: #667eea;
}

.booking-modal-overlay.show .booking-modal {
  transform: scale(1) translateY(0);
}

.booking-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.2s ease;
  z-index: 10;
}

.booking-modal-close:hover {
  background: #e9ecef;
  color: #333;
  transform: scale(1.1);
}

.booking-modal-header {
  padding: 40px 40px 20px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px 20px 0 0;
}

.booking-modal-header h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
}

.booking-subtitle {
  margin: 0 0 30px;
  font-size: 16px;
  color: #666;
}

.reservation-type-selector {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: #f8f9fa;
  padding: 6px;
  border-radius: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.type-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

.type-tab:hover {
  background: rgba(56, 182, 255, 0.1);
  color: var(--color-accent);
}

.type-tab.active {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 2px 8px rgba(56, 182, 255, 0.3);
}

.type-tab svg {
  width: 18px;
  height: 18px;
}

.booking-form {
  padding: 0;
}

.booking-form-content {
  padding: 40px;
}

.form-section {
  margin-bottom: 40px;
}

.form-section h3 {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
  background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.date-time-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.guests-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.auto-calculated-field {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #e9ecef;
}

.calculated-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-accent);
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-item,
.radio-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.checkbox-item:hover,
.radio-item:hover {
  background: #e9ecef;
}

.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.checkbox-label,
.radio-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.add-option-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}

.add-option-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid #dee2e6;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  width: 100%;
}

.add-option-toggle:hover {
  background: linear-gradient(135deg, var(--color-accent) 0%, #2a9ce8 100%);
  color: white;
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 182, 255, 0.3);
}

.room-selection-instruction {
  margin-top: 8px;
  padding: 8px 12px;
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 6px;
  font-size: 13px;
  color: #856404;
}

.agreement-section {
  margin: 32px 0;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px solid #e9ecef;
}

.agreement-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.agreement-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  margin-top: 2px;
}

.agreement-text {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.agreement-text a {
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: 600;
}

.agreement-text a:hover {
  color: #2a9ce8;
}

.booking-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #2a9ce8 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(56, 182, 255, 0.3);
}

.booking-submit-btn:hover {
  background: linear-gradient(135deg, #2a9ce8 0%, var(--color-accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(56, 182, 255, 0.4);
}

.form-error {
  margin-top: 6px;
  font-size: 12px;
  color: #dc3545;
  display: none;
}

.form-error.show {
  display: block;
}

/* Booking Success Modal */
.booking-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 20px;
}

.success-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-icon {
  color: #28a745;
  margin-bottom: 20px;
}

.success-content h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
}

.success-content p {
  margin: 0 0 24px;
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.booking-summary {
  text-align: left;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.booking-summary h4 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.summary-item {
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}

.summary-item strong {
  color: #333;
}

.success-close-btn {
  padding: 12px 24px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.success-close-btn:hover {
  background: #2a9ce8;
}

/* Responsive Design for Booking Modal */
@media (max-width: 768px) {
  .booking-modal {
    margin: 10px;
    max-height: 98vh;
  }
  
  .booking-modal-header {
    padding: 30px 20px 15px;
  }
  
  .booking-modal-header h2 {
    font-size: 24px;
  }
  
  .reservation-type-selector {
    flex-direction: column;
    gap: 4px;
  }
  
  .type-tab {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .booking-form-content {
    padding: 20px;
  }
  
  .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .date-time-group,
  .guests-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .form-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .booking-submit-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
  
  .success-content {
    padding: 30px 20px;
  }
  
  .success-content h3 {
    font-size: 20px;
  }
}

/* My Bookings Page Styles */
.my-bookings-page {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bookings-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.bookings-header h2 {
  margin: 0 0 8px 0;
  color: var(--color-text);
  font-size: 2.5rem;
  font-weight: 700;
}

.user-welcome {
  color: var(--color-text-secondary);
  margin: 0 0 20px 0;
  font-size: 1.1rem;
}

.bookings-controls {
  margin-top: 20px;
}

.bookings-section {
  margin-bottom: 40px;
}

.bookings-section h3 {
  color: var(--color-text);
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
  padding-left: 8px;
  border-left: 4px solid var(--color-accent);
}

.bookings-table-wrapper {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow-x: auto;
}

.bookings-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.bookings-table th {
  background: var(--color-accent);
  color: white;
  padding: 16px 12px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bookings-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.bookings-table tr:hover {
  background: var(--color-bg);
}

.booking-status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-status-badge.confirmed {
  background: #d4edda;
  color: #155724;
}

.booking-status-badge.pending {
  background: #fff3cd;
  color: #856404;
}

.booking-status-badge.cancelled {
  background: #f8d7da;
  color: #721c24;
}

.booking-status-badge.completed {
  background: #cce5ff;
  color: #004085;
}

.booking-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn.small {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 6px;
}

.btn.danger {
  background: #dc3545;
  color: white;
  border: none;
}

.btn.danger:hover {
  background: #c82333;
}

.bookings-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--color-text-secondary);
}

.bookings-empty-state svg {
  margin-bottom: 16px;
  opacity: 0.5;
}

.bookings-empty-state p {
  margin: 0;
  font-size: 1.1rem;
}

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

/* Booking Details Modal Styles */
.booking-details-modal h3 {
  margin-top: 0;
  color: var(--color-text);
  border-bottom: 2px solid var(--border);
  padding-bottom: 12px;
}

.booking-details-content {
  margin: 20px 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
  border-bottom: none;
}

.modal-actions {
  text-align: right;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--border);
}

/* Success Modal Actions */
.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

/* Mobile Responsive for My Bookings */
@media (max-width: 768px) {
  .my-bookings-page {
    padding: 20px 10px;
  }

  .bookings-header h2 {
    font-size: 2rem;
  }

  .bookings-table {
    font-size: 0.9rem;
  }

  .bookings-table th,
  .bookings-table td {
    padding: 12px 8px;
  }

  .booking-actions {
    flex-direction: column;
  }

  .btn.small {
    width: 100%;
    text-align: center;
  }

  .detail-row {
    flex-direction: column;
    gap: 4px;
  }

  .success-actions {
    flex-direction: column;
  }
}
