/* ===== SERUSE APART OTEL - Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
  /* Color Palette - Mediterranean Warmth */
  --color-primary: #0c7b93;
  --color-primary-light: #27a9c9;
  --color-primary-dark: #065a6b;
  --color-secondary: #d4a55a;
  --color-secondary-light: #e8c88a;
  --color-accent: #e8725a;
  --color-dark: #1a1a2e;
  --color-dark-alt: #16213e;
  --color-light: #f8f6f3;
  --color-light-alt: #f0ebe4;
  --color-white: #ffffff;
  --color-text: #2d3436;
  --color-text-light: #636e72;
  --color-text-muted: #b2bec3;
  --color-overlay: rgba(26, 26, 46, 0.6);
  --color-overlay-dark: rgba(26, 26, 46, 0.85);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0c7b93 0%, #27a9c9 100%);
  --gradient-warm: linear-gradient(135deg, #d4a55a 0%, #e8725a 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --gradient-hero: linear-gradient(180deg, rgba(26,26,46,0.3) 0%, rgba(26,26,46,0.7) 100%);
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Dancing Script', cursive;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 30px rgba(12, 123, 147, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* ===== Utility Classes ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-padding {
  padding: var(--space-5xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-subtitle {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--color-secondary);
  display: block;
  margin-bottom: var(--space-sm);
  letter-spacing: 1px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-title-light {
  color: var(--color-white);
}

.section-description {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-warm);
  margin: var(--space-lg) auto;
  border-radius: 2px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  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 shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

@keyframes wave {
  0% { transform: translateX(0) translateZ(0) scaleY(1); }
  50% { transform: translateX(-25%) translateZ(0) scaleY(0.55); }
  100% { transform: translateX(-50%) translateZ(0) scaleY(1); }
}

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

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-md);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 1px;
  transition: color var(--transition-base);
}

.navbar-brand .brand-sub {
  font-family: var(--font-script);
  font-size: 0.85rem;
  color: var(--color-secondary-light);
  display: block;
  margin-top: -4px;
  letter-spacing: 2px;
}

.navbar.scrolled .brand-text {
  color: var(--color-dark);
}

.navbar.scrolled .brand-sub {
  color: var(--color-secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-warm);
  transition: width var(--transition-base);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.navbar.scrolled .nav-links a {
  color: var(--color-text);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--color-primary);
}

.nav-cta {
  background: var(--gradient-warm) !important;
  color: var(--color-white) !important;
  padding: var(--space-sm) var(--space-xl) !important;
  border-radius: var(--radius-xl);
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 165, 90, 0.4);
}

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

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--color-dark);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 20, 0.70) 0%,
    rgba(5, 5, 20, 0.65) 30%,
    rgba(5, 5, 20, 0.72) 60%,
    rgba(5, 5, 20, 0.90) 100%
  );
  z-index: 2;
}

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

.hero-content .hero-badge {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--color-secondary-light);
  letter-spacing: 3px;
  margin-bottom: var(--space-lg);
  animation: fadeInDown 1s ease 0.3s both;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 1s ease 0.5s both;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6), 0 4px 60px rgba(0,0,0,0.3);
}

.hero-content h1 span {
  color: var(--color-secondary-light);
}

.hero-content .hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  max-width: 550px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.7s both;
  text-shadow: 0 1px 15px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  animation: fadeInUp 1s ease 0.9s both;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-warm);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(212, 165, 90, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 165, 90, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
  transform: translateY(-3px);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: var(--space-3xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-md);
  z-index: 4;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

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

.slider-dot:hover {
  background: rgba(255,255,255,0.8);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 var(--space-xl);
  z-index: 4;
  pointer-events: none;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  pointer-events: auto;
  color: var(--color-white);
  font-size: 1.2rem;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--color-secondary-light);
  border-radius: 2px;
  animation: float 1.5s ease-in-out infinite;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: var(--radius-full);
  background: rgba(12, 123, 147, 0.05);
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-warm);
  color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.about-image-badge .badge-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-image-badge .badge-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: var(--space-xs);
}

.about-content {
  padding: var(--space-xl) 0;
}

.about-content .section-subtitle {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.about-content .section-divider {
  margin-left: 0;
}

.about-text {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: var(--space-2xl);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.about-feature-icon {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-md);
  background: rgba(12, 123, 147, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.about-feature:hover .about-feature-icon {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: rotate(5deg) scale(1.1);
}

.about-feature span {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* ===== AMENITIES SECTION ===== */
.amenities {
  background: var(--color-white);
  position: relative;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.amenity-card {
  background: var(--color-white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(12, 123, 147, 0.1), rgba(39, 169, 201, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.8rem;
  color: var(--color-primary);
  transition: all var(--transition-base);
}

.amenity-card:hover .amenity-icon {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.amenity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.amenity-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== ROOMS / GALLERY SECTION ===== */
.rooms {
  background: var(--color-light);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

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

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

.gallery-zoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

/* ===== HIGHLIGHTS / STATS SECTION ===== */
.highlights {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) 0;
}

.highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.highlight-item {
  text-align: center;
  padding: var(--space-xl);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.highlight-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-secondary-light);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.highlight-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== LOCATION SECTION ===== */
.location {
  background: var(--color-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-dark);
  margin-bottom: var(--space-xl);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.location-detail {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.location-detail-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(12, 123, 147, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.location-detail:hover .location-detail-icon {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.location-detail-text h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.location-detail-text p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-detail-text a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.location-detail-text a:hover {
  color: var(--color-primary-dark);
}

/* ===== CONTACT / CTA SECTION ===== */
.contact {
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: var(--radius-full);
  background: rgba(212, 165, 90, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  position: relative;
  z-index: 1;
}

.contact-info {
  padding: var(--space-xl) 0;
}

.contact-info .section-subtitle {
  text-align: left;
}

.contact-info .section-title {
  text-align: left;
}

.contact-info .section-divider {
  margin-left: 0;
}

.contact-info-text {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-card-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.contact-card-content p,
.contact-card-content a {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.contact-card-content a:hover {
  color: var(--color-primary);
}

/* WhatsApp CTA */
.whatsapp-cta {
  margin-top: var(--space-2xl);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  background: #1db954;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-light);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(12, 123, 147, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.btn-submit {
  width: 100%;
  padding: var(--space-md) var(--space-2xl);
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--space-xl) 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-white);
  display: block;
  margin-bottom: var(--space-xs);
}

.footer-brand .brand-sub {
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--color-secondary-light);
  display: block;
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--color-secondary-light);
}

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

/* ===== FLOATING Directions BUTTON ===== */
.directions-float {
  position: fixed;
  bottom: calc(var(--space-2xl) + 72px);
  right: var(--space-2xl);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: #4285F4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.4);
  transition: all var(--transition-base);
  animation: pulse 2.5s ease-in-out infinite;
  animation-delay: 1s;
  text-decoration: none;
}

.directions-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(66, 133, 244, 0.5);
}

/* ===== FLOATING WhatsApp BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-2xl);
  right: var(--space-2xl);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: pulse 2s ease-in-out infinite;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: var(--space-2xl);
  right: calc(var(--space-2xl) + 75px);
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  background: var(--color-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-primary);
  transform: translateY(-4px);
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
  
  .section-padding {
    padding: var(--space-3xl) 0;
  }
  
  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--gradient-dark);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.1rem;
  }
  
  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }
  
  .mobile-overlay.active {
    display: block;
  }
  
  /* Hero */
  .hero {
    min-height: 600px;
  }
  
  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  
  .slider-arrows {
    display: none;
  }
  
  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .about-image img {
    height: 350px;
  }
  
  .about-image-badge {
    bottom: -10px;
    right: 10px;
    padding: var(--space-lg);
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  /* Amenities */
  .amenities-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  
  /* Rooms */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  
  /* Stats */
  .highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  
  /* Location */
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .location-map {
    height: 300px;
  }
  
  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  /* Float buttons */
  .directions-float {
    bottom: calc(var(--space-lg) + 65px);
    right: var(--space-lg);
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-float {
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 55px;
    height: 55px;
  }
  
  .back-to-top {
    bottom: var(--space-lg);
    right: calc(var(--space-lg) + 65px);
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-content .hero-subtitle {
    font-size: 1rem;
  }
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
  transition: opacity 0.2s ease;
}

.lightbox-close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
}

.lightbox-arrow:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: var(--space-xl);
}

.lightbox-next {
  right: var(--space-xl);
}
