/* ==========================================
   RESIDENCIA DE TÍO - Luxury Theme
   Inspired by Velaa Private Island
   ========================================== */

/* ---- CSS Variables ---- */
:root {
  --gold: #c9a84c;
  --gold-light: #d4b96a;
  --gold-dark: #a68a3e;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --dark-overlay: rgba(10, 10, 10, 0.55);
  --charcoal: #2a2a2a;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --cream: #faf7f2;
  --text: #333333;
  --text-light: #999999;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  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: var(--transition);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.section {
  position: relative;
}

.hidden {
  display: none !important;
}

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.4em;
  margin-bottom: 30px;
}

.preloader-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  animation: preloaderLine 1.5s ease-in-out infinite;
}

@keyframes preloaderLine {
  0%, 100% { width: 60px; opacity: 0.3; }
  50% { width: 120px; opacity: 1; }
}

/* ---- Side Buttons (Velaa-style) ---- */
.side-buttons {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
}

.side-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 12px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.side-gallery {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  backdrop-filter: blur(10px);
}

.side-book {
  background: var(--gold);
  color: var(--white);
}

.side-btn:hover {
  padding: 25px 16px;
}

.side-gallery:hover {
  background: var(--white);
}

.side-book:hover {
  background: var(--gold-dark);
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  padding: 12px 0;
  backdrop-filter: blur(20px);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.35em;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  transition: var(--transition);
}

.lang-switch:hover {
  border-color: var(--gold);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 2px 4px;
  transition: var(--transition);
}

.lang-btn:hover {
  color: var(--white);
}

.lang-btn.lang-active {
  color: var(--gold);
  font-weight: 600;
}

.lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.6rem;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  pointer-events: none;
  border-top: 1px solid var(--gold);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.dropdown-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 28px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  padding-left: 32px;
}

.dropdown-link span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}

.dropdown-link:hover span {
  color: var(--gold-light);
}

/* Mobile Sub Items */
.mobile-sub a {
  font-family: var(--font-accent) !important;
  font-size: 1.1rem !important;
  color: var(--gold-light) !important;
  letter-spacing: 0.05em !important;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin: 20px 0;
  transform: translateY(30px);
  opacity: 0;
  transition: var(--transition);
}

.mobile-menu.active li {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu li:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.15em;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-parallax {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  font-weight: 500;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-line {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-line-italic {
  font-style: italic;
  font-family: var(--font-accent);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: var(--gold-light);
  animation-delay: 0.9s;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s ease 1.3s forwards;
}

.hero-scroll:hover {
  color: var(--gold);
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: var(--gold);
  position: relative;
  animation: scrollBounce 2s ease infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ---- Section Styling ---- */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.section-tag-light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---- About Section ---- */
.about-section {
  padding: 140px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 25px;
}

.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ---- Parallax Divider ---- */
.parallax-divider {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.parallax-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.parallax-text span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.parallax-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
}

.parallax-sub {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.7);
}

/* ---- Suites Section ---- */
.suites-section {
  padding: 140px 0 80px;
  background: var(--cream);
}

.suites-slider {
  width: 100%;
  height: 75vh;
  min-height: 550px;
  margin-bottom: 80px;
}

.suite-slide {
  position: relative;
  overflow: hidden;
}

.suite-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.suite-slide:hover .suite-image,
.swiper-slide-active .suite-image {
  transform: scale(1.05);
}

.suite-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
}

.suite-content {
  position: absolute;
  bottom: 80px;
  left: 80px;
  max-width: 550px;
  z-index: 2;
  color: var(--white);
}

.suite-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 15px;
}

.suite-name {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.suite-sqm {
  font-family: var(--font-body);
  font-size: 0.45em;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  vertical-align: middle;
  margin-left: 10px;
}

.suite-desc {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.suite-cta {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}

.suite-cta:hover {
  background: var(--gold);
  color: var(--white);
}

.suite-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.suite-cta-gold {
  background: var(--gold);
  color: var(--white);
}

.suite-cta-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* Swiper Custom */
.suites-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  width: 30px;
  height: 2px;
  border-radius: 0;
  opacity: 1;
  transition: var(--transition);
}

.suites-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 50px;
}

.suites-prev, .suites-next {
  color: var(--white) !important;
}

.suites-prev::after, .suites-next::after {
  font-size: 20px !important;
}

/* Suite Features */
.suite-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.feature {
  text-align: center;
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.feature h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-light);
}

/* ---- Experiences Section ---- */
.experiences-section {
  background: var(--dark);
}

.experience-block {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.exp-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.exp-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
}

.exp-reverse .exp-overlay {
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
}

.exp-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  padding: 0 80px;
  color: var(--white);
}

.exp-reverse .exp-content {
  margin-left: auto;
}

.exp-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 20px;
}

.exp-content p {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Gallery Section ---- */
.gallery-section {
  padding: 140px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 30px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

.gi-tall {
  grid-row: span 2;
}

.gi-wide {
  grid-column: span 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 20px;
  transition: var(--transition);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 60px; }

.lightbox-prev:hover, .lightbox-next:hover {
  color: var(--gold);
}

/* ---- Booking Section ---- */
.booking-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.booking-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.88);
}

.booking-container {
  position: relative;
  z-index: 2;
}

/* Booking Tabs */
.booking-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 30px;
}

.booking-tab {
  padding: 16px 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.booking-tab:first-child { border-right: none; }

.booking-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.booking-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.booking-tab-info {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0;
  background: transparent;
  border: none;
  text-align: center;
}

.booking-tab-info .booking-info-text {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto 28px;
  max-width: 780px;
}

.booking-price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  max-width: 540px;
  margin: 0 auto;
}

.booking-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.booking-price-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.booking-price-amount {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}

.booking-price-unit {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.booking-minstay {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 640px) {
  .booking-tab-info .booking-info-text { font-size: 1.05rem; }
  .booking-price-amount { font-size: 2rem; }
}

@media (max-width: 768px) {
  .booking-tabs { flex-direction: column; }
  .booking-tab { border-right: 1px solid rgba(255, 255, 255, 0.12) !important; }
  .booking-tab:first-child { border-bottom: none; }
}

.booking-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-privacy {
  margin-bottom: 30px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--gold);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.form-success {
  text-align: center;
  padding: 60px 20px;
  color: var(--white);
}

.success-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.5rem;
  color: var(--gold);
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.form-success p {
  font-family: var(--font-accent);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

/* ---- Contact Section ---- */
.contact-section {
  padding: 140px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-item p {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
}

.contact-map {
  height: 450px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer-brand p {
  font-family: var(--font-accent);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ---- Reveal Animations ---- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---- Flatpickr Custom Theme ---- */
.flatpickr-calendar {
  background: var(--dark) !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
  font-family: var(--font-body) !important;
}

.flatpickr-months .flatpickr-month {
  background: var(--dark) !important;
  color: var(--gold) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: var(--dark) !important;
  color: var(--gold) !important;
}

.flatpickr-weekdays {
  background: var(--dark) !important;
}

span.flatpickr-weekday {
  color: var(--gold) !important;
  font-weight: 600 !important;
}

.flatpickr-day {
  color: var(--white) !important;
}

.flatpickr-day:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

.flatpickr-day.selected {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

.flatpickr-day.today {
  border-color: var(--gold) !important;
}

.flatpickr-day.inRange {
  background: rgba(201, 168, 76, 0.2) !important;
  border-color: rgba(201, 168, 76, 0.2) !important;
  box-shadow: -5px 0 0 rgba(201, 168, 76, 0.2), 5px 0 0 rgba(201, 168, 76, 0.2) !important;
}

.numInputWrapper span {
  border-color: var(--gold) !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  fill: var(--gold) !important;
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .container { padding: 0 40px; }
  .suite-features { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .nav-menu { display: none; }
  .hamburger { display: block; }

  .nav-container { padding: 0 20px; }
  .logo-text { font-size: 0.75rem; letter-spacing: 0.15em; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .suite-content { left: 40px; bottom: 40px; }
  .exp-content { padding: 0 40px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gi-tall { grid-row: span 1; }
  .gi-wide { grid-column: span 1; }

  .footer-top { flex-direction: column; gap: 30px; }
  .footer-links { flex-wrap: wrap; }

  .side-buttons { display: none; }

  .suite-features { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  .container { padding: 0 25px; }

  .about-section,
  .suites-section,
  .gallery-section,
  .booking-section,
  .contact-section { padding: 80px 0; }

  .about-stats { flex-direction: column; gap: 25px; }

  .form-row { flex-direction: column; gap: 20px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; padding: 0 15px; }

  .parallax-divider {
    background-attachment: scroll;
    height: 50vh;
    min-height: 350px;
  }

  .experience-block { height: 60vh; min-height: 450px; }

  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }

  .suite-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  html { font-size: 14px; }

  .logo-text { font-size: 0.6rem; letter-spacing: 0.1em; }
  .lang-switch { padding: 2px 5px; gap: 2px; }
  .lang-btn { font-size: 0.55rem; padding: 1px 2px; }
  .lang-sep { font-size: 0.45rem; }

  .gallery-grid { grid-template-columns: 1fr; }

  .suite-content { left: 25px; right: 25px; bottom: 30px; }
  .suite-name { font-size: 1.8rem; }

  .exp-content { padding: 0 25px; }
}
