/* Start custom CSS *//* === BULLETPROOF BETHEME & ELEMENTOR GAP FIX === */
.elementor-section:has(.tdb-page),
.elementor-container:has(.tdb-page),
.elementor-column:has(.tdb-page),
.elementor-widget-wrap:has(.tdb-page),
.elementor-widget-html:has(.tdb-page),
.mcb-section:has(.tdb-page),
.mcb-wrap:has(.tdb-page),
.mcb-column:has(.tdb-page),
.mcb-section-inner:has(.tdb-page),
.section_wrapper:has(.tdb-page) {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Remove BeTheme's default page top-padding */
#Content:has(.tdb-page) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

:root {
  --sand:         #F5F3F0;
  --sand-dark:    #E8E4DF;
  --ocean-deep:   #1A1E2E;
  --ocean:        #00B4D8;
  --ocean-light:  #00D4FF;
  --coral:        #00B4D8;
  --coral-soft:   #7DD3E8;
  --driftwood:    #3D4460;
  --foam:         #FAFCFD;
  --night:        #0D1117;
  --text:         #2C3E42;
  --text-light:   #6B7C80;
  --white:        #FFFFFF;
  --gold:         #0077B6;
}

/* Scoped reset — does NOT affect BeTheme */
.tdb-page,
.tdb-page *,
.tdb-page *::before,
.tdb-page *::after {
  box-sizing: border-box;
}

.tdb-page {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  margin: 0 auto;
  padding: 0;
  width: 100vw !important; /* Forces edge-to-edge stretch */
  max-width: 100%;
  overflow-x: hidden;
}

.tdb-page h1,
.tdb-page h2,
.tdb-page h3,
.tdb-page h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  padding: 0;
}
.tdb-page p {
  margin: 0;
  padding: 0;
}
.tdb-page img {
  max-width: 100%;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background:
    linear-gradient(165deg, 
      rgba(10,31,40,0.15) 0%, 
      rgba(10,31,40,0.3) 30%,
      rgba(10,31,40,0.65) 70%,
      rgba(10,31,40,0.85) 100%),
    linear-gradient(to bottom right, #00B4D8, #1A1E2E, #0D1117);
  background-size: cover;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 80% 20%, rgba(0,212,255,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 10% 80%, rgba(0,180,216,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-rays {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 70%;
  height: 80%;
  background:
    conic-gradient(
      from 200deg at 80% 10%,
      transparent 0deg,
      rgba(255,255,255,0.03) 15deg,
      transparent 30deg,
      rgba(255,255,255,0.02) 55deg,
      transparent 70deg,
      rgba(255,255,255,0.04) 90deg,
      transparent 110deg,
      rgba(255,255,255,0.02) 140deg,
      transparent 160deg
    );
  pointer-events: none;
  z-index: 1;
  animation: raysPulse 12s ease-in-out infinite alternate;
}
@keyframes raysPulse {
  0% { opacity: 0.5; transform: rotate(0deg); }
  100% { opacity: 1; transform: rotate(3deg); }
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.06);
  animation: bubbleFloat linear infinite;
}
.bubble:nth-child(1) { width: 8px; height: 8px; left: 15%; bottom: -20px; animation-duration: 14s; animation-delay: 0s; }
.bubble:nth-child(2) { width: 14px; height: 14px; left: 35%; bottom: -20px; animation-duration: 11s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 6px; height: 6px; left: 55%; bottom: -20px; animation-duration: 16s; animation-delay: 4s; }
.bubble:nth-child(4) { width: 18px; height: 18px; left: 72%; bottom: -20px; animation-duration: 13s; animation-delay: 1s; }
.bubble:nth-child(5) { width: 10px; height: 10px; left: 88%; bottom: -20px; animation-duration: 15s; animation-delay: 3s; }
.bubble:nth-child(6) { width: 5px; height: 5px; left: 25%; bottom: -20px; animation-duration: 18s; animation-delay: 6s; }
.bubble:nth-child(7) { width: 12px; height: 12px; left: 65%; bottom: -20px; animation-duration: 12s; animation-delay: 5s; }
.bubble:nth-child(8) { width: 7px; height: 7px; left: 45%; bottom: -20px; animation-duration: 17s; animation-delay: 7s; }
.bubble:nth-child(9) { width: 16px; height: 16px; left: 80%; bottom: -20px; animation-duration: 14s; animation-delay: 2.5s; }
.bubble:nth-child(10) { width: 9px; height: 9px; left: 10%; bottom: -20px; animation-duration: 19s; animation-delay: 8s; }

@keyframes bubbleFloat {
  0% { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
  10% { opacity: 0.6; transform: translateY(-10vh) translateX(5px) scale(1); }
  50% { opacity: 0.4; transform: translateY(-50vh) translateX(-10px) scale(0.9); }
  90% { opacity: 0.1; }
  100% { transform: translateY(-105vh) translateX(8px) scale(0.6); opacity: 0; }
}

.hero-silhouette {
  position: absolute;
  bottom: 100px;
  right: 0;
  width: 55%;
  height: 60%;
  pointer-events: none;
  z-index: 1;
}
.hero-silhouette svg {
  width: 100%;
  height: 100%;
  opacity: 0.06;
}

.hero-fish {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.08;
  font-size: 1.8rem;
}
.hero-fish:nth-child(1) {
  top: 30%;
  animation: fishSwim1 20s ease-in-out infinite;
}
.hero-fish:nth-child(2) {
  top: 55%;
  animation: fishSwim2 25s ease-in-out infinite;
  font-size: 1.2rem;
  opacity: 0.05;
}
.hero-fish:nth-child(3) {
  top: 42%;
  animation: fishSwim3 18s ease-in-out infinite;
  font-size: 2.2rem;
  opacity: 0.06;
}
@keyframes fishSwim1 {
  0% { left: -5%; transform: scaleX(1); }
  48% { transform: scaleX(1); }
  50% { left: 105%; transform: scaleX(-1); }
  98% { transform: scaleX(-1); }
  100% { left: -5%; transform: scaleX(1); }
}
@keyframes fishSwim2 {
  0% { left: 105%; transform: scaleX(-1); }
  48% { transform: scaleX(-1); }
  50% { left: -5%; transform: scaleX(1); }
  98% { transform: scaleX(1); }
  100% { left: 105%; transform: scaleX(-1); }
}
@keyframes fishSwim3 {
  0% { left: -8%; transform: scaleX(1) translateY(0); }
  25% { transform: scaleX(1) translateY(-15px); }
  48% { transform: scaleX(1) translateY(5px); }
  50% { left: 108%; transform: scaleX(-1) translateY(5px); }
  75% { transform: scaleX(-1) translateY(-10px); }
  98% { transform: scaleX(-1) translateY(0); }
  100% { left: -8%; transform: scaleX(1) translateY(0); }
}

.hero-float-card {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 260px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  opacity: 0;
  animation: floatCardIn 1s 1.3s ease forwards, floatBob 6s 2.3s ease-in-out infinite;
}
.hero-float-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--coral-soft));
}
@keyframes floatCardIn {
  from { opacity: 0; transform: translateY(-50%) translateX(30px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}
@keyframes floatBob {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(calc(-50% - 8px)) translateX(0); }
}
.hero-float-card-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
.hero-float-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--white);
  margin-bottom: 8px; line-height: 1.3;
}
.hero-float-card-text {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  font-weight: 300; line-height: 1.6; margin-bottom: 16px;
}
.hero-float-card-stars { display: flex; gap: 3px; margin-bottom: 6px; }
.hero-float-card-stars span { color: var(--gold); font-size: 0.85rem; }
.hero-float-card-reviewer {
  font-size: 0.68rem; color: rgba(255,255,255,0.35);
  font-weight: 400; letter-spacing: 0.05em;
}

.hero-float-info {
  position: absolute;
  right: clamp(60px, 8vw, 160px);
  bottom: clamp(140px, 18vh, 220px);
  z-index: 10;
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px 22px;
  opacity: 0;
  animation: floatInfoIn 0.8s 1.6s ease forwards, floatBob2 7s 2.4s ease-in-out infinite;
}
@keyframes floatInfoIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatBob2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-float-info-icon { font-size: 1.6rem; flex-shrink: 0; }
.hero-float-info-text { font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 400; line-height: 1.4; }
.hero-float-info-text strong { color: var(--white); font-weight: 500; display: block; font-size: 0.8rem; }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%); z-index: 15;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeSlideUp 0.8s 2s ease forwards;
}
.hero-scroll-text { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 400; }
.hero-scroll-line { width: 1px; height: 40px; position: relative; overflow: hidden; }
.hero-scroll-line::before {
  content: ''; position: absolute; top: -100%; left: 0; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--coral-soft));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -100%; } 50% { top: 0%; } 100% { top: 100%; } }

.hero-corner-tl, .hero-corner-br {
  position: absolute; width: 80px; height: 80px;
  pointer-events: none; z-index: 5; opacity: 0;
  animation: fadeSlideUp 0.8s 1.8s ease forwards;
}
.hero-corner-tl { top: 28px; left: 28px; border-top: 1px solid rgba(255,255,255,0.15); border-left: 1px solid rgba(255,255,255,0.15); }
.hero-corner-br { bottom: 140px; right: 28px; border-bottom: 1px solid rgba(255,255,255,0.1); border-right: 1px solid rgba(255,255,255,0.1); }

.hero-dots {
  position: absolute; top: 15%; right: 18%; width: 120px; height: 120px;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 16px 16px; pointer-events: none; z-index: 1;
  opacity: 0; animation: fadeSlideUp 0.8s 1.5s ease forwards;
}

@media (max-width: 1024px) {
  .hero-float-card { display: none; }
  .hero-float-info { display: none; }
  .hero-dots { display: none; }
  .hero-corner-br { display: none; }
}
@media (max-width: 768px) {
  .hero-scroll { display: none; }
  .hero-corner-tl { display: none; }
}

.hero-waves {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 120px;
  overflow: hidden; z-index: 2;
}
.hero-waves svg { position: absolute; bottom: -2px; width: 200%; height: 120px; animation: waveFlow 8s ease-in-out infinite alternate; }
@keyframes waveFlow { 0% { transform: translateX(0); } 100% { transform: translateX(-25%); } }

.hero-content {
  position: relative; z-index: 10;
  padding: 0 clamp(24px, 5vw, 80px) clamp(80px, 12vh, 160px);
  max-width: 900px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--coral-soft); margin-bottom: 24px;
  opacity: 0; animation: fadeSlideUp 0.8s 0.3s ease forwards;
  transition: gap 0.4s ease, letter-spacing 0.4s ease; cursor: default;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--coral-soft); transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.hero-tag:hover { gap: 16px; letter-spacing: 0.3em; }
.hero-tag:hover::before { width: 60px; }

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem); color: var(--white);
  font-weight: 700; margin-bottom: 20px;
  opacity: 0; animation: fadeSlideUp 0.8s 0.5s ease forwards;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--coral-soft); }

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem); color: rgba(255,255,255,0.75);
  max-width: 560px; margin-bottom: 40px; font-weight: 300;
  opacity: 0; animation: fadeSlideUp 0.8s 0.7s ease forwards;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeSlideUp 0.8s 0.9s ease forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: var(--coral); color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 120%; }
.btn-primary:hover {
  background: #0090A8; transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,180,216,0.35); letter-spacing: 0.14em;
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; background: transparent; color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35); cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative; overflow: hidden;
}
.btn-outline::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-outline:hover::before { transform: translateX(0); }
.btn-outline:hover {
  border-color: var(--white); transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.08); letter-spacing: 0.14em;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === SECTION COMMONS === */
.tdb-page section {
  padding: clamp(60px, 10vh, 120px) clamp(24px, 5vw, 80px);
}

.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--ocean); margin-bottom: 20px;
  transition: gap 0.4s ease, letter-spacing 0.4s ease; cursor: default;
}
.section-label::before { content: ''; width: 32px; height: 1.5px; background: var(--ocean); transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.section-label:hover { gap: 18px; letter-spacing: 0.35em; }
.section-label:hover::before { width: 56px; }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem); color: var(--ocean-deep);
  margin-bottom: 20px; transition: color 0.4s ease; cursor: default;
}
.section-title:hover { color: var(--ocean); }

.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 620px; font-weight: 300; }

/* === OVERVIEW === */
.overview { background: var(--foam); }
.overview-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px); align-items: center; margin-top: 48px;
}
.overview-text p { margin-bottom: 20px; font-size: 1.02rem; color: var(--text); }
.overview-text p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif; font-size: 3.8rem; font-weight: 700;
  float: left; line-height: 0.8; margin-right: 12px; margin-top: 6px; color: var(--ocean);
}

.overview-visual {
  position: relative; height: 500px; border-radius: 2px; overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.overview-visual:hover { box-shadow: 0 24px 64px rgba(26,30,46,0.12); }
.overview-visual-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,180,216,0.12) 0%, transparent 50%), linear-gradient(to bottom, var(--sand-dark), var(--sand));
  display: flex; align-items: center; justify-content: center; position: relative;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.overview-visual:hover .overview-visual-inner { transform: scale(1.04); }
.overview-visual-inner::after { content: '🏖️'; font-size: 8rem; opacity: 0.3; transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.overview-visual:hover .overview-visual-inner::after { opacity: 0.5; transform: scale(1.1) rotate(-5deg); }
.overview-badge {
  position: absolute; bottom: 24px; left: 24px; background: var(--ocean-deep);
  color: var(--white); padding: 20px 28px; max-width: 220px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); cursor: default;
}
.overview-badge:hover { transform: translateY(-6px) scale(1.03); box-shadow: 0 16px 48px rgba(26,30,46,0.3); background: var(--ocean); }
.overview-badge-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 4px; }
.overview-badge-text { font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 300; }

/* === HIGHLIGHTS === */
.highlights { background: var(--ocean-deep); color: var(--white); position: relative; overflow: hidden; }
.highlights::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  border-radius: 50%; background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%); pointer-events: none;
}
.highlights .section-label { color: var(--coral-soft); }
.highlights .section-label::before { background: var(--coral-soft); }
.highlights .section-title { color: var(--white); }
.highlights .section-subtitle { color: rgba(255,255,255,0.6); }

.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.highlight-card {
  padding: clamp(28px, 3vw, 48px); background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); position: relative; overflow: hidden;
}
.highlight-card::after {
  content: ''; position: absolute; bottom: -80px; right: -80px; width: 160px; height: 160px;
  border-radius: 50%; background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.5s ease, transform 0.5s ease;
}
.highlight-card:hover::after { opacity: 1; transform: translate(-20px, -20px); }
.highlight-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,0.15); border-color: rgba(255,255,255,0.12); }
.highlight-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--coral-soft) 100%);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-icon { font-size: 2.2rem; margin-bottom: 20px; display: block; transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.highlight-card:hover .highlight-icon { transform: scale(1.25) rotate(-8deg); }
.highlight-card h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--white); transition: color 0.4s ease, transform 0.4s ease; }
.highlight-card:hover h3 { color: var(--coral-soft); transform: translateX(4px); }
.highlight-card p { font-size: 0.92rem; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.65; transition: color 0.4s ease; }
.highlight-card:hover p { color: rgba(255,255,255,0.8); }

/* === ACCOMMODATION GALLERY === */
.accommodation { background: var(--sand); }
.room-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 56px; }
.room-gallery-card {
  position: relative; background: var(--white); overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); cursor: pointer;
}
.room-gallery-card:hover { z-index: 2; box-shadow: 0 28px 80px rgba(26,30,46,0.14); transform: translateY(-6px); }

.room-gallery-img {
  position: relative; width: 100%; height: 280px; overflow: hidden;
  background: linear-gradient(135deg, rgba(0,180,216,0.06) 0%, transparent 50%), var(--sand-dark);
}
.room-gallery-img-inner {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.room-gallery-card:hover .room-gallery-img-inner { transform: scale(1.08); }
.room-gallery-img-inner.has-slider { transform: none !important; }
.room-gallery-img-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-gallery-emoji { font-size: 4rem; opacity: 0.2; transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.room-gallery-card:hover .room-gallery-emoji { opacity: 0.4; transform: scale(1.2) rotate(-6deg); }

.room-gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,31,40,0.7) 100%);
  opacity: 0; transition: opacity 0.5s ease;
  display: flex; align-items: flex-end; padding: 24px; pointer-events: none; z-index: 4;
}
.room-gallery-card:hover .room-gallery-overlay { opacity: 1; }
.room-gallery-overlay-text {
  color: var(--white); font-size: 0.82rem; font-weight: 300;
  transform: translateY(12px); transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease; opacity: 0;
}
.room-gallery-card:hover .room-gallery-overlay-text { transform: translateY(0); opacity: 1; }

.room-gallery-tag {
  position: absolute; top: 16px; left: 16px; background: var(--ocean-deep);
  color: var(--white); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 6px 14px;
  z-index: 3; transition: all 0.4s ease;
}
.room-gallery-card:hover .room-gallery-tag { background: var(--coral); letter-spacing: 0.24em; }

.room-gallery-capacity {
  position: absolute; top: 16px; right: 16px;
  background: rgba(10,31,40,0.65); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--white); font-size: 0.7rem; font-weight: 400; padding: 6px 12px;
  z-index: 3; display: flex; align-items: center; gap: 5px; transition: all 0.4s ease;
}
.room-gallery-card:hover .room-gallery-capacity { background: rgba(10,31,40,0.85); }

.room-gallery-info { padding: 24px; }
.room-gallery-info h3 { font-size: 1.25rem; color: var(--ocean-deep); margin-bottom: 8px; transition: color 0.4s ease; }
.room-gallery-card:hover .room-gallery-info h3 { color: var(--ocean); }
.room-gallery-desc { font-size: 0.85rem; color: var(--text-light); font-weight: 300; margin-bottom: 16px; line-height: 1.6; }
.room-gallery-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.room-gallery-amenity {
  display: inline-flex; align-items: center; gap: 4px; padding: 5px 10px;
  background: var(--sand); font-size: 0.7rem; font-weight: 400; color: var(--text);
  border-radius: 2px; transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1); cursor: default;
}
.room-gallery-amenity:hover { background: var(--ocean-deep); color: var(--white); transform: translateY(-2px); }
.room-gallery-amenity span { font-size: 0.8rem; }

.room-gallery-footer { padding: 0 24px 24px; display: flex; align-items: center; justify-content: space-between; }
.room-gallery-cta {
  display: inline-flex; align-items: center; gap: 6px; color: var(--ocean);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; position: relative; padding-bottom: 3px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.room-gallery-cta::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--coral); transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.room-gallery-cta:hover::after { width: 100%; }
.room-gallery-cta:hover { color: var(--coral); gap: 12px; }
.room-gallery-cta svg { width: 14px; height: 14px; transition: transform 0.4s ease; }
.room-gallery-cta:hover svg { transform: translateX(3px); }

.room-gallery-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(26,30,46,0.08), transparent); margin: 0 24px; }

.room-gallery-card.featured { grid-column: span 2; }
.room-gallery-card.featured .room-gallery-img { height: 340px; }

@media (max-width: 1024px) {
  .room-gallery { grid-template-columns: repeat(2, 1fr); }
  .room-gallery-card.featured { grid-column: span 2; }
}
@media (max-width: 768px) {
  .room-gallery { grid-template-columns: 1fr; }
  .room-gallery-card.featured { grid-column: span 1; }
  .room-gallery-img { height: 220px; }
  .room-gallery-card.featured .room-gallery-img { height: 260px; }
}

/* === LOCATION === */
.location { background: var(--foam); position: relative; }
.location-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 5vw, 80px); margin-top: 48px; }
.location-map {
  min-height: 520px; border-radius: 2px; overflow: hidden; position: relative;
  box-shadow: 0 12px 40px rgba(26,30,46,0.08); transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.location-map:hover { box-shadow: 0 24px 64px rgba(26,30,46,0.14); transform: translateY(-4px); }
.location-map iframe { width: 100%; height: 100%; position: absolute; inset: 0; }
.location-map-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(10,31,40,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.8); font-size: 0.7rem; font-weight: 400; padding: 10px 16px;
  z-index: 5; display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}
.location-map-badge span { font-size: 1rem; }

.location-journey h3 { font-size: 1.6rem; color: var(--ocean-deep); margin-bottom: 32px; }
.journey-step { display: flex; gap: 20px; padding-bottom: 32px; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); cursor: default; }
.journey-step:hover { transform: translateX(6px); }
.journey-step:last-child { padding-bottom: 0; }
.journey-marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.journey-icon {
  width: 48px; height: 48px; background: var(--ocean-deep);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  border-radius: 50%; flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(26,30,46,0.15);
}
.journey-step:hover .journey-icon { background: var(--coral); transform: scale(1.12); box-shadow: 0 6px 24px rgba(0,180,216,0.25); }
.journey-line { width: 2px; flex: 1; min-height: 20px; background: linear-gradient(to bottom, var(--ocean-deep), rgba(26,30,46,0.1)); margin-top: 6px; }
.journey-step--alt .journey-icon { background: var(--driftwood); }
.journey-step--alt:hover .journey-icon { background: var(--coral); }
.journey-content { padding-top: 4px; }
.journey-meta { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--coral); margin-bottom: 4px; }
.journey-content h4 { font-size: 1.05rem; color: var(--ocean-deep); margin-bottom: 6px; font-family: 'Outfit', sans-serif; font-weight: 500; }
.journey-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 340px; }
}

/* === ACTIVITIES === */
.activities { background: var(--sand); }
.activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 3px; margin-top: 48px; }
.act-card {
  position: relative; min-height: 280px; overflow: hidden; cursor: pointer;
  background: var(--act-gradient, linear-gradient(135deg, #1A1E2E, #2B3044));
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.act-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(26,30,46,0.18); }
.act-card--tall { grid-row: span 2; min-height: 100%; }
.act-card--wide { grid-column: span 2; }
.act-card-icon { position: absolute; top: 28px; right: 28px; font-size: 3.5rem; opacity: 0.15; transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); z-index: 1; }
.act-card:hover .act-card-icon { opacity: 0.3; transform: scale(1.2) rotate(-8deg); }
.act-card-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; color: var(--white); }
.act-card-number { font-family: 'Cormorant Garamond', serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); margin-bottom: 8px; display: block; transition: all 0.4s ease; }
.act-card:hover .act-card-number { letter-spacing: 0.3em; color: rgba(255,255,255,0.6); }
.act-card-content h3 { font-size: 1.6rem; color: var(--white); margin-bottom: 10px; transition: transform 0.4s ease; }
.act-card:hover .act-card-content h3 { transform: translateY(-4px); }
.act-card-content p { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.6; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.6s ease, opacity 0.5s ease, margin 0.5s ease; margin-bottom: 0; }
.act-card:hover .act-card-content p { max-height: 120px; opacity: 1; margin-bottom: 12px; }
.act-card-link { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; opacity: 0; transform: translateY(10px); transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
.act-card:hover .act-card-link { opacity: 1; transform: translateY(0); }
.act-card-link:hover { color: var(--white); gap: 12px; }

@media (max-width: 1024px) {
  .activities-grid { grid-template-columns: 1fr 1fr; }
  .act-card--tall { grid-row: span 1; }
}
@media (max-width: 768px) {
  .activities-grid { grid-template-columns: 1fr; }
  .act-card--wide { grid-column: span 1; }
  .act-card { min-height: 240px; }
  .act-card-content p { max-height: 120px; opacity: 1; margin-bottom: 12px; }
  .act-card-link { opacity: 1; transform: translateY(0); }
}

/* === FAQ === */
.faq { background: var(--foam); }
.faq-accordion { max-width: 800px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid rgba(26,30,46,0.08); transition: all 0.3s ease; }
.faq-item:first-child { border-top: 1px solid rgba(26,30,46,0.08); }
.faq-question { display: flex; align-items: center; gap: 16px; width: 100%; padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left; transition: all 0.3s ease; font-family: 'Outfit', sans-serif; }
.faq-question:hover { padding-left: 8px; }
.faq-q-badge { flex-shrink: 0; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; background: var(--ocean-deep); color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; font-weight: 700; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.faq-item.active .faq-q-badge, .faq-question:hover .faq-q-badge { background: var(--coral); transform: rotate(-8deg) scale(1.08); }
.faq-q-text { flex: 1; font-size: 1.02rem; font-weight: 500; color: var(--ocean-deep); line-height: 1.4; transition: color 0.3s ease; }
.faq-item.active .faq-q-text { color: var(--coral); }
.faq-toggle { flex-shrink: 0; width: 20px; height: 20px; position: relative; transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.faq-toggle span { position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: var(--ocean-deep); transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.faq-toggle span:first-child { transform: translate(-50%, -50%); }
.faq-toggle span:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.active .faq-toggle span:last-child { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }
.faq-item.active .faq-toggle { transform: rotate(180deg); }
.faq-item.active .faq-toggle span { background: var(--coral); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1), padding 0.5s ease; padding: 0 0 0 46px; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 0 24px 46px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; font-weight: 300; }

/* === CTA BOOKING === */
.booking-cta { background: linear-gradient(135deg, #1A1E2E 0%, #0D1117 100%); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.booking-cta::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(0,180,216,0.06) 0%, transparent 60%); pointer-events: none; }
.booking-cta .section-label { color: var(--coral-soft); }
.booking-cta .section-label::before { background: var(--coral-soft); }
.booking-cta h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--white); margin-bottom: 20px; }
.booking-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 36px; font-weight: 300; }
.booking-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.contact-row { display: flex; justify-content: center; gap: 48px; margin-top: 56px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.contact-item { text-align: center; transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); cursor: default; }
.contact-item:hover { transform: translateY(-6px); }
.contact-item:hover .contact-item-value { color: var(--coral-soft); }
.contact-item-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.contact-item-value { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--white); transition: color 0.4s ease; }
.contact-item-value a { color: var(--coral-soft); text-decoration: none; position: relative; transition: color 0.3s ease; }
.contact-item-value a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--coral); transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.contact-item-value a:hover { color: var(--white); }
.contact-item-value a:hover::after { width: 100%; }

/* === FOOTER === */
.tdb-page > footer { background: var(--night); color: rgba(255,255,255,0.5); padding: 40px clamp(24px, 5vw, 80px); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.78rem; }
.tdb-page > footer a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; position: relative; }
.tdb-page > footer a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--coral-soft); transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
.tdb-page > footer a:hover::after { width: 100%; }
.tdb-page > footer a:hover { color: var(--coral-soft); }
.footer-links { display: flex; gap: 28px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .overview-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .overview-visual { height: 320px; }
  .contact-row { gap: 28px; }
}

/* === SCROLL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === ROOM IMAGE SLIDER === */
.room-slider { position: relative; width: 100%; height: 100%; z-index: 6; }
.room-slider-track { display: flex; width: 100%; height: 100%; transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
.room-slider-slide { min-width: 100%; height: 100%; }
.room-slider-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-slider-nav { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; opacity: 0; transition: opacity 0.3s ease; }
.room-gallery-card:hover .room-slider-nav { opacity: 1; }
.room-slider-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.6); cursor: pointer; transition: all 0.3s ease; padding: 0; pointer-events: auto; }
.room-slider-dot.active { background: #FFFFFF; transform: scale(1.3); }
.room-slider-dot:hover { background: rgba(255,255,255,0.8); }
.room-slider-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 32px; height: 32px; border-radius: 50%; background: rgba(10,31,40,0.5); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); color: #FFFFFF; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s ease; pointer-events: auto; }
.room-gallery-card:hover .room-slider-btn { opacity: 1; }
.room-slider-btn:hover { background: rgba(10,31,40,0.75); transform: translateY(-50%) scale(1.1); }
.room-slider-btn.prev { left: 10px; }
.room-slider-btn.next { right: 10px; }

@media (max-width: 768px) {
  .room-slider-nav { opacity: 1; }
  .room-slider-btn { opacity: 1; width: 22px; height: 22px; font-size: 0.65rem; }
}

@media (max-width:768px){
  .tdb-page .room-gallery-overlay{display:none}
  .tdb-page .room-gallery-card:hover .room-gallery-overlay{display:none}
  .tdb-page .room-gallery-tag{font-size:.5rem;padding:4px 8px}
  .tdb-page .room-gallery-capacity{font-size:.6rem;padding:4px 8px}
}
@media (hover:none){
  .tdb-page .room-gallery-overlay{display:none}
}/* End custom CSS */