/* Import utilities */
:root {
  /* Vacation-inspired Colors */
  --navy: #1e4d6b;          /* Deep lake blue with teal undertone */
  --ocean: #2e6e8e;         /* Main lake blue - vibrant vacation feel */
  --sky: #4a92b4;           /* Bright energetic blue */
  --powder: #6fb1d3;        /* Soft powder blue */
  --mist: #e3f2fd;          /* Clear vacation sky */
  --ice: #f3f9ff;           /* Bright morning sky */
  --frost: #ebf2fa;
  --white: #ffffff;
  --charcoal: #2c3e50;
  --slate: #5a6c7d;
  --pearl: #f8fafb;
  
  /* Sunset & Warmth */
  --sunset: #ff7043;        /* Soft coral sunset */
  --sunset-light: #ff8a65;  /* Peachy sunset glow */
  --sunset-dark: #f4511e;   /* Rich sunset */
  --sunshine: #ffd54f;      /* Warm golden sunshine */
  --sunshine-light: #ffe082;/* Soft morning light */
  --sunshine-dark: #ffb300; /* Golden hour */
  
  /* Natural Elements */
  --wood: #8d6e63;          /* Warm cabin wood */
  --wood-light: #a1887f;    /* Driftwood */
  --forest: #558b2f;        /* Lively summer green */
  --forest-light: #689f38;  /* Fresh green */
  --sand: #faf3e0;          /* Creamy beach sand */
  --sand-light: #fffbf0;    /* Light sand */
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --section-padding: 5rem 0;
  --section-padding-mobile: 3rem 0;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-in-out;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  
  /* Breakpoints */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
}
/* Keyframe Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes scrollIndicator {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Animation Classes */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}
.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}
.slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}
.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}
.float {
  animation: float 3s ease-in-out infinite;
}
/* Stagger Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
/* Wave Hover Effect */
.wave-hover {
  position: relative;
  display: inline-block;
}
.wave-hover::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='3' viewBox='0 0 100 3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2C20 0.5 20 2.5 40 2C60 1.5 60 2.5 80 2C100 1.5 100 2.5 100 2' stroke='%234a7fb8' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 100px 3px;
  background-repeat: repeat-x;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.wave-hover:hover::after {
  opacity: 1;
  animation: wave 1s linear infinite;
}
@keyframes wave {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 100px;
  }
}
/* Import components */
/* Navigation Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.nav-logo a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.nav-logo a:hover {
  color: var(--sky);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
  padding: 0.5rem 0;
  overflow: hidden;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='3' viewBox='0 0 12 3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2 L2 0 L4 2 L6 0 L8 2 L10 0 L12 2' stroke='%232e6e8e' stroke-width='2' fill='none' stroke-linejoin='miter'/%3E%3C/svg%3E");
  background-size: 12px 3px;
  background-repeat: repeat-x;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-link:hover {
  color: var(--sky);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
/* Active section indicator */
.nav-link.active {
  color: var(--ocean);
}
.nav-link.active::after {
  transform: scaleX(1);
}
.nav-cta {
  background-color: var(--sky);
  color: var(--white) !important;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
}
.nav-cta:hover {
  background-color: var(--ocean);
  transform: translateY(-2px);
  color: var(--white) !important;
}
.nav-cta::after {
  display: none;
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--charcoal);
  margin: 3px 0;
  transition: var(--transition);
}
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
/* Mobile Styles */
@media (max-width: 768px) {
  .nav-container {
    padding: 1rem;
  }
  
  .nav-logo a {
    font-size: 1.25rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    width: 100%;
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--ice);
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-cta {
    margin: 1rem 2rem;
    text-align: center;
  }
}
/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--navy);
  padding: 1.5rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(5px);
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 0.75rem;
  animation: fadeIn 1s ease-out;
  color: var(--navy);
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out 0.3s both;
  color: var(--charcoal);
  opacity: 0.9;
}
.hero-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 0.6s both;
}
/* Hero-specific button styles - Professional & Elegant */
.hero-cta .btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.hero-cta .btn-primary {
  background-color: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 0 4px 15px rgba(30, 77, 107, 0.2);
}
.hero-cta .btn-primary:hover {
  background-color: var(--ocean);
  border-color: var(--ocean);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 77, 107, 0.3);
}
.hero-cta .btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.hero-cta .btn-primary:hover::after {
  width: 300px;
  height: 300px;
}
.hero-cta .btn-secondary {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  border: 2px solid var(--navy);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.hero-cta .btn-secondary:hover {
  background-color: var(--white);
  border-color: var(--ocean);
  color: var(--ocean);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 1s ease-out 1s both;
}
.hero-scroll-indicator svg {
  /* animation removed */
}
.scroll-dot {
  /* animation removed */
}
/* Mobile Styles */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero-content {
    padding: 1.25rem 1.5rem;
    max-width: 90%;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 250px;
  }
}
/* Wave Separator */
.wave-separator {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
  z-index: 1;
}
.wave-separator svg {
  position: relative;
  display: block;
  width: 100%;
  height: 200px;
  transform: scale(1.1);
}
/* Animate waves */
@keyframes waveFlow {
  0% {
    transform: translateX(0) scale(1.1);
  }
  100% {
    transform: translateX(-100px) scale(1.1);
  }
}
.wave-separator svg {
  /* animation removed */
}
/* Inverted wave separator */
.wave-separator-inverted {
  margin-top: 0;
  margin-bottom: -2px;
  transform: rotate(180deg);
}
.wave-separator-inverted svg {
  /* animation removed */
}
@keyframes waveFlowReverse {
  0% {
    transform: translateX(0) scale(1.1);
  }
  100% {
    transform: translateX(100px) scale(1.1);
  }
}
/* Property Details Section */
.property-details {
  background-color: var(--pearl);
  padding-top: 0;
}
/* Property Features Showcase - Modern Grid Layout */
.property-features-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  grid-auto-rows: minmax(300px, auto);
}
.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
/* Wave decoration on feature cards */
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='60' viewBox='0 0 100 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q 25 10, 50 30 T 100 30 L100 60 L0 60 Z' fill='%23f8fafb' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 100px 60px;
  background-repeat: repeat-x;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.feature-card:hover::after {
  opacity: 1;
  /* animation removed */
}
@keyframes cardWave {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 100px;
  }
}
.feature-card.large-card {
  grid-column: span 2;
  grid-row: span 2;
}
.feature-image {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, var(--sky) 0%, var(--ocean) 100%);
}
.large-card .feature-image {
  height: 100%;
  flex: 1;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover .feature-image img {
  transform: scale(1.1);
}
.feature-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  /* animation removed */
}
.feature-content h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.feature-content p {
  color: var(--slate);
  line-height: 1.6;
  font-size: 1rem;
}
.large-card .feature-content h3 {
  font-size: 2rem;
}
.large-card .feature-content p {
  font-size: 1.1rem;
}
/* Image Slider - DEPRECATED but keeping for reference */
.property-slider {
  display: none;
}
.slider-container {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.slider-track {
  position: relative;
  height: 100%;
  width: 100%;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.slider-nav:hover {
  background-color: var(--white);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.slider-nav.prev {
  left: 20px;
}
.slider-nav.next {
  right: 20px;
}
.slider-nav svg {
  color: var(--navy);
}
/* Dots Navigation */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active,
.dot:hover {
  background-color: var(--white);
  transform: scale(1.2);
}
/* Slider Content */
.slider-content {
  padding: 3rem;
  text-align: center;
  background-color: var(--white);
}
.content-item {
  display: none;
}
.content-item.active {
  display: block;
  animation: fadeInUp 0.6s ease;
}
.content-item .feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}
.content-item h3 {
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.content-item p {
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.6;
}
/* Amenities Showcase Section */
.amenities-showcase {
  background-color: var(--white);
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin: 4rem 0;
}
.amenities-showcase h3 {
  color: var(--navy);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}
/* Amenities Preview */
.amenities-preview {
  margin-bottom: 2rem;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.preview-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: var(--frost);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid var(--ice);
}
.preview-item:hover {
  background-color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.preview-icon {
  font-size: 1.5rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.preview-item span:last-child {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
}
/* Show All Amenities Button */
.show-all-amenities-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem auto 0;
  padding: 0.875rem 1.5rem;
  background-color: var(--white);
  border: 2px solid var(--ocean);
  border-radius: var(--radius-md);
  color: var(--ocean);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.show-all-amenities-btn:hover {
  background-color: var(--ocean);
  color: var(--white);
  transform: translateY(-2px);
}
.show-all-amenities-btn:hover .btn-icon {
  stroke: var(--white);
}
.show-all-amenities-btn.active .btn-icon {
  transform: rotate(180deg);
}
.btn-icon {
  transition: var(--transition);
}
.amenities-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.amenity-category {
  background-color: var(--pearl);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  border: 1px solid var(--ice);
}
.amenity-category:hover {
  background-color: var(--frost);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ice);
}
.category-icon {
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.category-header h4 {
  color: var(--navy);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
}
.amenity-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.amenity-item {
  color: var(--charcoal);
  font-size: 0.95rem;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}
.amenity-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sky);
  font-weight: bold;
}
/* Not included items */
.amenity-category:last-child .amenity-item::before {
  content: "✗";
  color: var(--slate);
}
.amenity-note {
  margin-top: 2rem;
  padding: 1rem;
  background-color: var(--frost);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--slate);
  font-size: 0.95rem;
}
/* More Features Section - DEPRECATED */
.more-features {
  display: none;
}
.more-features h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.feature-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
  background-color: var(--frost);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--charcoal);
  transition: var(--transition);
}
.feature-item:hover {
  background-color: var(--ice);
  transform: translateX(5px);
}
.feature-item .check {
  color: var(--ocean);
  font-weight: bold;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Property Description Section */
.property-description {
  margin: 4rem 0;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.description-content {
  padding: 4rem;
}
.description-content h3 {
  color: var(--navy);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.description-content .lead {
  font-size: 1.25rem;
  color: var(--slate);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.description-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.description-item h4 {
  color: var(--ocean);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.description-item p {
  color: var(--charcoal);
  line-height: 1.8;
  font-size: 1.05rem;
}
.highlight-box {
  background: linear-gradient(135deg, var(--frost) 0%, var(--ice) 100%);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  border-left: 4px solid var(--ocean);
}
.highlight-box p {
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.property-feature {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.property-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.property-feature h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.property-feature p {
  color: var(--slate);
  margin: 0;
}
/* Amenities Section */
.amenities-section {
  background-color: var(--pearl);
  padding: var(--section-padding);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.amenity-category {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}
.amenity-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(46, 110, 142, 0.25);
}
.amenity-icon {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--frost);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}
.amenity-category h3 {
  text-align: center;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.amenity-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.amenity-category li {
  padding: 0.5rem 0;
  color: var(--charcoal);
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}
.amenity-category li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ocean);
  font-weight: bold;
}
/* Location Section */
.location-section {
  background-color: var(--white);
}
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}
.location-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.highlight-item {
  background-color: var(--mist);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}
.highlight-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(46, 110, 142, 0.25);
}
.highlight-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  position: relative;
  background-color: transparent;
  transition: var(--transition);
}
.highlight-emoji {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--frost);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.highlight-header strong {
  color: var(--ocean);
  font-size: 1.1rem;
  margin-right: 0.5rem;
  font-weight: 600;
}
.highlight-header span:not(.highlight-emoji):not(.expand-btn) {
  color: var(--charcoal);
  font-size: 1rem;
  flex: 1;
}
.expand-btn {
  display: none;
}
.highlight-details {
  padding: 0 1.5rem 1.5rem;
  background-color: transparent;
}
.highlight-details p {
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
  font-size: 0.875rem;
}
/* Tablet Styles */
@media (max-width: 1024px) {
  .property-features-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-card.large-card {
    grid-column: span 2;
    grid-row: span 1;
  }
}
/* Tablet Styles for Amenities */
@media (max-width: 1024px) {
  .amenities-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile Styles */
@media (max-width: 768px) {
  .amenities-showcase {
    padding: 2rem 1.5rem;
    margin: 2rem 0;
  }
  
  .amenities-showcase h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .amenities-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .amenity-category {
    padding: 1.25rem;
  }
  
  .category-header h4 {
    font-size: 1.1rem;
  }
  
  .amenity-item {
    font-size: 0.9rem;
  }
  
  .preview-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .preview-item {
    padding: 0.875rem;
  }
  
  .show-all-amenities-btn {
    width: 100%;
    justify-content: center;
  }
  .property-features-showcase {
    grid-template-columns: 1fr;
    gap: 1rem;
    grid-auto-rows: minmax(250px, auto);
  }
  
  .feature-card.large-card {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .feature-image {
    height: 180px;
  }
  
  .large-card .feature-image {
    height: 220px;
  }
  
  .feature-content {
    padding: 1.5rem;
  }
  
  .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-content p {
    font-size: 0.95rem;
  }
  
  .large-card .feature-content h3 {
    font-size: 1.5rem;
  }
  
  .large-card .feature-content p {
    font-size: 1rem;
  }
  
  .property-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .amenities-section {
    padding: 2rem 1.5rem;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .location-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Slider mobile adjustments */
  .slider-container {
    height: 350px;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
  }
  
  .slider-nav.prev {
    left: 10px;
  }
  
  .slider-nav.next {
    right: 10px;
  }
  
  .slider-content {
    padding: 2rem 1.5rem;
  }
  
  .content-item h3 {
    font-size: 1.5rem;
  }
  
  .content-item p {
    font-size: 1rem;
  }
  
  .more-features {
    padding: 2rem 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .feature-item {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  
  /* Wave separator mobile */
  .wave-separator svg {
    height: 120px;
  }
  
  /* Description mobile */
  .description-content {
    padding: 2rem 1.5rem;
  }
  
  .description-content h3 {
    font-size: 2rem;
  }
  
  .description-content .lead {
    font-size: 1.1rem;
  }
  
  .description-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .description-item h4 {
    font-size: 1.25rem;
  }
  
  .description-item p {
    font-size: 1rem;
  }
  
  .highlight-box {
    padding: 2rem 1.5rem;
  }
  
  .highlight-box p {
    font-size: 1rem;
  }
}
/* Property Details Section */
.property-details-section {
  background-color: var(--pearl);
  padding: 5rem 0 8rem 0; /* Extra bottom padding for double dividers */
  position: relative;
  margin-bottom: 0 !important;
  z-index: 1;
}
.property-details-section .section-header {
  max-width: 900px;
  margin: 0 auto 3rem;
}
.property-details-section .section-header h2 {
  white-space: nowrap;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}
.property-details-section .section-header p:first-of-type {
  font-size: 1.25rem;
  color: var(--ocean);
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.property-details-section .section-header p:nth-of-type(2) {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.property-details-section .section-header p:last-of-type {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 0;
}
.property-highlights {
  max-width: 1200px;
  margin: 0 auto;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 0;
}
.property-highlight {
  background-color: var(--mist);
  padding: 2.5rem;
  border-radius: 50%;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.property-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(46, 110, 142, 0.25);
}
.highlight-icon {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border-radius: 50%;
  margin: 0 0 1rem 0;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.property-highlight h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}
.property-highlight p {
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
  max-width: 200px;
}
.property-description {
  background: linear-gradient(135deg, var(--frost) 0%, var(--ice) 100%);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border-left: 4px solid var(--ocean);
  max-width: 800px;
  margin: 0 auto;
}
.property-description p {
  color: var(--navy);
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}
/* Mobile Styles */
@media (max-width: 768px) {
  .property-details-section .section-header h2 {
    white-space: normal;
    font-size: 1.75rem;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .property-highlight {
    padding: 2rem;
    min-height: 250px;
    aspect-ratio: 1;
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }
  
  .property-highlight h3 {
    font-size: 1.25rem;
  }
  
  .property-description {
    padding: 2rem;
  }
  
  .property-description p {
    font-size: 1rem;
  }
}
/* Gallery Section */
.gallery-section {
  background-color: var(--mist);
  position: relative;
  padding: 5rem 0;
  margin-top: 0 !important;
  z-index: 1;
}
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.625rem 1.25rem;
  background-color: var(--white);
  color: var(--charcoal);
  border: 2px solid var(--ice);
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover {
  background-color: var(--frost);
  border-color: var(--powder);
}
.filter-btn.active {
  background-color: var(--sky);
  color: var(--white);
  border-color: var(--sky);
}
/* Gallery Grid - Masonry Layout */
.gallery-grid {
  margin: 0 auto 3rem;
  position: relative;
  width: 100%;
}
/* Gallery sizer for masonry grid */
.gallery-sizer {
  width: calc(25% - 20px);
}
.gallery-item {
  width: calc(25% - 20px);
  margin-bottom: 20px;
  padding: 0 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  animation: scaleIn 0.6s ease-out forwards;
  opacity: 0;
  float: left;
}
.gallery-item.visible {
  opacity: 1;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  display: none;
}
.gallery-title {
  display: none;
}
/* Load More Button */
.load-more-btn {
  display: block;
  margin: 0 auto;
  padding: 0.875rem 2rem;
  background-color: var(--sky);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.load-more-btn:hover {
  background-color: var(--ocean);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* Gallery Item Images */
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition);
  border-radius: var(--radius-lg);
}
/* Desktop medium */
@media (max-width: 1200px) {
  .gallery-sizer,
  .gallery-item {
    width: calc(33.333% - 20px);
  }
}
/* Tablet Styles */
@media (max-width: 1024px) {
  .gallery-sizer,
  .gallery-item {
    width: calc(50% - 20px);
  }
}
/* Mobile Styles */
@media (max-width: 768px) {
  .gallery-section {
    padding: 2rem 0 3rem 0;
  }
  
  .gallery-filters {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .gallery-sizer,
  .gallery-item {
    width: calc(100% - 20px);
  }
  
  .gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(30, 58, 95, 0.7) 0%, transparent 100%);
    padding: 1rem 0.75rem 0.75rem;
  }
  
  .gallery-title {
    font-size: 0.875rem;
  }
}
/* Reviews Section */
.reviews-section {
  background-color: var(--mist);
  position: relative;
  padding: 5rem 0;
  margin-top: 0 !important;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.review-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.review-stars {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #FFD700;
}
.review-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}
.review-card p {
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.review-author {
  color: var(--slate);
  font-size: 0.875rem;
  font-weight: 500;
}
/* Virtual Tour Section */
.virtual-tour-section {
  background-color: var(--frost);
  padding-top: 4rem; /* Extra padding for divider */
}
.tour-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.tour-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
}
/* Video Section */
.video-section {
  background-color: var(--pearl);
}
.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background-color: var(--charcoal);
}
.video-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
}
/* Area Guide Section */
.area-guide-section {
  background-color: var(--mist);
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.guide-item {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.guide-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  text-align: center;
}
.guide-item h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.5rem;
}
.guide-item p {
  color: var(--slate);
  margin-bottom: 1rem;
}
.guide-item ul {
  list-style: none;
  padding: 0;
}
.guide-item li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--charcoal);
}
.guide-item li:before {
  content: "•";
  color: var(--sky);
  font-weight: bold;
  position: absolute;
  left: 0;
}
/* Booking Section */
.booking-section {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--navy) 100%);
  color: var(--white);
}
.booking-section .section-header h2,
.booking-section .section-header p {
  color: var(--white);
}
.booking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.booking-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(46, 110, 142, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.booking-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.booking-logo {
  width: 100px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-logo img {
  max-width: 100%;
  max-height: 100%;
}
.booking-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.booking-card p {
  color: var(--slate);
  margin: 0;
}
.booking-arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--sky);
  transition: var(--transition);
}
.booking-card:hover .booking-arrow {
  transform: translateY(-50%) translateX(5px);
}
/* Contact Info */
.contact-info {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.contact-info p {
  margin-bottom: 1rem;
  color: var(--ice);
}
.contact-link {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.contact-link:hover {
  color: var(--powder);
  text-decoration: underline;
}
.divider {
  margin: 0 1rem;
  color: var(--powder);
}
/* Mobile Styles */
@media (max-width: 768px) {
  .tour-wrapper iframe,
  .video-wrapper iframe {
    height: 400px;
  }
  
  .guide-grid {
    grid-template-columns: 1fr;
  }
  
  .guide-item {
    padding: 2rem;
  }
  
  .booking-options {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    padding: 1.5rem;
  }
  
  .divider {
    display: block;
    margin: 0.5rem 0;
  }
}
/* Footer Styles */
.site-footer {
  background-color: var(--charcoal);
  color: var(--ice);
  padding: 3rem 0 1.5rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.footer-section p {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section li {
  margin-bottom: 0.75rem;
}
.footer-section a {
  color: var(--ice);
  transition: var(--transition);
}
.footer-section a:hover {
  color: var(--powder);
}
/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}
.social-links a:hover {
  background-color: var(--sky);
  transform: translateY(-3px);
}
.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--mist);
}
.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
}
/* Mobile Styles */
@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    padding-top: 1.5rem;
  }
}
/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 77, 107, 0.95); /* Navy blue with opacity */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.3s ease-out;
}
.lightbox-caption {
  display: none;
}
/* Lightbox Controls */
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--powder);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 3rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev {
  left: 2rem;
}
.lightbox-next {
  right: 2rem;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}
/* Mobile Styles */
@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .lightbox-prev {
    left: 1rem;
  }
  
  .lightbox-next {
    right: 1rem;
  }
  
  .lightbox-caption {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
}
/* Wave Dividers */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  margin: 0;
}
/* Hero Dividers */
.hero-divider-bottom {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  z-index: 1;
  margin: 0;
  pointer-events: none;
  background: transparent;
  transition: none !important;
  animation: none !important;
  transform: none !important;
}
.hero-divider-bottom svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  transition: none !important;
  animation: none !important;
  transform: none !important;
}
.hero-divider-bottom svg path {
  transition: none !important;
  animation: none !important;
  transform: none !important;
}
/* Section Dividers */
.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  margin: -20px 0;
  z-index: 2;
  background: transparent;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.section-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.section-divider svg path {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.wave-divider.wave-flip svg {
  transform: rotate(180deg);
}
/* Wave Styles */
.wave-gentle {
  fill: var(--ocean);
}
.wave-mist {
  fill: var(--mist);
}
.wave-sand {
  fill: var(--sand);
}
.wave-sunset {
  fill: var(--sunset);
}
.wave-white {
  fill: var(--white);
}
/* Water Texture Overlay */
.water-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: overlay;
}
.water-texture::before,
.water-texture::after {
  content: '';
  position: absolute;
  inset: 0;
}
.water-texture::before {
  background-image: 
    radial-gradient(circle at 20% 30%, transparent 40%, rgba(46, 110, 142, 0.1) 70%),
    radial-gradient(circle at 60% 70%, transparent 45%, rgba(74, 146, 180, 0.1) 75%),
    radial-gradient(circle at 80% 20%, transparent 35%, rgba(30, 77, 107, 0.1) 65%);
  filter: blur(2px);
}
.water-texture::after {
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(227, 242, 253, 0.03) 3px,
      rgba(227, 242, 253, 0.03) 6px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(227, 242, 253, 0.03) 3px,
      rgba(227, 242, 253, 0.03) 6px
    );
  transform: scale(1.5) rotate(45deg);
}
/* Gallery Divider */
.gallery-divider {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 !important;
  display: block;
  line-height: 0;
  vertical-align: bottom;
  z-index: 2;
  pointer-events: none;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.gallery-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.gallery-divider svg path {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
/* Reviews Divider */
.reviews-divider {
  width: 100%;
  position: absolute;
  bottom: -100px; /* Position below the gallery divider */
  left: 0;
  right: 0;
  margin: 0 !important;
  display: block;
  line-height: 0;
  vertical-align: bottom;
  z-index: 3; /* Higher than gallery divider */
  pointer-events: none;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.reviews-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.reviews-divider svg path {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
/* Virtual Tour Divider */
.virtual-tour-divider {
  width: 100%;
  position: relative;
  bottom: -50px;
  z-index: 1;
  pointer-events: none;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.virtual-tour-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.virtual-tour-divider svg path {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
/* Video Divider */
.video-divider {
  width: 100%;
  position: relative;
  bottom: -50px;
  z-index: 1;
  pointer-events: none;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.video-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.video-divider svg path {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
/* Section-specific wave transitions */
.hero + .wave-divider {
  background: linear-gradient(to bottom, var(--navy), transparent);
}
/* Gallery background is set in gallery.css */
.reviews-section {
  background: var(--mist);
  position: relative;
}
.location-section {
  background: var(--white);
}
.area-guide-section {
  background: var(--sand-light);
  position: relative;
}
.booking-section {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--navy) 100%);
  color: var(--white);
}
/* Wave SVG Path Definitions */
.wave-path-gentle {
  d: path("M0,60 C150,90 350,30 600,60 C850,90 1050,30 1200,60 L1200,120 L0,120 Z");
}
.wave-path-smooth {
  d: path("M0,40 C400,80 800,20 1200,60 L1200,120 L0,120 Z");
}
.wave-path-ripple {
  d: path("M0,40 C300,20 600,60 900,40 C1050,30 1100,50 1200,40 L1200,120 L0,120 Z");
}
/* Import animations */
/* Animation System - Cohesive and Structured */
/* Base animation variables */
:root {
  --anim-duration-fast: 0.4s;
  --anim-duration-normal: 0.8s;
  --anim-duration-slow: 1.2s;
  --anim-delay-step: 0.15s;
  --anim-distance: 60px;
  --anim-easing: cubic-bezier(0.16, 1, 0.3, 1);
  --anim-easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Animation States */
[data-animate] {
  opacity: 0;
  transition: all var(--anim-duration-normal) var(--anim-easing);
  will-change: transform, opacity;
}
/* Direction-based animations */
[data-animate="fade-up"] {
  transform: translateY(var(--anim-distance));
}
[data-animate="fade-down"] {
  transform: translateY(calc(var(--anim-distance) * -1));
}
[data-animate="fade-left"] {
  transform: translateX(calc(var(--anim-distance) * -1));
}
[data-animate="fade-right"] {
  transform: translateX(var(--anim-distance));
}
[data-animate="scale"] {
  transform: scale(0.85);
}
[data-animate="fade"] {
  transform: none;
}
/* Animated state */
.animate-in {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}
/* Section-specific animation timing */
/* Hero Section - Immediate */
.hero-content h1 {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: heroEnter 1s var(--anim-easing) 0.2s forwards;
}
.hero-content p {
  opacity: 0;
  transform: translateY(40px);
  animation: heroEnter 1s var(--anim-easing) 0.4s forwards;
}
.hero-cta {
  opacity: 0;
  transform: translateY(40px);
  animation: heroEnter 1s var(--anim-easing) 0.6s forwards;
}
@keyframes heroEnter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Gallery Items - Staggered Grid */
.gallery-item {
  opacity: 0;
  transform: translateY(80px) scale(0.9) rotate(2deg);
  transition: all 0.8s var(--anim-easing);
}
.gallery-item:nth-child(even) {
  transform: translateY(80px) scale(0.9) rotate(-2deg);
}
.gallery-item.gallery-animate-in {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}
/* Feature Cards - Wave Pattern */
.feature-card {
  opacity: 0;
  transform: translateY(80px) translateX(-20px) scale(0.9);
  transition: all 0.8s var(--anim-easing);
}
.feature-card:nth-child(even) {
  transform: translateY(80px) translateX(20px) scale(0.9);
}
.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
/* Review Cards - Cascade */
.review-card {
  opacity: 0;
  transform: translateY(60px) rotateX(-10deg);
  transform-origin: center bottom;
  transition: all 0.9s var(--anim-easing);
}
.review-card.animate-in {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
/* Guide Items - Expanding Circle */
.guide-item {
  opacity: 0;
  transform: scale(0.7) translateY(40px);
  transition: all 0.8s var(--anim-easing-bounce);
}
.guide-item.animate-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}
/* Amenity Items - Slide and Fade */
.preview-item {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.6s var(--anim-easing);
}
.preview-item:nth-child(even) {
  transform: translateX(40px);
}
.preview-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}
/* Location Highlights - Alternating Slide */
.highlight-item {
  opacity: 0;
  transition: all 0.8s var(--anim-easing);
}
.highlight-item[data-animate="fade-left"] {
  transform: translateX(-100px) scale(0.95);
}
.highlight-item[data-animate="fade-right"] {
  transform: translateX(100px) scale(0.95);
}
.highlight-item.animate-in {
  opacity: 1;
  transform: translateX(0) scale(1);
}
/* Booking Cards - Zoom and Glow */
.booking-card {
  opacity: 0;
  transform: scale(0.8) translateY(60px);
  transition: all 1s var(--anim-easing);
  position: relative;
  overflow: hidden;
}
.booking-card.animate-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.booking-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.booking-card.animate-in::before {
  animation: glowPulse 2s ease-in-out 0.5s;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
/* Wave Separator Animation - DISABLED */
.wave-separator svg path {
  stroke-dasharray: none !important;
  stroke-dashoffset: 0 !important;
  fill-opacity: 1 !important;
  transition: none !important;
  animation: none !important;
}
.wave-separator.animate-in svg path {
  stroke-dashoffset: 0 !important;
  fill-opacity: 1 !important;
  transition: none !important;
  animation: none !important;
}
/* Navigation Links - Wave Underline */
.nav-link {
  position: relative;
  overflow: hidden;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--ocean) 10%, 
    var(--sky) 50%, 
    var(--ocean) 90%, 
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s var(--anim-easing);
}
.nav-link:hover::after {
  transform: translateX(100%);
}
/* Interactive Element Hovers */
.feature-card,
.guide-item,
.booking-card {
  cursor: pointer;
  transition: all 0.4s var(--anim-easing);
}
.review-card {
  transition: all 0.4s var(--anim-easing);
}
.feature-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.booking-card:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}
/* Floating Animation for Icons */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-5deg);
  }
  75% {
    transform: translateY(-15px) rotate(5deg);
  }
}
.feature-icon,
.guide-icon {
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}
.feature-icon {
  animation-delay: 0s;
}
.guide-item:nth-child(2) .guide-icon {
  animation-delay: 0.5s;
}
.guide-item:nth-child(3) .guide-icon {
  animation-delay: 1s;
}
.guide-item:nth-child(4) .guide-icon {
  animation-delay: 1.5s;
}
.guide-item:nth-child(5) .guide-icon {
  animation-delay: 2s;
}
.guide-item:nth-child(6) .guide-icon {
  animation-delay: 2.5s;
}
/* Parallax Layers */
.hero-content {
  will-change: transform;
  transition: transform 0.1s linear;
}
/* Button Ripple Effect */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--anim-easing);
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.8s, height 0.8s;
}
.btn:hover::before {
  width: 400px;
  height: 400px;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
/* Loading Animation */
.loading {
  opacity: 0;
  pointer-events: none;
}
.loaded {
  opacity: 1;
  transition: opacity 0.8s ease-out;
}
/* Performance */
.gallery-item img,
.feature-image img {
  will-change: transform;
  backface-visibility: hidden;
}
/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}
/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-content {
    transform: none !important;
  }
  
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
/* Mobile Optimizations */
@media (max-width: 768px) {
  :root {
    --anim-distance: 40px;
  }
  
  /* Disable parallax on mobile */
  .hero-content {
    transform: none !important;
  }
  
  /* Simplify animations */
  .gallery-item,
  .gallery-item:nth-child(even) {
    transform: translateY(40px) scale(0.95);
  }
  
  .feature-card,
  .feature-card:nth-child(even) {
    transform: translateY(40px);
  }
  
  .highlight-item[data-animate="fade-left"],
  .highlight-item[data-animate="fade-right"] {
    transform: translateY(40px) scale(0.98);
  }
}
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
p {
  margin-bottom: 1rem;
}
a {
  color: var(--sky);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--ocean);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
/* Section Styles */
section {
  padding: var(--section-padding);
  margin: 0 !important; /* Reset all section margins to prevent gaps */
}
/* GLOBAL: Force disable ALL divider animations */
.section-divider,
.section-divider *,
.wave-divider,
.wave-divider *,
.hero-divider-bottom,
.hero-divider-bottom *,
[class*="divider"],
[class*="divider"] * {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  color: var(--navy);
}
.section-header p {
  font-size: 1.125rem;
  color: var(--slate);
  margin-top: 0.5rem;
}
/* Button Styles - Professional & Refined */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-family: var(--font-body);
  text-align: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
/* Subtle hover effect */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.btn:hover::before {
  left: 100%;
}
.btn-primary {
  background-color: var(--ocean);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(46, 110, 142, 0.15);
}
.btn-primary:hover {
  background-color: var(--sky);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(46, 110, 142, 0.25);
}
.btn-secondary {
  background-color: var(--white);
  color: var(--ocean);
  border: 2px solid var(--ocean);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.btn-secondary:hover {
  background-color: var(--ocean);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(46, 110, 142, 0.2);
}
/* Responsive utilities */
@media (max-width: 768px) {
  section {
    padding: var(--section-padding-mobile);
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .container {
    padding: 0 1.5rem;
  }
}
/* Loading State */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid var(--ice);
  border-radius: 50%;
  border-top-color: var(--sky);
  animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
/* Skip to content */
.skip-to-content {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-to-content:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  z-index: 10000;
}