@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,400;0,500;0,700&display=swap');

:root {
  --primary: #5B7B5D;
  --primary-dark: #3D5940;
  --primary-light: #7a9d7c;
  --accent: #C4873B;
  --accent-dark: #A66D2A;
  --accent-light: #d4a06a;
  --bg-white: #FEFDFB;
  --bg-cream: #F5F0E8;
  --bg-dark: #2C3E2D;
  --text-primary: #2C3E2D;
  --text-secondary: #6B7C6C;
  --text-white: #FEFDFB;
  --booking-blue: #003580;
  --star-gold: #FEBB02;
  --whatsapp: #25D366;
  --shadow-sm: 0 1px 3px rgba(44,62,45,0.08);
  --shadow-md: 0 4px 12px rgba(44,62,45,0.1);
  --shadow-lg: 0 8px 30px rgba(44,62,45,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { color: var(--text-primary); margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
  padding: 0 24px;
}
.navbar.scrolled {
  background: rgba(254,253,251,0.97);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
}
.navbar .nav-inner {
  max-width: var(--max-width); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.35rem; color: var(--text-white);
  transition: color 0.3s;
  white-space: nowrap;
}
.navbar.scrolled .nav-logo { color: var(--text-primary); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.9); transition: color 0.3s;
}
.navbar.scrolled .nav-links a { color: var(--text-secondary); }
.nav-links a:hover { color: var(--accent); }

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

.lang-toggle {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.15); border-radius: 20px;
  padding: 4px; font-size: 0.85rem; transition: background 0.3s;
}
.navbar.scrolled .lang-toggle { background: var(--bg-cream); }
.lang-toggle button {
  padding: 4px 10px; border-radius: 16px; font-size: 0.8rem;
  font-weight: 500; color: rgba(255,255,255,0.7); transition: all 0.3s;
  display: flex; align-items: center; gap: 4px;
}
.lang-toggle button .fi { font-size: 0.85rem; border-radius: 2px; }
.navbar.scrolled .lang-toggle button { color: var(--text-primary); }
.lang-toggle button.active {
  background: var(--primary); color: white;
}

.nav-cta {
  background: var(--accent); color: white !important;
  padding: 10px 20px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 0.9rem;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 28px; padding: 4px 0;
}
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: white; transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--text-primary); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(44,62,45,0.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-heading); font-size: 1.75rem;
  color: var(--text-white); font-weight: 500;
}
.mobile-menu .close-btn {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem; color: white;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta.desktop-only { display: none; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(44,62,45,0.35) 0%,
    rgba(44,62,45,0.2) 40%,
    rgba(44,62,45,0.5) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 80px 20px 100px; max-width: 800px;
}
.hero-content h1 {
  color: white; margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-content .subtitle {
  color: rgba(255,255,255,0.9); font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 32px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: white;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; box-shadow: 0 4px 15px rgba(196,135,59,0.3);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,135,59,0.4); }
.btn-secondary {
  background: rgba(255,255,255,0.15); color: white;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px;
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); }

.hero-badges {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(254,253,251,0.95);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
}
.hero-badges .badges-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-primary);
  white-space: nowrap;
}
.hero-badge .badge-icon { font-size: 1.2rem; }
.hero-badge-divider {
  width: 1px; height: 24px; background: rgba(44,62,45,0.15);
}
@media (max-width: 640px) {
  .hero-badge-divider { display: none; }
  .hero-badges .badges-inner { gap: 12px 20px; }
  .hero-badge { font-size: 0.8rem; }
}

/* Booking.com badge */
.booking-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--booking-blue); color: white;
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem;
}
.booking-badge .stars { color: var(--star-gold); }

/* ===== HIGHLIGHTS ===== */
.highlights { padding: 80px 0; background: var(--bg-cream); }
.highlights-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.highlight-card {
  background: white; border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(91,123,93,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.highlight-icon { font-size: 2rem; margin-bottom: 16px; }
.highlight-card h3 { margin-bottom: 8px; font-size: 1.35rem; }
.highlight-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

@media (max-width: 768px) {
  .highlights { padding: 60px 0; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card { padding: 24px; }
}

/* ===== APARTMENTS ===== */
.apartments { padding: 80px 0; }
.apartments-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.apt-card {
  background: white; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(91,123,93,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.apt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.apt-gallery {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.apt-gallery-track {
  display: flex; height: 100%;
  transition: transform 0.4s ease;
}
.apt-gallery-track img {
  flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover;
  cursor: pointer;
}
.apt-gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--shadow-sm);
  z-index: 2; opacity: 0; transition: opacity 0.3s;
}
.apt-card:hover .apt-gallery-btn { opacity: 1; }
.apt-gallery-btn.prev { left: 8px; }
.apt-gallery-btn.next { right: 8px; }
.apt-gallery-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 2;
}
.apt-gallery-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5); transition: background 0.3s;
}
.apt-gallery-dots span.active { background: white; }

.apt-info { padding: 20px; }
.apt-name {
  font-family: var(--font-heading); font-size: 1.35rem;
  font-weight: 600; margin-bottom: 8px;
}
.apt-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.apt-spec {
  background: var(--bg-cream); padding: 4px 12px;
  border-radius: 20px; font-size: 0.8rem; font-weight: 500;
  color: var(--text-secondary);
}

.apt-amenities-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px; margin-bottom: 12px;
}
.apt-amenity {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; background: var(--bg-cream);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.3s; font-size: 0.85rem; font-weight: 500;
}
.apt-amenity:hover { background: rgba(91,123,93,0.1); }
.apt-amenity-icon { font-size: 1.2rem; }
.apt-amenity-details {
  display: none; padding: 12px; background: var(--bg-cream);
  border-radius: var(--radius-sm); margin-top: -4px;
  font-size: 0.82rem; color: var(--text-secondary); line-height: 1.7;
}
.apt-amenity-details.open { display: block; }

@media (max-width: 1024px) { .apartments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .apartments { padding: 60px 0; }
  .apartments-grid { grid-template-columns: 1fr; }
}

/* ===== COMMON SPACES ===== */
.spaces { padding: 80px 0; background: var(--bg-cream); }
.spaces-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.space-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3;
}
.space-item.tall { grid-row: span 2; aspect-ratio: auto; }
.space-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.space-item:hover img { transform: scale(1.05); }
.space-item .space-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; color: white; font-weight: 600;
  background: linear-gradient(transparent, rgba(44,62,45,0.7));
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .spaces { padding: 60px 0; }
  .spaces-gallery { grid-template-columns: repeat(2, 1fr); }
  .space-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 480px) { .spaces-gallery { grid-template-columns: 1fr; } }

/* ===== LOCATION ===== */
.location { padding: 80px 0; }
.location-map {
  border-radius: var(--radius-xl); overflow: hidden;
  margin-bottom: 48px; box-shadow: var(--shadow-md);
  aspect-ratio: 16/7;
}
.location-map iframe { width: 100%; height: 100%; border: 0; }

.beaches-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.beach-card-photo {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid rgba(91,123,93,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none; color: inherit; display: block;
}
.beach-card-photo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.beach-img {
  height: 160px; background-size: cover; background-position: center;
  background-color: var(--primary-light);
  position: relative; display: flex; align-items: flex-end;
  justify-content: space-between; padding: 10px;
}
.beach-distance-tag {
  background: rgba(255,255,255,0.92); padding: 3px 10px;
  border-radius: 20px; font-size: 0.7rem; font-weight: 600;
  color: var(--primary); backdrop-filter: blur(4px);
}
.beach-badge-tag {
  background: #0077B6; color: white;
  padding: 3px 10px; border-radius: 20px;
  font-size: 0.65rem; font-weight: 600;
}
.beach-info { padding: 14px 16px; }
.beach-info h4 { font-size: 1rem; margin-bottom: 4px; color: var(--text-primary); }
.beach-info p { color: var(--text-secondary); font-size: 0.8rem; line-height: 1.5; margin: 0; }
}

.distances-row {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 32px; justify-content: center;
}
.distance-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-cream); padding: 10px 18px;
  border-radius: 24px; font-size: 0.85rem;
}
.distance-pill .icon { font-size: 1rem; }

@media (max-width: 768px) {
  .location { padding: 60px 0; }
  .location-map { aspect-ratio: 4/3; }
}

/* ===== REVIEWS ===== */
.reviews { padding: 80px 0; background: var(--bg-cream); }

.reviews-bars {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px; max-width: 600px;
  margin: 0 auto 32px;
}
.review-bar { display: flex; align-items: center; gap: 12px; }
.review-bar-label { font-size: 0.85rem; font-weight: 500; min-width: 120px; text-align: right; }
.review-bar-track {
  flex: 1; height: 8px; background: rgba(91,123,93,0.1);
  border-radius: 4px; overflow: hidden;
}
.review-bar-fill {
  height: 100%; background: var(--primary);
  border-radius: 4px; transition: width 1.2s ease;
  width: 0;
}
.review-bar-fill.animated { /* width set by JS */ }
.review-bar-value { font-size: 0.85rem; font-weight: 600; min-width: 32px; }

.reviews-carousel {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.review-card {
  background: white; border-radius: var(--radius-xl);
  padding: 18px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(91,123,93,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.review-card .review-stars { color: var(--star-gold); margin-bottom: 8px; font-size: 0.85rem; }
.review-card .review-text {
  font-size: 0.82rem; color: var(--text-primary);
  line-height: 1.55; margin-bottom: 12px;
  font-style: italic; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 5;
  -webkit-box-orient: vertical; overflow: hidden;
}
.review-card .review-author {
  display: flex; align-items: center; gap: 8px; margin-top: auto;
}
.review-card .review-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-cream); display: flex; align-items: center;
  justify-content: center; font-weight: 600; font-size: 0.85rem;
  color: var(--primary);
}
.review-card .review-meta { font-size: 0.75rem; }
.review-card .review-name { font-weight: 600; display: flex; align-items: center; gap: 4px; }
.review-card .review-name .fi { font-size: 0.8rem; border-radius: 2px; }
.review-card .review-source { color: var(--text-secondary); font-size: 0.7rem; }

.reviews-link {
  text-align: center; margin-top: 32px;
}
.reviews-link a {
  color: var(--booking-blue); font-weight: 600;
  font-size: 0.95rem; display: inline-flex;
  align-items: center; gap: 6px;
  transition: color 0.3s;
}
.reviews-link a:hover { color: var(--primary-dark); }

@media (max-width: 768px) {
  .reviews { padding: 60px 0; }
  .reviews-bars { grid-template-columns: 1fr; }
  .review-bar-label { min-width: 100px; }
  .reviews-carousel { grid-template-columns: repeat(2, 1fr); }
  .review-card { min-width: 0; }
}
@media (max-width: 580px) {
  .reviews-carousel { grid-template-columns: 1fr; }
}

/* ===== PRACTICAL INFO ===== */
.info { padding: 80px 0; }
.info-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; max-width: 800px; margin: 0 auto;
}
.info-accordion {
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid rgba(91,123,93,0.06);
}
.info-accordion-header {
  padding: 18px 20px; display: flex; align-items: center;
  justify-content: space-between; cursor: pointer;
  font-weight: 500; font-size: 0.95rem;
  transition: background 0.3s;
}
.info-accordion-header:hover { background: var(--bg-cream); }
.info-accordion-header .icon { margin-right: 12px; font-size: 1.1rem; }
.info-accordion-header .arrow {
  transition: transform 0.3s; font-size: 0.8rem; color: var(--text-secondary);
}
.info-accordion.open .info-accordion-header .arrow { transform: rotate(180deg); }
.info-accordion-body {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.info-accordion-body-inner {
  padding: 0 20px 18px;
  font-size: 0.88rem; color: var(--text-secondary); line-height: 1.8;
}
.info-accordion-body-inner strong { color: var(--text-primary); }

@media (max-width: 640px) {
  .info { padding: 60px 0; }
  .info-grid { grid-template-columns: 1fr; }
}

/* ===== BOOKING ===== */
.booking { padding: 80px 0; background: var(--bg-dark); color: var(--text-white); }
.booking .section-header h2 { color: var(--text-white); }
.booking .section-header p { color: rgba(254,253,251,0.7); }

.booking-layout {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 40px; align-items: start;
}
.booking-form-container {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-xl);
  padding: 32px; border: 1px solid rgba(255,255,255,0.1);
}

/* Calendar */
.calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.calendar-header h4 {
  font-family: var(--font-heading); font-size: 1.15rem;
  font-weight: 500; color: white;
}
.calendar-nav {
  display: flex; gap: 8px;
}
.calendar-nav button {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s; font-size: 0.9rem;
}
.calendar-nav button:hover { background: rgba(255,255,255,0.2); }

.calendar-months {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.calendar-month-title {
  text-align: center; font-weight: 500; font-size: 0.9rem;
  margin-bottom: 8px; color: rgba(255,255,255,0.8);
}
.calendar-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center; font-size: 0.7rem; font-weight: 500;
  color: rgba(255,255,255,0.4); margin-bottom: 4px;
}
.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.8rem;
  border-radius: 50%; cursor: pointer;
  transition: all 0.2s; color: rgba(255,255,255,0.8);
}
.calendar-day:hover:not(.disabled):not(.empty) { background: rgba(255,255,255,0.15); }
.calendar-day.disabled { color: rgba(255,255,255,0.2); cursor: default; }
.calendar-day.empty { cursor: default; }
.calendar-day.today { border: 1px solid var(--accent); }
.calendar-day.selected { background: var(--accent); color: white; font-weight: 600; }
.calendar-day.in-range { background: rgba(196,135,59,0.2); border-radius: 0; }
.calendar-day.range-start { background: var(--accent); color: white; border-radius: 50% 0 0 50%; }
.calendar-day.range-end { background: var(--accent); color: white; border-radius: 0 50% 50% 0; }
.calendar-day.range-start.range-end { border-radius: 50%; }

.booking-summary {
  background: rgba(196,135,59,0.15); border-radius: var(--radius-sm);
  padding: 12px 16px; margin: 16px 0;
  display: flex; align-items: center; gap: 16px;
  font-size: 0.85rem; flex-wrap: wrap;
  border: 1px solid rgba(196,135,59,0.3);
  display: none;
}
.booking-summary.visible { display: flex; }

.guest-controls {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin: 16px 0;
}
.guest-control {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.06); border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.guest-control label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.stepper {
  display: flex; align-items: center; gap: 10px;
}
.stepper button {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background 0.2s;
}
.stepper button:hover { background: rgba(255,255,255,0.3); }
.stepper span { font-weight: 600; font-size: 0.95rem; min-width: 20px; text-align: center; }

.booking-fields {
  display: grid; gap: 12px; margin: 16px 0;
}
.booking-field input {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm); color: white;
  font-size: 0.9rem; font-family: var(--font-body);
  transition: border-color 0.3s;
}
.booking-field input::placeholder { color: rgba(255,255,255,0.4); }
.booking-field input:focus {
  outline: none; border-color: var(--accent);
}

/* ===== AVAILABILITY RESULTS ===== */
.availability-results {
  margin: 12px 0; display: none;
}
.availability-results.visible { display: block; }
.availability-results .avail-loading {
  text-align: center; color: rgba(255,255,255,0.7);
  font-size: 0.85rem; padding: 12px 0;
}
.avail-summary {
  padding: 10px 14px; border-radius: 10px; margin-bottom: 10px;
  font-size: 0.85rem; color: white;
}
.avail-summary.has-available { background: rgba(37,211,102,0.12); }
.avail-summary.none-available { background: rgba(255,80,80,0.12); }
.avail-summary-icon { margin-right: 4px; }
.availability-results .avail-room {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.06); border-radius: 8px;
  padding: 10px 14px; margin-bottom: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}
.availability-results .avail-room.unavailable { opacity: 0.5; }
.avail-room-info { display: flex; flex-direction: column; gap: 2px; }
.avail-room-name { color: white; font-weight: 600; font-size: 0.9rem; }
.avail-room-details { color: rgba(255,255,255,0.55); font-size: 0.75rem; }
.avail-room-price { color: var(--accent); font-weight: 700; font-size: 1rem; }
.avail-room-status {
  font-size: 0.75rem; font-weight: 600; padding: 3px 10px;
  border-radius: 12px;
}
.avail-room-status.available { background: rgba(37,211,102,0.15); color: #25d366; }
.avail-room-status.unavailable { background: rgba(255,80,80,0.15); color: #ff5050; }
.avail-error {
  text-align: center; color: rgba(255,255,255,0.5);
  font-size: 0.8rem; padding: 8px 0;
}

.btn-book {
  width: 100%; padding: 16px;
  background: var(--accent); color: white;
  border-radius: var(--radius-sm); font-weight: 600;
  font-size: 1rem; transition: all 0.3s;
  margin-top: 8px;
}
.btn-book:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-book:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-note {
  text-align: center; font-size: 0.78rem;
  color: rgba(255,255,255,0.45); margin-top: 10px;
}

.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.visible { display: block; }
.form-success .check { font-size: 3rem; margin-bottom: 12px; }
.form-success h3 { color: white; margin-bottom: 8px; }
.form-success p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* Right column — contact */
.booking-contact { display: flex; flex-direction: column; gap: 16px; }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 24px;
  background: var(--whatsapp); color: white;
  border-radius: var(--radius-sm); font-weight: 600;
  font-size: 1rem; transition: all 0.3s;
}
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }
.btn-whatsapp svg { width: 24px; height: 24px; }

.contact-card {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid rgba(255,255,255,0.1);
}
.contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .ci-icon { font-size: 1.2rem; min-width: 24px; text-align: center; }
.contact-item a { color: var(--accent-light); transition: color 0.3s; }
.contact-item a:hover { color: var(--accent); }

.btn-booking-link {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 24px;
  background: var(--booking-blue); color: white;
  border-radius: var(--radius-sm); font-weight: 500;
  font-size: 0.9rem; transition: all 0.3s;
}
.btn-booking-link:hover { background: #002a66; transform: translateY(-1px); }

@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; }
  .calendar-months { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .booking-form-container { padding: 20px; }
  .guest-controls { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer {
  background: #1a2b1b; color: var(--text-white); padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  font-family: var(--font-heading); font-size: 1.5rem;
  font-weight: 700; margin-bottom: 8px;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.6; }
.footer h4 {
  font-size: 1rem; font-weight: 600; margin-bottom: 16px;
  color: rgba(255,255,255,0.7);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5); font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }

.footer-booking-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--booking-blue); color: white;
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-size: 0.85rem; font-weight: 600; margin-top: 12px;
}

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.footer-socials a:hover { background: var(--accent); color: white; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: 8px;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: white; font-size: 2rem; cursor: pointer;
  width: 44px; height: 44px; display: flex;
  align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.lightbox-close:hover { transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: white; font-size: 2rem; cursor: pointer;
  width: 48px; height: 48px; display: flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); border-radius: 50%;
  transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== SOCIAL PROOF STRIP ===== */
.social-strip {
  background: var(--bg-dark); padding: 28px 0;
}
.social-strip-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
}
.social-stat { text-align: center; }
.social-stat-number {
  display: block; font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700; color: var(--accent);
  line-height: 1.1;
}
.social-stat-label {
  font-size: 0.78rem; color: rgba(254,253,251,0.6);
  font-weight: 500;
}
@media (max-width: 640px) {
  .social-strip-inner { gap: 20px 32px; }
  .social-stat-number { font-size: 1.5rem; }
}

/* ===== INLINE QUOTE ===== */
.inline-quote {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin-top: 16px;
  flex-wrap: wrap;
}
.inline-quote-text {
  font-style: italic; color: var(--text-secondary);
  font-size: 0.9rem;
}
.inline-quote-author {
  font-size: 0.8rem; font-weight: 600; color: var(--primary);
  display: flex; align-items: center; gap: 4px;
}

/* ===== PROOF BANNER ===== */
.proof-banner {
  background: var(--primary-dark); padding: 48px 0;
  color: var(--text-white); overflow: hidden;
}
.proof-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.proof-banner-quote { flex: 1; min-width: 280px; }
.proof-quote-mark {
  font-family: var(--font-heading); font-size: 4rem;
  color: var(--accent); line-height: 0.5; display: block;
  margin-bottom: 8px; opacity: 0.6;
}
.proof-banner-quote p {
  font-size: 1.15rem; line-height: 1.7;
  font-style: italic; color: rgba(254,253,251,0.9);
}
.proof-quote-author {
  margin-top: 12px; font-size: 0.85rem; font-weight: 600;
  color: var(--accent-light);
  display: flex; align-items: center; gap: 4px;
}
.proof-banner-badges {
  display: flex; flex-direction: column; gap: 12px;
}
.proof-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.1); padding: 14px 20px;
  border-radius: var(--radius-md); min-width: 200px;
}
.proof-badge-icon { font-size: 1.5rem; }
.proof-badge-score { font-weight: 700; font-size: 1rem; }
.proof-badge-source { font-size: 0.75rem; opacity: 0.6; }
.proof-badge.guests-choice {
  background: linear-gradient(135deg, rgba(196,135,59,0.25), rgba(196,135,59,0.1));
  border: 1px solid rgba(196,135,59,0.3);
}
@media (max-width: 768px) {
  .proof-banner { padding: 36px 0; }
  .proof-banner-inner { justify-content: center; text-align: center; }
  .proof-banner-quote { text-align: center; }
  .proof-quote-mark { display: inline; }
  .proof-quote-author { justify-content: center; }
  .proof-banner-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}

/* ===== BOOKING TRUST ROW ===== */
.booking-trust-row {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-top: 16px;
}
.booking-trust-pill {
  background: rgba(255,255,255,0.1); color: rgba(254,253,251,0.85);
  padding: 6px 16px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ===== FLOATING BADGE ===== */
.floating-badge {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  display: flex; align-items: center; gap: 8px;
  background: var(--booking-blue); color: white;
  padding: 10px 16px; border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,53,128,0.4);
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0; transform: translateY(20px);
}
.floating-badge.visible {
  opacity: 1; transform: translateY(0);
}
.floating-badge:hover { transform: translateY(-3px); }
.floating-badge-score {
  font-family: var(--font-heading); font-size: 1.5rem;
  font-weight: 700; color: var(--star-gold); line-height: 1;
}
.floating-badge-text {
  font-size: 0.7rem; font-weight: 500; line-height: 1.3;
}
.floating-badge-text small { opacity: 0.7; }
@media (max-width: 480px) {
  .floating-badge { bottom: 16px; right: 16px; padding: 8px 12px; }
  .floating-badge-score { font-size: 1.2rem; }
}

/* ===== PLATFORM CARDS ===== */
.platforms-row {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.platform-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: var(--radius-xl);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none; color: white;
}
.platform-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.platform-logo {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  flex-shrink: 0;
}
.platform-booking { background: var(--booking-blue); }
.platform-booking .platform-logo { background: rgba(255,255,255,0.15); }
.platform-google { background: #1a73e8; }
.platform-google .platform-logo { background: rgba(255,255,255,0.15); }
.platform-airbnb { background: #FF5A5F; }
.platform-airbnb .platform-logo { background: rgba(255,255,255,0.15); }

.platform-name { font-size: 0.8rem; opacity: 0.7; font-weight: 500; }
.platform-score-row { display: flex; align-items: baseline; gap: 8px; }
.platform-score {
  font-family: var(--font-heading); font-size: 1.4rem;
  font-weight: 700; line-height: 1.1;
}
.platform-score small { font-size: 0.75rem; opacity: 0.6; }
.platform-label { font-size: 0.85rem; opacity: 0.8; }
.platform-stars { color: var(--star-gold); font-size: 0.9rem; letter-spacing: 1px; }
.platform-count { font-size: 0.75rem; opacity: 0.6; margin-top: 2px; }

@media (max-width: 768px) {
  .platforms-row { grid-template-columns: 1fr; }
  .platform-card { padding: 16px 20px; }
  .platform-score { font-size: 1.5rem; }
}

/* ===== AIRBNB BUTTON ===== */
.btn-airbnb-link {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 24px;
  background: #FF5A5F; color: white;
  border-radius: var(--radius-sm); font-weight: 500;
  font-size: 0.9rem; transition: all 0.3s;
}
.btn-airbnb-link:hover { background: #e04950; transform: translateY(-1px); }

/* ===== SCORING PILLS ===== */
.score-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-top: 16px;
}
.score-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; padding: 6px 14px;
  border-radius: 20px; font-size: 0.8rem; font-weight: 600;
  color: var(--text-primary); box-shadow: var(--shadow-sm);
}

/* ===== UTILITY ===== */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mb-4 { margin-bottom: 16px; }

/* Selection color */
::selection { background: rgba(91,123,93,0.2); }

/* Focus styles */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

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