/* 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;
}
/* Screen reader only - for SEO/Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* 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(30, 77, 107, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled {
  background-color: rgba(30, 77, 107, 0.7);
  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.3rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
  white-space: nowrap;
  margin-right: 2rem;
}
.nav-logo a:hover {
  color: var(--powder);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
  padding: 0.5rem 0.75rem;
  overflow: visible;
  display: inline-block;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 5px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='5' viewBox='0 0 20 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4 L3 0 L6 4 L9 0 L12 4 L15 0 L18 4' stroke='%23ffffff' stroke-width='3' fill='none' stroke-linejoin='miter'/%3E%3C/svg%3E");
  background-size: 20px 5px;
  background-repeat: repeat-x;
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-link:hover {
  color: var(--white);
}
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
/* Active section indicator */
.nav-link.active {
  color: var(--white);
  position: relative;
}
.nav-link.active::after {
  display: none;
}
/* Circle indicator for active link */
.nav-link.active::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 16px);
  height: 32px;
  border: 2px solid var(--white);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  animation: fadeInCircle 0.3s ease forwards;
  z-index: -1;
}
@keyframes fadeInCircle {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.nav-cta {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-md);
}
.nav-cta:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.5);
}
.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(--white);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
}
.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.1rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: rgba(30, 77, 107, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    width: 100%;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
  }
  
  .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    font-weight: 600;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-link.active::before {
    display: none !important;
  }
  
  .nav-cta {
    margin: 1rem 2rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .nav-cta:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
  }
}
/* 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;
  overflow: hidden; /* Clip video at hero boundaries */
}
.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: linear-gradient(
    180deg,
    rgba(46, 110, 142, 0.25) 0%,
    rgba(46, 110, 142, 0.35) 50%,
    rgba(46, 110, 142, 0.25) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.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;
  z-index: 4;
}
.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);
  position: relative;
  padding: 5rem 0 5rem 0;
  margin-top: 0 !important;
  z-index: 1;
}
.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);
  margin-top: 3rem; /* Add spacing from reviews section */
}
.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 */
/* DEPRECATED: Following Section Design Bible - no custom section classes
.property-details-section {
  background-color: var(--pearl);
  padding: 5rem 0 8rem 0;
  position: relative;
  margin-bottom: 0 !important;
  z-index: 2;
  overflow: visible;
}
*/
.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;
}
/* DEPRECATED: These styles moved to highlight-cards.css as generic components
.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;
  }
}
/* ==========================================================================
   Generic Highlight Cards Component
   Following the Section Design Bible - content handles its own spacing
   ========================================================================== */
/* Content Container
   ========================================================================== */
.highlight-cards-content {
  /* Container already handles max-width and centering */
  margin-top: 2rem;
}
/* Grid Layout
   ========================================================================== */
.highlight-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
/* Card Base Styles - Clean and Simple
   ========================================================================== */
.highlight-card {
  background-color: var(--white);
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}
/* Card Variants
   ========================================================================== */
.highlight-card--circle {
  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;
  width: 300px;
  height: 300px;
  min-height: 300px;
}
.highlight-card--rounded {
  border-radius: 16px;
}
.highlight-card--minimal {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
/* Hover Effects
   ========================================================================== */
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(46, 110, 142, 0.25);
}
/* Icon Styles
   ========================================================================== */
.highlight-icon {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0;
  flex-shrink: 0;
}
/* Text Styles
   ========================================================================== */
.highlight-card h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
  line-height: 1.2;
}
.highlight-card p {
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
  max-width: 200px;
}
/* Background Variations
   ========================================================================== */
.section--white .highlight-card {
  background-color: var(--mist);
}
/* Override background for circle cards */
.section--white .highlight-card--circle {
  background-color: var(--mist);
}
.section--mist .highlight-card {
  background-color: var(--white);
}
.section--pearl .highlight-card {
  background-color: var(--frost);
}
.section--frost .highlight-card {
  background-color: var(--white);
}
/* Mobile Styles
   ========================================================================== */
@media (max-width: 768px) {
  .highlight-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .highlight-card {
    padding: 2rem;
  }
  
  .highlight-card--circle {
    width: 100%;
    max-width: 280px;
    height: auto;
    min-height: 200px;
    aspect-ratio: 1;
    padding: 1.5rem;
    margin: 0 auto;
  }
  
  .highlight-card--circle .highlight-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    background-color: var(--white);
    border-radius: 50%;
    margin: 0 0 0.75rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  }
  
  .highlight-card--circle h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .highlight-card--circle p {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 180px;
  }
  
  .highlight-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }
  
  .highlight-card h3 {
    font-size: 1.25rem;
  }
}
/* Gallery Section */
.gallery-section {
  background-color: var(--pearl);
  position: relative;
  padding: 5rem 0 5rem 0;
  margin-top: 0 !important;
  z-index: 1;
}
/* Override overflow only for gallery section, not affecting body */
#gallery.section {
  overflow: visible !important;
}
/* Ensure gallery grid doesn't get clipped */
.gallery-section .gallery-grid {
  overflow: visible;
}
.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-grid:after {
  content: '';
  display: block;
  clear: both;
}
/* Gallery sizer for masonry grid */
.gallery-sizer,
.gallery-item {
  width: calc(25% - 15px);
}
.gallery-item {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
}
.gallery-item.visible {
  opacity: 1;
  animation: scaleIn 0.6s ease-out forwards;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(30, 58, 95, 0.9) 0%, transparent 100%);
  color: var(--white);
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}
.gallery-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
/* 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% - 13.333px);
  }
}
/* Tablet Styles */
@media (max-width: 1024px) {
  .gallery-sizer,
  .gallery-item {
    width: calc(50% - 10px);
  }
}
/* Mobile Styles */
@media (max-width: 768px) {
  .gallery-section {
    padding: 3rem 1rem;
  }
  
  .gallery-filters {
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .gallery-grid {
    padding: 0;
    margin: 0 -0.5rem;
  }
  
  .gallery-sizer,
  .gallery-item {
    width: calc(100% - 1rem);
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  
  .gallery-item {
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }
  
  .gallery-item img {
    border-radius: var(--radius-md);
  }
  
  .gallery-overlay {
    display: none;
  }
  
  .gallery-title {
    font-size: 0.875rem;
  }
  
  .load-more-btn {
    margin: 2rem auto 0;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}
/* 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;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(30, 77, 107, 0.95); /* Navy blue with opacity */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
/* Ensure body doesn't clip lightbox */
body.lightbox-active {
  overflow: hidden !important;
  position: relative;
}
.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;
  }
}
/* Video Lightbox Styles */
.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(30, 77, 107, 0.95); /* Navy blue with opacity - matches photo lightbox */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-lightbox.active {
  opacity: 1;
  visibility: visible;
}
/* Ensure body doesn't clip video lightbox */
body.video-lightbox-active {
  overflow: hidden !important;
}
.video-lightbox-content {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.3s ease-out;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Close button - matching photo lightbox style */
.video-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: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--powder);
}
/* Play button overlay for video section */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.3s ease;
}
.video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}
.play-button {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}
.video-play-overlay:hover .play-button {
  transform: scale(1.1);
}
.play-button svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}
/* Remove duplicate animation since scaleIn is already applied to video-wrapper */
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* Mobile styles */
@media (max-width: 768px) {
  .video-lightbox-content {
    width: 95vw;
    height: 60vh;
  }
  
  .video-lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
}
/* Wave Dividers */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  margin: 0;
}
/* 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);
}
/* 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");
}
/* ==========================================================================
   Basic Clean Section Styles - No shapes, just clean spacing
   ========================================================================== */
/* Section Base - Clean and Simple
   ========================================================================== */
.section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}
/* Section Colors - Clean transitions
   ========================================================================== */
.section--white {
  background-color: var(--white);
}
.section--pearl {
  background-color: var(--pearl);
}
.section--mist {
  background-color: var(--mist);
}
.section--frost {
  background-color: var(--frost);
}
.section--ocean {
  background-color: var(--ocean);
  color: var(--white);
}
.section--ocean-dark {
  background-color: var(--ocean-dark);
  color: var(--white);
}
.section--powder {
  background-color: var(--powder);
}
/* Container - Standard max-width and padding
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
/* Section Header - Clean typography
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.section-header p {
  font-size: 1.125rem;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
}
/* Grid System - Modern CSS Grid
   ========================================================================== */
.grid {
  display: grid;
  gap: 2rem;
}
.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media (min-width: 768px) {
  .grid {
    gap: 3rem;
  }
}
/* Card Base - Clean and minimal
   ========================================================================== */
.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
/* Ensure cards in colored sections stand out */
.section--mist .card,
.section--pearl .card,
.section--frost .card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.section--white .card {
  background: var(--pearl);
}
/* Section modifiers for shape dividers
   ========================================================================== */
.section--has-top-divider {
  padding-top: 7rem;
}
@media (min-width: 768px) {
  .section--has-top-divider {
    padding-top: 9rem;
  }
}
/* Clean spacing utilities
   ========================================================================== */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
/* ==========================================================================
   Custom Shape Dividers
   ========================================================================== */
/* Wave Divider from Shape Generator */
.custom-shape-divider-top-1753418517 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.custom-shape-divider-top-1753418517 svg {
    position: relative;
    display: block;
    width: calc(119% + 1.3px);
    height: 58px;
}
.custom-shape-divider-top-1753418517 .shape-fill {
    fill: var(--ocean-dark); /* Matches video dark tones */
}
/* Bottom Wave Divider for Hero */
.custom-shape-divider-bottom-1753419162 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3;
}
.custom-shape-divider-bottom-1753419162 svg {
    position: relative;
    display: block;
    width: calc(139% + 1.3px);
    height: 89px;
}
.custom-shape-divider-bottom-1753419162 .shape-fill {
    fill: #FFFFFF;
}
/* Non-flipped wave divider for section tops */
.custom-shape-divider-top-1753421774 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.custom-shape-divider-top-1753421774 svg {
    position: relative;
    display: block;
    width: calc(139% + 1.3px);
    height: 89px;
}
.custom-shape-divider-top-1753421774 .shape-fill {
    fill: #FFFFFF;
}
/* Flipped wave divider for section tops */
.custom-shape-divider-top-1753422094 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.custom-shape-divider-top-1753422094 svg {
    position: relative;
    display: block;
    width: calc(139% + 1.3px);
    height: 89px;
    transform: rotateY(180deg);
}
.custom-shape-divider-top-1753422094 .shape-fill {
    fill: #FFFFFF;
}
/* Ensure the parent section has relative positioning */
.section {
    position: relative;
}
/* ==========================================================================
   Shape Dividers Library
   Complete collection of wave dividers for all section combinations
   ========================================================================== */
/* Base Shape Divider Classes
   ========================================================================== */
.shape-divider {
  position: absolute;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.shape-divider--bottom {
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}
.shape-divider--top {
  top: 0;
  left: 0;
}
.shape-divider--flipped svg {
  transform: rotateY(180deg);
}
.shape-divider--inverted svg {
  transform: rotateX(180deg);
}
/* 1. Wave - White - Bottom
   ========================================================================== */
.shape-divider-wave-white-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-wave-white-bottom svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 89px;
}
.shape-divider-wave-white-bottom .shape-fill {
  fill: #FFFFFF;
}
/* 2. Wave - White - Top
   ========================================================================== */
.shape-divider-wave-white-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.shape-divider-wave-white-top svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 89px;
}
.shape-divider-wave-white-top .shape-fill {
  fill: #FFFFFF;
}
/* Flipped version */
.shape-divider-wave-white-top--flipped svg {
  transform: rotateY(180deg);
}
/* 3. Wave - Pearl - Bottom
   ========================================================================== */
.shape-divider-wave-pearl-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-wave-pearl-bottom svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 89px;
}
.shape-divider-wave-pearl-bottom .shape-fill {
  fill: var(--pearl);
}
/* 4. Wave - Mist - Bottom
   ========================================================================== */
.shape-divider-wave-mist-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-wave-mist-bottom svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 89px;
}
.shape-divider-wave-mist-bottom .shape-fill {
  fill: var(--mist);
}
/* 5. Wave - Ocean - Bottom
   ========================================================================== */
.shape-divider-wave-ocean-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-wave-ocean-bottom svg {
  position: relative;
  display: block;
  width: calc(139% + 1.3px);
  height: 89px;
}
.shape-divider-wave-ocean-bottom .shape-fill {
  fill: var(--ocean);
}
/* 6. Wave Opacity - White - Bottom
   ========================================================================== */
.shape-divider-wave-opacity-white-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-wave-opacity-white-bottom svg {
  position: relative;
  display: block;
  width: calc(130% + 1.3px);
  height: 80px;
}
.shape-divider-wave-opacity-white-bottom .shape-fill {
  fill: #FFFFFF;
}
.shape-divider-wave-opacity-white-bottom .shape-fill-opacity-1 {
  opacity: 0.25;
}
.shape-divider-wave-opacity-white-bottom .shape-fill-opacity-2 {
  opacity: 0.5;
}
/* 7. Wave Opacity - Mist - Top
   ========================================================================== */
.shape-divider-wave-opacity-mist-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.shape-divider-wave-opacity-mist-top svg {
  position: relative;
  display: block;
  width: calc(130% + 1.3px);
  height: 80px;
}
.shape-divider-wave-opacity-mist-top .shape-fill {
  fill: var(--mist);
}
.shape-divider-wave-opacity-mist-top .shape-fill-opacity-1 {
  opacity: 0.25;
}
.shape-divider-wave-opacity-mist-top .shape-fill-opacity-2 {
  opacity: 0.5;
}
/* 8. Gentle Wave - Pearl - Bottom
   ========================================================================== */
.shape-divider-gentle-wave-pearl-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-gentle-wave-pearl-bottom svg {
  position: relative;
  display: block;
  width: calc(125% + 1.3px);
  height: 60px;
}
.shape-divider-gentle-wave-pearl-bottom .shape-fill {
  fill: var(--pearl);
}
/* 9. Steep Wave - Ocean - Top
   ========================================================================== */
.shape-divider-steep-wave-ocean-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.shape-divider-steep-wave-ocean-top svg {
  position: relative;
  display: block;
  width: calc(145% + 1.3px);
  height: 100px;
}
.shape-divider-steep-wave-ocean-top .shape-fill {
  fill: var(--ocean);
}
/* 10. Double Wave - White - Bottom
   ========================================================================== */
.shape-divider-double-wave-white-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-double-wave-white-bottom svg {
  position: relative;
  display: block;
  width: calc(120% + 1.3px);
  height: 65px;
}
.shape-divider-double-wave-white-bottom .shape-fill {
  fill: #FFFFFF;
}
/* 11. Wave Opacity - Navy - Bottom
   ========================================================================== */
.shape-divider-wave-opacity-navy-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.shape-divider-wave-opacity-navy-bottom svg {
  position: relative;
  display: block;
  width: calc(130% + 1.3px);
  height: 80px;
}
.shape-divider-wave-opacity-navy-bottom .shape-fill {
  fill: var(--navy);
}
.shape-divider-wave-opacity-navy-bottom .shape-fill-opacity-1 {
  opacity: 0.25;
}
.shape-divider-wave-opacity-navy-bottom .shape-fill-opacity-2 {
  opacity: 0.5;
}
/* 12. Subtle Wave - Frost - Top
   ========================================================================== */
.shape-divider-subtle-wave-frost-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.shape-divider-subtle-wave-frost-top svg {
  position: relative;
  display: block;
  width: calc(135% + 1.3px);
  height: 50px;
}
.shape-divider-subtle-wave-frost-top .shape-fill {
  fill: var(--frost);
}
/* Responsive adjustments
   ========================================================================== */
@media (max-width: 768px) {
  /* Reduce heights on mobile for better proportions */
  .shape-divider-wave-white-bottom svg,
  .shape-divider-wave-white-top svg,
  .shape-divider-wave-pearl-bottom svg,
  .shape-divider-wave-mist-bottom svg,
  .shape-divider-wave-ocean-bottom svg {
    height: 60px;
  }
  
  .shape-divider-wave-opacity-white-bottom svg,
  .shape-divider-wave-opacity-mist-top svg,
  .shape-divider-wave-opacity-navy-bottom svg {
    height: 50px;
  }
  
  .shape-divider-gentle-wave-pearl-bottom svg {
    height: 40px;
  }
  
  .shape-divider-steep-wave-ocean-top svg {
    height: 70px;
  }
  
  .shape-divider-double-wave-white-bottom svg {
    height: 45px;
  }
  
  .shape-divider-subtle-wave-frost-top svg {
    height: 35px;
  }
}
/* 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 - Removed underline animations */
/* 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;
  position: relative;
}
/* Prevent horizontal overflow from any element */
#root,
main,
.site-wrapper {
  overflow-x: hidden;
  position: relative;
}
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(10rem, 20vw, 16rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  font-family: 'Pacifico', cursive;
  font-weight: 400;
  letter-spacing: 1px;
}
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;
  width: 100%;
  box-sizing: border-box;
}
/* Ensure all sections don't overflow */
section {
  overflow-x: hidden;
  position: relative;
}
/* 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 * {
  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;
}