/* ==========================================
   SANTA MARINA 302 - TOURIST LANDING PAGE CSS
   ========================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette: Ocean Coastal & Luxury Dark/Light */
  --primary-navy: #0F2C3A;
  --primary-teal: #00A896;
  --teal-light: #02C39A;
  --teal-glow: rgba(0, 168, 150, 0.25);
  
  --coral-accent: #E76F51;
  --coral-hover: #D85A3B;
  --gold-warm: #F4A261;
  
  --airbnb-brand: #FF385C;
  --airbnb-hover: #E00B41;
  --whatsapp-brand: #25D366;
  --whatsapp-hover: #1DA851;
  
  --bg-sand-light: #F8F9FA;
  --bg-card: #FFFFFF;
  --bg-dark-section: #0B1E28;
  
  --text-dark: #1A2E3B;
  --text-muted: #5C7080;
  --text-light: #F1F5F9;
  
  --border-light: #E2E8F0;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(15, 44, 58, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 44, 58, 0.1);
  --shadow-lg: 0 16px 40px rgba(15, 44, 58, 0.15);
  --shadow-glow: 0 0 25px rgba(0, 168, 150, 0.3);
  
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

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

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* --- Typography Helpers --- */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.center {
  text-align: center;
}

.sub-heading {
  display: inline-block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--primary-teal);
  background: rgba(0, 168, 150, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.main-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px auto;
}

/* --- Announcement Bar --- */
.announcement-bar {
  background: linear-gradient(90deg, #0F2C3A 0%, #00A896 50%, #0F2C3A 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-bar .bar-link {
  color: var(--gold-warm);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.announcement-bar .bar-link:hover {
  text-decoration: underline;
}

/* --- Main Header Navigation --- */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: var(--transition-fast);
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
  color: #FFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0, 168, 150, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-navy);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--primary-teal);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-whatsapp-quick {
  background: rgba(37, 211, 102, 0.12);
  color: var(--whatsapp-hover);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-whatsapp-quick:hover {
  background: var(--whatsapp-brand);
  color: #FFF;
}

.btn-airbnb-header {
  background: linear-gradient(135deg, var(--airbnb-brand), #D70466);
  color: #FFF;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(255, 56, 92, 0.35);
  transition: var(--transition-fast);
}

.btn-airbnb-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 56, 92, 0.45);
}

.hamburger-menu {
  display: none;
  font-size: 1.4rem;
  color: var(--primary-navy);
  padding: 8px;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  padding: 80px 0;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 8s ease;
  transform: scale(1.05);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(15, 44, 58, 0.65) 0%,
    rgba(15, 44, 58, 0.85) 70%,
    rgba(11, 30, 40, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.highlight-item {
  background: rgba(0, 168, 150, 0.2);
  border: 1px solid rgba(0, 168, 150, 0.4);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-airbnb {
  background: linear-gradient(135deg, var(--airbnb-brand), #E00B41);
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 56, 92, 0.45);
  transition: var(--transition-fast);
}

.btn-primary-airbnb:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 56, 92, 0.55);
}

.btn-secondary-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-brand), #1DA851);
  color: #FFF;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  transition: var(--transition-fast);
}

.btn-secondary-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.btn-tertiary {
  background: rgba(255, 255, 255, 0.15);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-tertiary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;

  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* --- Logo Styling --- */
.header-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.header-logo-img:hover {
  transform: scale(1.03);
}

.hero-logo-eslogan {
  max-width: 340px;
  width: 85%;
  height: auto;
  margin: 0 auto 20px auto;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
}

.footer-logo-img {
  max-width: 260px;
  width: 90%;
  height: auto;
  margin-bottom: 16px;
  display: block;
}
.overview-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 24px 0;
  gap: 16px;
}

.overview-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-right: 1px solid var(--border-light);
}

.overview-item:last-child {
  border-right: none;
}

.overview-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 168, 150, 0.1);
  color: var(--primary-teal);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.overview-text {
  display: flex;
  flex-direction: column;
}

.overview-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-navy);
  line-height: 1.2;
}

.overview-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Apartment Details & Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 168, 150, 0.3);
}

.feature-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card:hover .feature-img img {
  transform: scale(1.08);
}

.feature-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 44, 58, 0.85);
  backdrop-filter: blur(6px);
  color: #FFF;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-content {
  padding: 24px;
}

.feature-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-content h3 i {
  color: var(--primary-teal);
}

.feature-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Interactive Gallery --- */
.gallery-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  background: #EBF1F5;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  background: rgba(0, 168, 150, 0.15);
  color: var(--primary-teal);
}

.tab-btn.active {
  background: var(--primary-teal);
  color: #FFF;
  box-shadow: 0 4px 14px rgba(0, 168, 150, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: #0B1E28;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  animation: fadeInCard 0.5s ease-out forwards;
}

@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 168, 150, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(15, 44, 58, 0.9) 0%, rgba(15, 44, 58, 0.2) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-item-info {
  color: #FFF;
  width: 100%;
}

.gallery-item-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
}

.gallery-item-zoom {
  font-size: 0.85rem;
  color: var(--teal-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.gallery-footer {
  text-align: center;
}

.btn-load-more {
  background: var(--primary-navy);
  color: #FFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
}

.btn-load-more:hover {
  background: var(--primary-teal);
  transform: translateY(-2px);
}

/* --- Amenities Grid --- */
.amenities-section {
  background: #FFFFFF;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.amenity-card {
  background: var(--bg-sand-light);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.amenity-card:hover {
  background: #FFF;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary-teal);
}

.amenity-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0, 168, 150, 0.15), rgba(15, 44, 58, 0.1));
  color: var(--primary-teal);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.amenity-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

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

/* --- Location & Map --- */
.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
}

.location-address {
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 16px;
  line-height: 1.5;
}

.location-address i {
  color: var(--coral-accent);
  margin-right: 6px;
}

.location-text {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.points-of-interest h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 14px;
}

.points-of-interest ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.points-of-interest li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.points-of-interest li strong {
  color: var(--primary-teal);
  font-weight: 700;
}

.btn-google-maps {
  background: #4285F4;
  color: #FFF;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(66, 133, 244, 0.35);
  width: fit-content;
}

.btn-google-maps:hover {
  background: #3367D6;
  transform: translateY(-2px);
}

.location-map-card {
  background: #FFF;
  padding: 12px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

/* --- Reviews & Superhost Badge --- */
.reviews-section {
  background: var(--bg-sand-light);
}

.superhost-badge-banner {
  background: linear-gradient(135deg, #0F2C3A, #1A4052);
  color: #FFF;
  padding: 32px 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}

.badge-icon {
  font-size: 2.8rem;
  color: var(--airbnb-brand);
}

.badge-text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.badge-text p {
  opacity: 0.85;
  font-size: 0.95rem;
}

.badge-btn {
  background: var(--airbnb-brand);
  color: #FFF;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge-btn:hover {
  background: var(--airbnb-hover);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.review-card {
  background: #FFF;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #FFB800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
  color: #FFF;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.reviewer div {
  display: flex;
  flex-direction: column;
}

.reviewer strong {
  font-size: 0.95rem;
  color: var(--primary-navy);
}

.reviewer span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Final Call To Action Banner --- */
.cta-banner-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #06151E 100%);
  color: #FFF;
  padding: 80px 0;
  text-align: center;
}

.cta-container {
  max-width: 820px;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.15rem;
  opacity: 0.88;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-airbnb {
  background: linear-gradient(135deg, var(--airbnb-brand), #D70466);
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 56, 92, 0.4);
}

.btn-cta-airbnb:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 56, 92, 0.5);
}

.btn-cta-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-brand), #1DA851);
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
}

.btn-cta-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.btn-cta-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp-brand), #1DA851);
  color: #FFF;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-cta-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* --- Footer --- */
.main-footer {
  background: #07151E;
  color: #A0AEC0;
  padding: 70px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.brand-col h3 {
  font-family: var(--font-heading);
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.brand-col p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--primary-teal);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #FFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: #A0AEC0;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--primary-teal);
}

.footer-note {
  font-size: 0.88rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  background: #040D13;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

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

/* --- Lightbox Modal Upgrade --- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 20, 28, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 16px;
  user-select: none;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-top-bar {
  width: 100%;
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  z-index: 10010;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lightbox-btn {
  color: #FFF;
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-btn:hover {
  background: var(--primary-teal);
  transform: scale(1.08);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #FFF;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10010;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-nav:hover {
  background: var(--primary-teal);
  box-shadow: 0 0 20px rgba(0, 168, 150, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }

.lightbox-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.lightbox-img-wrapper {
  max-width: 100%;
  max-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.lightbox-img-wrapper img {
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.lightbox-img-wrapper.zoomed img {
  cursor: zoom-out;
  transform: scale(1.5);
}

.lightbox-caption {
  color: #FFFFFF;
  margin-top: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-thumbnails-wrapper {
  width: 100%;
  max-width: 900px;
  overflow-x: auto;
  padding: 12px 0;
  z-index: 10010;
  scrollbar-width: thin;
}

.lightbox-thumbnails {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 0 10px;
}

.lightbox-thumb {
  width: 60px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.5;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-thumb:hover {
  opacity: 0.85;
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--primary-teal);
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(0, 168, 150, 0.6);
}

/* --- WhatsApp Custom Modal --- */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2500;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.custom-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 44, 58, 0.75);
  backdrop-filter: blur(6px);
}

.modal-card {
  position: relative;
  z-index: 2510;
  background: #FFF;
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.3rem;
  color: var(--text-muted);
}

.modal-close:hover {
  color: var(--primary-navy);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon-wa {
  width: 60px;
  height: 60px;
  background: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px auto;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary-navy);
  font-weight: 800;

  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.wa-config-box {
  background: var(--bg-sand-light);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.wa-config-box p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.wa-textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
}

.wa-number-input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
}

.input-with-icon input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
}

.help-text {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.modal-footer {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-send-wa {
  background: var(--whatsapp-brand);
  color: #FFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-send-wa:hover {
  background: var(--whatsapp-hover);
}

.btn-alt-airbnb {
  text-align: center;
  color: var(--airbnb-brand);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px;
}

.btn-alt-airbnb:hover {
  text-decoration: underline;
}

/* --- Floating WhatsApp Widget --- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--whatsapp-brand), #1DA851);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 2000;
  transition: var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-tooltip {
  position: absolute;
  right: 72px;
  background: var(--primary-navy);
  color: #FFF;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floating-whatsapp:hover .floating-tooltip {
  opacity: 1;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.6rem;
  }
  
  .location-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background: #FFF;
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: left 0.4s ease;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger-menu {
    display: block;
  }
  
  .hide-mobile {
    display: none;
  }
  
  .hero-title {
    font-size: 2.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .superhost-badge-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}
