/*
Theme Name: ELTIJE - Luxury Hospitality & Business Center
Theme URI: http://localhost/eltije/
Author: Antigravity Suite & Team
Author URI: http://localhost/eltije/
Description: Plataforma integral de gestión de reservas vacacionales (noches) y Business Center (horas/días) para Alvin Obersi.
Version: 2.2.0
License: GNU General Public License v2 or later
Text Domain: eltije-resort
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --airbnb-pink: #FF385C;
  --airbnb-pink-hover: #E31C5F;
  --dark: #222222;
  --text: #717171;
  --text-light: #B0B0B0;
  --border: #DDDDDD;
  --border-light: #EBEBEB;
  --bg-light: #F7F7F7;
  --bg-white: #FFFFFF;
  --success: #008A05;
  --star: #FF385C;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-lg: 0 6px 20px rgba(0,0,0,0.14);
  --shadow-xl: 0 10px 36px rgba(0,0,0,0.16);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  
  --transition: all 0.2s ease;
  --transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-main);
  color: var(--dark);
  background: var(--bg-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

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

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

button {
  font-family: var(--font-main);
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 80px;
}

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

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

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 8px 0;
  gap: 28px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 74px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(15, 23, 42, 0.12));
  transition: filter 0.25s ease, transform 0.25s ease;
}

.brand-logo:hover .brand-logo-img {
  filter: drop-shadow(0 6px 18px rgba(0, 180, 216, 0.35));
  transform: scale(1.03);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  justify-content: center;
}

.brand-name-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--dark);
  text-transform: uppercase;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-name-sub {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: #00b4d8;
  text-transform: uppercase;
  margin-top: 3px;
}

@media (max-width: 950px) {
  .header-inner {
    min-height: 84px;
    gap: 16px;
  }
  .brand-logo-img {
    height: 60px;
  }
  .brand-name-title {
    font-size: 20px;
  }
  .brand-name-sub {
    font-size: 8.5px;
  }
}

@media (max-width: 650px) {
  .header-inner {
    min-height: 76px;
  }
  .brand-logo-img {
    height: 52px;
  }
  .brand-name-title {
    font-size: 18px;
    letter-spacing: 1.5px;
  }
  .brand-name-sub {
    display: none;
  }
}

/* Search Bar Airbnb Style */
.search-bar-airbnb {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
  transition: var(--transition);
  overflow: hidden;
  flex: 1;
  max-width: 600px;
}

.search-bar-airbnb:hover {
  box-shadow: var(--shadow-md);
}

.search-tab-airbnb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  border-right: 1px solid var(--border-light);
  transition: var(--transition);
}

.search-tab-airbnb:last-child {
  border-right: none;
}

.search-tab-airbnb.active {
  background: var(--bg-light);
}

.search-tab-airbnb:hover {
  background: var(--bg-light);
}

.search-field-airbnb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  border-right: 1px solid var(--border-light);
  flex: 1;
  transition: var(--transition);
}

.search-field-airbnb:last-of-type {
  border-right: none;
}

.search-field-airbnb:hover {
  background: var(--bg-light);
}

.search-field-airbnb label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.search-field-airbnb input,
.search-field-airbnb select {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  outline: none;
  width: 100%;
  cursor: pointer;
}

.search-btn-airbnb {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--airbnb-pink);
  color: white;
  border: none;
  padding: 12px 20px;
  margin: 6px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.search-btn-airbnb:hover {
  background: var(--airbnb-pink-hover);
  transform: scale(1.02);
}

.search-btn-airbnb svg {
  width: 16px;
  height: 16px;
  fill: white;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  font-size: 14px;
  font-weight: 600;
}

.lang-switch:hover {
  background: var(--bg-light);
}

.lang-switch a {
  padding: 4px 8px;
  border-radius: var(--radius-full);
}

.lang-switch a.active {
  background: var(--dark);
  color: white;
}

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-whatsapp-header:hover {
  background: #1DA851;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 12px 14px;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  box-shadow: var(--shadow-sm);
}

.mobile-menu-toggle span {
  width: 16px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 950px) {
  .header-inner {
    height: 66px;
  }
  
  .search-bar-airbnb {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .btn-whatsapp-header span {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90vw;
  height: 100%;
  background: var(--bg-white);
  padding: 24px;
  overflow-y: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  float: right;
  padding: 8px;
  color: var(--dark);
}

.mobile-nav-links {
  list-style: none;
  margin-top: 48px;
}

.mobile-nav-links li {
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-links a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.mobile-wa-btn {
  display: block;
  text-align: center;
  margin-top: 24px;
  background: #25D366;
  color: white;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #FCF3F5 0%, #F7F7F7 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 460px;
  height: 520px;
  background-image: url('assets/images/logo-eltije.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 56, 92, 0.1);
  color: var(--airbnb-pink);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.hero-title span {
  color: var(--airbnb-pink);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Search Container */
.search-container {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.search-tabs {
  display: flex;
  gap: 4px;
  padding: 8px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--bg-white);
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover:not(.active) {
  background: rgba(255,255,255,0.5);
}

.search-form {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
  gap: 0;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.search-field {
  padding: 14px 24px;
  border-right: 1px solid var(--border-light);
  transition: var(--transition);
}

.search-field:hover {
  background: var(--bg-light);
}

.search-field:last-of-type {
  border-right: none;
}

.search-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 4px;
}

.search-field select,
.search-field input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  outline: none;
  cursor: pointer;
}

.btn-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--airbnb-pink);
  color: white;
  border: none;
  padding: 16px 24px;
  margin: 8px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-search:hover {
  background: var(--airbnb-pink-hover);
  transform: scale(1.02);
}

@media (max-width: 950px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .search-form {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }
  
  .search-field {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
}

/* ========== CATEGORY FILTERS (Airbnb Style) ========== */
.category-filters {
  display: flex;
  gap: 32px;
  padding: 16px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.category-filters::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.7;
  flex-shrink: 0;
}

.category-item:hover,
.category-item.active {
  opacity: 1;
  border-bottom-color: var(--dark);
}

.category-icon {
  font-size: 24px;
}

.category-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.category-item.active .category-label {
  color: var(--dark);
}

/* ========== SECTIONS ========== */
.section {
  padding: 60px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--airbnb-pink);
  margin-bottom: 12px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 16px;
  color: var(--text);
  max-width: 600px;
}

/* ========== DESTINATIONS GRID ========== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-slow);
  aspect-ratio: 1;
}

.dest-card:hover {
  transform: scale(1.02);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.dest-card:hover img {
  transform: scale(1.05);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: white;
}

.dest-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.dest-card-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.dest-card-count {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

/* ========== PROPERTY CARDS (Airbnb Style) ========== */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.property-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.property-card:hover {
  transform: translateY(-4px);
}

.property-img-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}

.property-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.property-card:hover .property-img-wrap img {
  transform: scale(1.05);
}

/* Favorite Heart Button */
.property-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.property-favorite:hover {
  background: rgba(0,0,0,0.7);
  transform: scale(1.1);
}

.property-favorite svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

.property-favorite.active svg {
  fill: var(--airbnb-pink);
  stroke: var(--airbnb-pink);
}

/* Property Tags */
.property-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.95);
  color: var(--dark);
}

.tag-airbnb {
  background: var(--airbnb-pink);
  color: white;
}

.tag-dest {
  background: rgba(0,0,0,0.7);
  color: white;
}

.tag-guest-favorite {
  background: white;
  color: var(--dark);
  font-weight: 700;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.carousel-dot.active {
  background: white;
  transform: scale(1.3);
}

/* Property Price Tag */
.property-price-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
}

.price-val {
  font-size: 16px;
  font-weight: 700;
}

.price-unit {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
}

/* Property Body */
.property-body {
  padding: 0 4px;
}

.property-location {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.property-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-title a {
  color: inherit;
}

.property-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}

.property-rating svg {
  width: 12px;
  height: 12px;
  fill: var(--dark);
}

.property-features {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-item {
  display: inline;
}

.feature-item:not(:last-child)::after {
  content: ' · ';
  color: var(--text-light);
}

.property-price {
  font-size: 14px;
  color: var(--dark);
  margin-top: 8px;
}

.property-price strong {
  font-weight: 700;
}

.property-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.btn-book {
  flex: 1;
  background: var(--dark);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-book:hover {
  background: var(--airbnb-pink);
  transform: translateY(-1px);
}

.btn-whatsapp-unit {
  width: 44px;
  height: 44px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.btn-whatsapp-unit:hover {
  background: #1DA851;
  transform: scale(1.05);
}

/* Business Center Cards */
.bc-card {
  border-left: 3px solid var(--airbnb-pink);
}

.bc-card .btn-book {
  background: var(--airbnb-pink);
}

.bc-card .btn-book:hover {
  background: var(--airbnb-pink-hover);
}

/* ========== FEATURES GRID ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.feature-box {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.feature-box:hover {
  background: var(--bg-light);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

/* ========== PAYMENT SECTION ========== */
.payment-section {
  background: var(--bg-light);
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
}

.payment-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.payment-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.payment-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pay-badge {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

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

.footer-brand h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--dark);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--airbnb-pink);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text);
}

.footer-bottom a {
  color: var(--text);
  margin-left: 16px;
}

.footer-bottom a:hover {
  color: var(--dark);
  text-decoration: underline;
}

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

/* ========== FLOATING WHATSAPP ========== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

/* ========== MODAL (Airbnb Style) ========== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.modal-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-light);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--border);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  background: var(--bg-light);
  padding: 60px 0;
}

/* ========== SINGLE PROPERTY ========== */
.single-property {
  padding: 24px 0 60px;
}

.sp-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

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

.sp-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  background: #f0f0f0;
}

.sp-gallery-main {
  height: 100%;
  min-height: 420px;
  max-height: 480px;
}

.sp-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sp-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 100%;
  min-height: 420px;
  max-height: 480px;
}

.sp-gallery-item {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.sp-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sp-gallery-main img:hover,
.sp-gallery-grid img:hover {
  filter: brightness(0.92);
}

.sp-gallery-more-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--dark);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.18);
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  z-index: 5;
}

.sp-gallery-more-btn:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

@media (max-width: 860px) {
  .sp-gallery {
    grid-template-columns: 1fr;
  }
  .sp-gallery-grid {
    display: none;
  }
  .sp-gallery-main {
    min-height: 280px;
    max-height: 340px;
  }
}

.sp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.sp-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
}

.sp-dest-badge {
  display: inline-block;
  background: var(--bg-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}

.sp-quick-facts {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text);
}

.sp-content {
  margin-bottom: 32px;
}

.sp-content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.sp-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

/* Sidebar Booking Widget */
.sp-sidebar {
  position: sticky;
  top: 100px;
}

.sp-booking-widget {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.sp-price-display {
  margin-bottom: 20px;
}

.sp-price-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.sp-price-unit {
  font-size: 14px;
  color: var(--text);
}

.sp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.sp-form-field {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}

.sp-form-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}

.sp-form-field input {
  width: 100%;
  border: none;
  font-size: 14px;
  font-weight: 600;
  outline: none;
}

.sp-book-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--airbnb-pink), var(--airbnb-pink-hover));
  color: white;
  border: none;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 16px;
}

.sp-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.sp-wa-btn {
  display: block;
  text-align: center;
  margin-top: 12px;
  background: #25D366;
  color: white;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: var(--transition);
}

.sp-wa-btn:hover {
  background: #1DA851;
}

/* ========== LIGHTBOX ========== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}

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

/* ========== CONFIRMATION PAGE ========== */
.confirmation-page {
  padding: 60px 0;
  min-height: 70vh;
}

.confirmation-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.conf-icon {
  width: 64px;
  height: 64px;
  background: #E8F5E9;
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.conf-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.conf-code {
  background: var(--bg-light);
  border: 2px dashed var(--airbnb-pink);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 24px 0;
}

.conf-code-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--airbnb-pink);
  letter-spacing: 2px;
}

.conf-details {
  text-align: left;
  margin: 24px 0;
}

.conf-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.conf-total-row {
  border-bottom: none;
  border-top: 2px solid var(--border);
  margin-top: 8px;
  padding-top: 16px;
  font-weight: 700;
  font-size: 18px;
}

.conf-total {
  color: var(--airbnb-pink);
}

.conf-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  margin: 8px;
  transition: var(--transition);
}

.conf-btn-print {
  background: var(--dark);
  color: white;
}

.conf-btn-home {
  background: var(--bg-light);
  color: var(--dark);
}

/* ========== BREADCRUMB ========== */
.breadcrumb-nav {
  padding: 16px 0;
  font-size: 14px;
  color: var(--text);
}

.breadcrumb-nav a {
  color: var(--text);
}

.breadcrumb-nav a:hover {
  color: var(--dark);
  text-decoration: underline;
}

/* ========== DESTINATION PAGE ========== */
.dest-hero {
  padding: 80px 0;
  color: white;
  text-align: center;
}

.dest-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.dest-hero-count {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
}

.dest-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

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

.dest-filter-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.dest-filter-group {
  margin-bottom: 16px;
}

.dest-filter-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}

.dest-filter-group input,
.dest-filter-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.dest-filter-btn {
  width: 100%;
  background: var(--dark);
  color: white;
  border: none;
  padding: 12px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.dest-filter-btn:hover {
  background: var(--airbnb-pink);
}

/* ========== EXECUTIVE HEADER FOR BUSINESS CENTER (OBERSI) ========== */
.site-header.site-header-bc {
  background: rgba(10, 25, 47, 0.96) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45) !important;
}

.brand-logo-obersi {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-obersi-img {
  height: 52px;
  width: auto;
  max-width: 290px;
  filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand-logo-obersi:hover .brand-logo-obersi-img {
  transform: scale(1.02);
  filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(255, 255, 255, 0.3));
}

.site-header-bc .brand-logo-bc-img {
  filter: brightness(0) invert(1) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5));
}

.site-header-bc .brand-logo:hover .brand-logo-bc-img {
  filter: brightness(0) invert(1) drop-shadow(0 6px 18px rgba(255, 255, 255, 0.3));
}

.site-header-bc .search-bar-airbnb {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.site-header-bc .search-tab-airbnb {
  color: rgba(255, 255, 255, 0.75);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
  transition: all 0.2s ease;
}

.site-header-bc .search-tab-airbnb:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.site-header-bc .search-tab-airbnb.active {
  background: linear-gradient(135deg, #EF4444 0%, #BE123C 100%) !important;
  color: #ffffff !important;
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(239, 68, 68, 0.45);
}

.site-header-bc .lang-switch {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-header-bc .lang-switch a {
  color: rgba(255, 255, 255, 0.75);
}

.site-header-bc .lang-switch a:hover {
  color: #ffffff;
}

.site-header-bc .lang-switch a.active {
  background: #38BDF8;
  color: #0A192F;
  font-weight: 800;
}

.site-header-bc .btn-whatsapp-header {
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.site-header-bc .mobile-menu-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-header-bc .mobile-menu-toggle span {
  background: #ffffff;
}

/* ========== HERO BANNER EJECUTIVO BUSINESS CENTER (OBERSI) ========== */
.bc-hero-executive {
  position: relative;
  background: linear-gradient(135deg, #060F1E 0%, #0A192F 45%, #0F274E 100%);
  color: #FFFFFF !important;
  padding: 72px 0 88px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bc-hero-glow-bg {
  position: absolute;
  top: -120px;
  left: -120px;
  right: -120px;
  bottom: -120px;
  background: 
    radial-gradient(850px circle at 15% 30%, rgba(2, 132, 199, 0.22), transparent 50%),
    radial-gradient(650px circle at 85% 65%, rgba(239, 68, 68, 0.16), transparent 45%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
  pointer-events: none;
  z-index: 1;
}

.bc-hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.bc-hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 18px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #E2E8F0;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bc-badge-icon {
  font-size: 14px;
}

.bc-badge-title {
  color: #38BDF8;
  text-transform: uppercase;
}

.bc-badge-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.bc-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #34D399;
  font-weight: 700;
}

.bc-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px #34D399; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.bc-hero-title {
  color: #FFFFFF !important;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.8px;
  margin: 0 0 18px 0 !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.bc-hero-lead {
  color: #CBD5E1 !important;
  font-size: 17.5px;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 0 26px 0;
  font-weight: 400;
}

.bc-hero-meta-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.bc-meta-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 16px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.bc-meta-icon {
  font-size: 20px;
}

.bc-meta-info {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.bc-meta-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94A3B8;
  font-weight: 600;
}

.bc-meta-value {
  font-size: 13.5px;
  font-weight: 700;
  color: #F8FAFC;
  margin-top: 2px;
}

.bc-hero-amenities-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.bc-amenity-tag {
  font-size: 12.5px;
  font-weight: 600;
  color: #E2E8F0;
  background: rgba(2, 132, 199, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.28);
  padding: 6px 14px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.bc-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-bc-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #EF4444 0%, #BE123C 100%) !important;
  color: #FFFFFF !important;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  transition: all 0.25s ease;
}

.btn-bc-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -4px rgba(239, 68, 68, 0.65);
  color: #FFFFFF !important;
}

.btn-bc-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #FFFFFF !important;
  padding: 15px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.btn-bc-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  color: #FFFFFF !important;
}

.btn-bc-hero-secondary svg {
  fill: #25D366;
}

/* Showcase Card (Right Column) */
.bc-showcase-card {
  position: relative;
  border-radius: 22px;
  padding: 5px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.65), 0 0 45px rgba(2, 132, 199, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bc-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.75), 0 0 55px rgba(2, 132, 199, 0.35);
}

.bc-showcase-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.bc-showcase-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bc-showcase-card:hover .bc-showcase-img {
  transform: scale(1.03);
}

.bc-showcase-glass-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  gap: 10px;
}

.bc-glass-tag-red {
  background: rgba(190, 18, 60, 0.9);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.bc-glass-tag-verified {
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(10px);
  color: #38BDF8;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11.5px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(56, 189, 248, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bc-verified-check {
  color: #34D399;
  font-weight: 900;
}

.bc-showcase-glass-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 18px;
  background: linear-gradient(to top, rgba(6, 15, 30, 0.98) 0%, rgba(6, 15, 30, 0.75) 65%, transparent 100%);
  z-index: 2;
}

.bc-showcase-loc {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #38BDF8;
  text-transform: uppercase;
}

.bc-showcase-name {
  color: #FFFFFF !important;
  font-size: 20px;
  font-weight: 800;
  margin: 4px 0 10px 0 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.bc-showcase-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bc-showcase-specs span {
  font-size: 11.5px;
  font-weight: 600;
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Archive Hero Specific */
.bc-archive-hero-wrap {
  padding: 56px 0 64px;
}

/* Mobile adjustments */
@media (max-width: 992px) {
  .bc-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bc-hero-showcase {
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
  .brand-logo-obersi-img {
    height: 44px;
    max-width: 230px;
  }
}

@media (max-width: 600px) {
  .bc-hero-executive {
    padding: 48px 0 60px;
  }
  .bc-hero-title {
    font-size: 32px;
  }
  .bc-hero-lead {
    font-size: 15.5px;
  }
  .brand-logo-obersi-img {
    height: 38px;
    max-width: 200px;
  }
  .bc-showcase-img {
    height: 280px;
  }
}

/* ========== PRINT STYLES ========== */
@media print {
  .site-header, .site-footer, .floating-whatsapp, .modal-overlay {
    display: none !important;
  }
  
  .confirmation-card {
    box-shadow: none;
    border: 1px solid var(--border);
  }
}
