/* ================================================
   PALMIYE HOME — Premium Vacation Rental
   Professional CSS — Mediterranean Luxury Aesthetic
   Fonts: Playfair Display + Lato
   ================================================ */

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

:root {
  --gold: #c9943e;
  --gold-light: #e2b965;
  --gold-glow: rgba(201, 148, 62, 0.15);
  --gold-warm: #f0d78c;
  --navy: #0f2027;
  --navy-light: #1a3a4a;
  --navy-soft: #203a43;
  --teal: #1a8a7d;
  --teal-light: #2ec4b6;
  --cream: #faf8f5;
  --cream-dark: #f0ece4;
  --warm-bg: #fdf9f3;
  --warm-section: #f7f3ed;
  --white: #ffffff;
  --text: #2c2f33;
  --text-light: #5a6068;
  --text-muted: #8e949c;
  --green-wa: #25d366;
  --green-wa-hover: #1fb855;
  --blue-booking: #003580;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-glow: 0 8px 32px rgba(201,148,62,0.15);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h2.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0.5rem auto 2.5rem;
  font-size: 1.05rem;
  font-weight: 300;
}
.accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.5rem auto 1rem;
  border-radius: 2px;
}

/* ---- SECTIONS ---- */
section { padding: 5rem 0; }
.section-cream { background: var(--warm-bg); }
.section-dark { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%); color: var(--white); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn svg, .btn i { width: 18px; height: 18px; flex-shrink: 0; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  background: var(--green-wa-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}
.btn-booking {
  background: var(--blue-booking);
  color: #fff;
}
.btn-booking:hover { background: #00264d; transform: translateY(-2px); }
.btn-booking-outline {
  background: rgba(0,53,128,0.35);
  color: #fff;
  border: 2px solid rgba(0,83,180,0.6);
  backdrop-filter: blur(8px);
}
.btn-booking-outline:hover {
  background: var(--blue-booking);
  border-color: var(--blue-booking);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,53,128,0.4);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
  padding: 0.75rem 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 0.4rem 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Real Logo Image styles — dual asset system */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  transition: opacity var(--transition);
}
.navbar-logo:hover { opacity: 0.85; }
.navbar-logo .logo-img {
  max-height: 44px;
  width: auto;
  transition: all var(--transition);
  object-fit: contain;
}
/* Default: white logo visible, green hidden */
.navbar-logo .logo-light { display: block; }
.navbar-logo .logo-dark  { display: none; }
/* Scrolled: green logo visible, white hidden */
.navbar.scrolled .navbar-logo .logo-img { max-height: 38px; }
.navbar.scrolled .navbar-logo .logo-light { display: none; }
.navbar.scrolled .navbar-logo .logo-dark  { display: block; }

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.8rem;
  transition: color var(--transition);
  position: relative;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }

.navbar-right { display: flex; align-items: center; gap: 0.75rem; }

/* Lang Switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.1);
}
.navbar.scrolled .lang-switcher {
  background: var(--cream);
  border-color: var(--cream-dark);
}
.lang-btn {
  background: transparent;
  border: none;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}
.navbar.scrolled .lang-btn { color: var(--text-muted); }
.lang-btn:hover { color: #fff; }
.navbar.scrolled .lang-btn:hover { color: var(--text); }
.lang-btn.active {
  background: var(--gold);
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(201,148,62,0.3);
}

.nav-whatsapp-btn { display: none; }
@media (min-width: 1024px) { .nav-whatsapp-btn { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  transition: all var(--transition);
  border-radius: 1px;
}
.navbar.scrolled .hamburger span { background: var(--text); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1023px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* Mobile Menu */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden;
  transition: all var(--transition);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed;
  top: 0; right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: right var(--transition);
  box-shadow: var(--shadow-xl);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  padding: 0.75rem 0;
  font-weight: 500;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--cream);
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-menu a:hover { color: var(--gold); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  transform: scale(1.08);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.8s ease, transform 12s ease-out;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15,32,39,0.40) 0%,
      rgba(15,32,39,0.08) 35%,
      rgba(15,32,39,0.05) 55%,
      rgba(15,32,39,0.45) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 6rem 24px 4rem;
  animation: heroFadeIn 1.2s ease-out;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold-warm);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hero-trust-pill svg { width: 14px; height: 14px; fill: var(--gold-warm); color: var(--gold-warm); }

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero h1 span {
  color: var(--gold-warm);
  display: block;
  font-style: italic;
}

.hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.1);
}
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.95);
  font-size: 0.9rem;
  font-weight: 400;
}
.hero-bullet svg { width: 16px; height: 16px; color: var(--gold-warm); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.hero-response-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.hero-response-note svg { width: 14px; height: 14px; }

/* Hero slider indicators */
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.hero-dot.active {
  background: var(--gold-warm);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(201,148,62,0.4);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 1.75rem 0;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,148,62,0.08), transparent 70%);
  border-radius: 50%;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(201, 148, 62, 0.12);
  border: 1px solid rgba(201, 148, 62, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.trust-item:hover .trust-icon {
  background: rgba(201, 148, 62, 0.2);
  transform: scale(1.05);
}
.trust-icon svg { width: 20px; height: 20px; color: var(--gold-light); }
.trust-text h4 { font-size: 0.85rem; color: #fff; font-weight: 600; font-family: var(--font-body); }
.trust-text p { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 1px; }

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:last-child { grid-column: span 2; justify-content: center; }
}

/* ---- BOOKING TRUST BLOCK ---- */
.booking-trust-block {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}
.booking-trust-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
}
.booking-trust-badge {
  background: linear-gradient(135deg, var(--blue-booking), #004a9e);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-trust-badge::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent);
  border-radius: 50%;
}
.booking-score { color: #fff; position: relative; }
.score-number {
  font-size: 3.5rem;
  font-weight: 700;
  display: block;
  font-family: var(--font-display);
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.score-label { font-size: 1rem; opacity: 0.9; font-weight: 300; }
.booking-logo-svg { width: 180px; opacity: 0.9; }
.booking-trust-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-trust-info h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 0.75rem; }
.booking-trust-info p { color: var(--text-light); margin-bottom: 1.25rem; font-weight: 300; }
.trust-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.trust-highlights span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}
.trust-highlights svg { width: 16px; height: 16px; color: var(--gold); }

@media (max-width: 768px) {
  .booking-trust-content { grid-template-columns: 1fr; }
  .booking-trust-badge { padding: 2rem; }
}

/* ---- CONVERSION CHECKPOINT ---- */
.conversion-cp {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 50%, var(--navy-light) 100%);
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.conversion-cp::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,148,62,0.1), transparent 70%);
  border-radius: 50%;
}
.conversion-cp::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(46,196,182,0.06), transparent 70%);
  border-radius: 50%;
}
.conversion-cp h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}
.conversion-cp p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
  font-weight: 300;
  position: relative;
}
.conversion-cp .btn { position: relative; }

/* ---- APARTMENT ---- */
#apartment {
  background: var(--white);
  padding: 5rem 0;
}
.apartment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.apartment-slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.slider-track { position: relative; width: 100%; height: 100%; }
.slider-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slider-slide.active { opacity: 1; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }
.slider-btn svg { width: 20px; height: 20px; color: var(--navy); }
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.slider-dot.active { background: #fff; width: 24px; border-radius: 4px; }

.apartment-info h2 {
  font-size: 2rem;
  color: var(--navy);
  text-align: left;
}
.apartment-desc { color: var(--text-light); margin-bottom: 1.5rem; font-weight: 300; font-size: 1.05rem; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  background: var(--warm-bg);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.feature-item:hover {
  background: var(--gold-glow);
  border-color: rgba(201,148,62,0.15);
  transform: translateY(-1px);
}
.feature-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
.apartment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}
.apartment-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-light);
}
.apartment-meta svg { width: 16px; height: 16px; color: var(--gold); }

@media (max-width: 768px) {
  .apartment-layout { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- GALLERY ---- */
#gallery {
  background: var(--warm-bg);
}
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.gallery-tab {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  color: var(--text-light);
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); z-index: 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.hidden {
  display: none;
}

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; } }

/* ---- ATTRACTIONS ---- */
#attractions {
  background: var(--white);
}
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.attraction-card {
  perspective: 1000px;
  height: 380px;
  cursor: pointer;
}
/* Hidden cards (5+) */
.attraction-card.attraction-hidden {
  display: none;
}
.attraction-card.attraction-hidden.attraction-visible {
  display: block;
}
.attraction-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.attraction-card.flipped .attraction-card-inner {
  transform: rotateY(180deg);
}
.attraction-front, .attraction-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* Front */
.attraction-front { background: var(--navy); }
.attraction-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: all 0.5s ease;
}
.attraction-card:hover .attraction-front img {
  opacity: 1;
  transform: scale(1.05);
}
.attraction-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(15,32,39,0.95) 0%, rgba(15,32,39,0.6) 60%, transparent 100%);
}
.attraction-distance {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.attraction-distance svg { width: 12px; height: 12px; }
.attraction-info h4 {
  color: #fff;
  font-size: 1.25rem;
  font-family: var(--font-display);
  margin-bottom: 0.3rem;
}
.attraction-teaser {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.read-more {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Back */
.attraction-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(201, 148, 62, 0.15);
}
.attraction-back h4 {
  color: var(--gold-light);
  font-size: 1.2rem;
  font-family: var(--font-display);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.attraction-back p {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  line-height: 1.65;
  font-weight: 300;
  overflow-y: auto;
  flex: 1;
}
.attraction-back .read-more {
  margin-top: 1rem;
  display: block;
  text-align: center;
}

/* Show More Button */
.attraction-toggle-wrap {
  text-align: center;
  margin-top: 2rem;
}
.attraction-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 2rem;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.attraction-toggle-btn:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(15,32,39,0.2);
}
.attraction-toggle-btn svg {
  width: 16px; height: 16px;
  transition: transform var(--transition);
}
.attraction-toggle-btn.expanded svg {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .attraction-grid { grid-template-columns: 1fr; }
  .attraction-card { height: 340px; }
}

/* ---- LOCATION ---- */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 350px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 350px;
}
.distance-grid { display: flex; flex-direction: column; gap: 0.75rem; }
.distance-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all var(--transition);
  border: 1px solid var(--cream-dark);
}
.distance-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-glow);
}
.distance-item > svg, .distance-item > i { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.d-info h4 { font-size: 0.9rem; font-family: var(--font-body); font-weight: 600; color: var(--navy); }
.d-info p { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 768px) { .location-layout { grid-template-columns: 1fr; } }

/* ---- PRICING ---- */
#pricing {
  background: var(--warm-bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.pricing-card:hover::before { opacity: 1; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  border-color: var(--gold);
  transform: scale(1.05);
}
.pricing-card.featured::before { opacity: 1; }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(201,148,62,0.3);
}
.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
}
.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.pricing-price small {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.7;
}
.pricing-note { font-size: 0.85rem; color: var(--text-light); }
.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.6); }
.pricing-footer {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.pricing-footer svg { width: 16px; height: 16px; }

/* Premium pricing hero */
.pricing-hero {
  display: flex;
  justify-content: center;
}
.pricing-main-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  text-align: center;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.pricing-main-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--teal-light));
}
.pricing-price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.pricing-from {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-amount {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1;
}
.pricing-per {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-main-card .pricing-note {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.pricing-perks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-perks span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}
.pricing-perks svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.pricing-ctas {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .pricing-main-card { padding: 2rem 1.5rem; }
  .pricing-amount { font-size: 2.8rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.featured { transform: none; }
}

/* ---- FAQ ---- */
#faq {
  background: var(--warm-bg);
}
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--navy);
  font-family: var(--font-body);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question svg {
  width: 18px; height: 18px;
  transition: transform var(--transition);
  color: var(--gold);
  flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ---- BOOKING SECTION ---- */
#booking {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
}
.booking-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}
.cta-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  color: #fff;
}
.cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.cta-card-primary {
  grid-column: span 2;
  background: var(--green-wa);
  border-color: var(--green-wa);
}
.cta-card-primary:hover { background: var(--green-wa-hover); }
.cta-card-booking {
  background: rgba(0,53,128,0.25);
  border-color: rgba(0,83,180,0.4);
}
.cta-card-booking:hover {
  background: var(--blue-booking);
  border-color: var(--blue-booking);
  box-shadow: 0 8px 24px rgba(0,53,128,0.35);
}
.cta-card-small {
  grid-column: span 2;
  background: rgba(255,56,95,0.15);
  border-color: rgba(255,56,95,0.3);
}
.cta-card-small:hover {
  background: #ff385f;
  border-color: #ff385f;
  box-shadow: 0 8px 24px rgba(255,56,95,0.35);
}
.cta-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-icon.whatsapp { background: rgba(255,255,255,0.2); }
.cta-icon.booking { background: var(--blue-booking); }
.cta-icon.airbnb { background: #ff385f; }
.cta-icon svg { width: 22px; height: 22px; }
.cta-card h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); }
.cta-card p { font-size: 0.8rem; opacity: 0.8; margin-top: 2px; }
.cta-arrow { width: 20px; height: 20px; margin-left: auto; opacity: 0.7; }

@media (max-width: 600px) {
  .booking-ctas { grid-template-columns: 1fr; }
  .cta-card-primary, .cta-card-small { grid-column: span 1; }
}

/* ---- CONTACT ---- */
#contact {
  background: var(--warm-bg);
}
.contact-layout { max-width: 600px; margin: 0 auto; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
}
.contact-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold-glow);
}
.contact-item > svg, .contact-item > i { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.contact-item h4 { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item p { font-size: 0.95rem; color: var(--text); }
.contact-item a { color: var(--gold); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }
.contact-whatsapp { margin-top: 0.5rem; }

/* ---- FOOTER ---- */
.footer {
  background: linear-gradient(180deg, var(--navy) 0%, #0a1a20 100%);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 0.75rem;
  opacity: 0.92;
  object-fit: contain;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.6; font-weight: 300; }
.footer h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }
.footer a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer a:hover { color: var(--gold-light); }
.footer a svg { width: 14px; height: 14px; }
.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-legal a {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }
.footer-legal span { color: rgba(255,255,255,0.25); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand .footer-logo-img { margin: 0 auto 0.75rem; }
}

/* Calendar last-updated display */
.calendar-last-updated {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.5rem 1.5rem 0;
  background: var(--warm-bg);
}
.calendar-last-updated i,
.calendar-last-updated svg {
  width: 12px;
  height: 12px;
  vertical-align: -1px;
  margin-right: 0.25rem;
}

/* ---- MOBILE CTA ---- */
.mobile-cta {
  position: fixed;
  bottom: -100px;
  left: 0; right: 0;
  z-index: 900;
  padding: 0.75rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.06);
  transition: bottom var(--transition);
}
.mobile-cta.visible { bottom: 0; }
.mobile-cta-inner {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.mobile-cta-main {
  flex: 1;
  justify-content: center;
}
.mobile-cta-alt {
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) { .mobile-cta { display: none; } }

/* ---- FLOATING WHATSAPP ---- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-wa);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
}
.floating-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45); }
.floating-whatsapp svg { width: 20px; height: 20px; }

@media (max-width: 767px) {
  .floating-whatsapp { display: none; }
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }
.lightbox-nav svg { width: 24px; height: 24px; }

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-message { display: none; }

/* ---- SCROLL CUSTOMIZATION ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ---- SELECTION ---- */
::selection { background: var(--gold-glow); color: var(--navy); }

/* ---- Airbnb Outline Button ---- */
.btn-airbnb-outline {
  background: rgba(255,56,95,0.25);
  color: #fff;
  border: 2px solid rgba(255,56,95,0.5);
  backdrop-filter: blur(8px);
}
.btn-airbnb-outline:hover {
  background: #ff385f;
  border-color: #ff385f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,56,95,0.4);
}

/* ---- AVAILABILITY CALENDAR ---- */
#availability {
  background: var(--white);
}
.calendar-wrapper {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
}
.calendar-months-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.calendar-separator {
  color: var(--gold-light);
  font-size: 1.5rem;
}
.calendar-nav-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--transition);
}
.calendar-nav-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}
.calendar-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.calendar-nav-btn svg { width: 18px; height: 18px; }

.calendar-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.calendar-month {
  padding: 1rem 1.25rem 1.25rem;
}
.calendar-month:first-child {
  border-right: 1px solid var(--cream-dark);
}
.calendar-month-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: none; /* Hidden because title is in header */
}
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.calendar-weekday {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition-fast);
  position: relative;
  cursor: default;
}
.calendar-day.empty {
  background: transparent;
}
.calendar-day.past {
  color: var(--text-muted);
  opacity: 0.35;
}
.calendar-day.available {
  background: rgba(46, 196, 182, 0.08);
  color: var(--teal);
  font-weight: 600;
  border: 1px solid rgba(46, 196, 182, 0.15);
}
.calendar-day.available:hover {
  background: rgba(46, 196, 182, 0.18);
  transform: scale(1.08);
}
.calendar-day.booked {
  background: rgba(220, 53, 69, 0.06);
  color: rgba(220, 53, 69, 0.55);
  text-decoration: line-through;
  border: 1px solid rgba(220, 53, 69, 0.08);
}
.calendar-day.today {
  box-shadow: inset 0 0 0 2px var(--gold);
  font-weight: 700;
  color: var(--gold);
}
.calendar-day.today.available {
  color: var(--gold);
  background: var(--gold-glow);
  border-color: var(--gold);
}

.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--warm-bg);
  border-top: 1px solid var(--cream-dark);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 4px;
  flex-shrink: 0;
}
.legend-dot.available {
  background: rgba(46, 196, 182, 0.25);
  border: 1px solid var(--teal);
}
.legend-dot.booked {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.4);
}
.legend-dot.past {
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
}

.calendar-cta {
  text-align: center;
  padding: 1.25rem 1.5rem 1.5rem;
  background: var(--warm-bg);
}
.calendar-cta p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

@media (max-width: 640px) {
  .calendar-grid-wrapper {
    grid-template-columns: 1fr;
  }
  .calendar-month:first-child {
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
  }
  .calendar-months-title {
    font-size: 0.95rem;
  }
  .calendar-months-title .calendar-separator { display: none; }
  .calendar-months-title { flex-direction: column; gap: 0.2rem; }
}

/* ---- KEYFRAME ANIMATIONS ---- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,148,62,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(201,148,62,0); }
}

/* ================================================
   PROFESSIONAL ADDITIONS — Phase 5
   ================================================ */

/* ---- SKIP TO CONTENT (Accessibility) ---- */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0 0 var(--radius) 0;
  transition: top var(--transition-fast);
}
.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}

/* ---- FOCUS VISIBLE (Accessibility) ---- */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* ---- GUEST REVIEWS CAROUSEL ---- */
.reviews-carousel {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  min-height: 220px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
  transition: all var(--transition);
}
.review-stars {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1rem;
}
.review-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.review-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.review-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.review-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(201,148,62,0.3);
}
.review-dot:hover {
  background: var(--gold-light);
}

/* ---- BACK TO TOP BUTTON ---- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 990;
  background: var(--navy);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(201,148,62,0.3);
}

/* ---- COOKIE NOTICE ---- */
.cookie-notice {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 600px;
  width: calc(100% - 2rem);
  font-size: 0.85rem;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.08);
}
.cookie-notice.visible {
  bottom: 20px;
}
.cookie-notice p {
  flex: 1;
  line-height: 1.5;
  font-weight: 300;
}
.cookie-notice a {
  color: var(--gold-light);
  text-decoration: underline;
}
.cookie-notice .btn-gold {
  background: var(--gold);
  color: #fff;
  flex-shrink: 0;
}
.cookie-notice .btn-gold:hover {
  background: var(--gold-light);
}
.cookie-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--font-body);
}
.cookie-decline:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
@media (max-width: 480px) {
  .cookie-notice {
    flex-direction: column;
    text-align: center;
  }
}

/* ---- URGENCY BADGE ---- */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #ff6b35, #f72c25);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  animation: pulse-badge 2s ease-in-out infinite;
  box-shadow: 0 2px 12px rgba(247,44,37,0.25);
}
@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* ---- CALENDAR DATE SELECTION ---- */
.calendar-day.selected {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(201,148,62,0.35);
}
.calendar-selection-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}
.calendar-selection-bar.visible {
  opacity: 1;
  transform: translateY(0);
}
.selected-dates {
  font-weight: 600;
  font-size: 0.9rem;
}
@media (max-width: 480px) {
  .calendar-selection-bar {
    flex-direction: column;
    text-align: center;
  }
}

/* ---- LAZY IMAGE LOADING ---- */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-slide { transition: none; }
  .hero-slide.active { transition: opacity 0.3s ease; transform: none; }
}

/* ---- PRINT STYLES ---- */
@media print {
  .navbar, .mobile-cta, .floating-whatsapp, .mobile-menu,
  .mobile-overlay, .back-to-top, .cookie-notice,
  .hero-indicators, .calendar-nav-btn { display: none !important; }

  body { color: #000; background: #fff; }
  .hero { min-height: auto; }
  .hero-overlay { background: none; }
  .hero-content { color: #000; }
  .hero h1 { color: #333; text-shadow: none; }
  .hero h1 span { color: #666; }
  section { padding: 2rem 0; break-inside: avoid; }
  .conversion-cp { background: #f5f5f5; color: #333; }
  .conversion-cp h3, .conversion-cp p { color: #333; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
  .btn { border: 1px solid #ccc; background: transparent; color: #333; box-shadow: none; }
}
