/* ==========================================================================
   NOVUM 56 REAL ESTATE - LUXURY RESPONSIVE & MOBILE-FIRST DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Colors */
  --bg-primary: #0b0f17;
  --bg-secondary: #111827;
  --bg-tertiary: #1f2937;
  --bg-card: rgba(17, 24, 39, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);
  
  --border-color: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(217, 119, 6, 0.4);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --accent-gold: #f59e0b;
  --accent-gold-hover: #d97706;
  --accent-gold-light: rgba(245, 158, 11, 0.15);
  
  --accent-blue: #38bdf8;
  --accent-blue-hover: #0284c7;
  --accent-blue-light: rgba(56, 189, 248, 0.15);

  --accent-green: #10b981;
  --accent-whatsapp: #25d366;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 10px 25px -5px rgba(245, 158, 11, 0.3);

  /* Layout */
  --container-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.3px;
}

p {
  color: var(--text-secondary);
  line-height: 1.65;
}

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

.text-center { text-align: center; }
.text-right { text-align: right; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-align: center;
  min-height: 44px;
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  min-height: 38px;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0369a1, #075985);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  color: #0b0f17;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fbbf24, var(--accent-gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(245, 158, 11, 0.5);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.btn-outline-gold:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--accent-whatsapp);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

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

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-pulse {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.badge-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.badge-gold {
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-blue {
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

/* Sections */
section {
  padding: 4.5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.35rem);
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}

.section-desc {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   TOP BAR & LANGUAGE SWITCHER
   ========================================================================== */
.top-bar {
  background: #06090e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.5rem 0;
  font-size: 0.8rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-badges {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lang-switch-wrapper {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  z-index: 1000;
  min-width: 140px;
  overflow: hidden;
}

.lang-dropdown.show {
  display: flex;
}

.lang-opt {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-opt:hover, .lang-opt.active {
  background: var(--accent-gold-light);
  color: var(--accent-gold);
}

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(11, 15, 23, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.6rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  color: #0b0f17;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

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

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover {
  color: #ffffff;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  width: 40px;
  height: 40px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 3.5rem 0 5rem 0;
  background: url('assets/images/Living_1.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--border-color);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 15, 23, 0.86) 0%,
    rgba(11, 15, 23, 0.96) 100%
  );
  backdrop-filter: blur(4px);
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 860px;
}

.hero-pill-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent-gold);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
}

.pill-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.8px;
}

.highlight-text {
  background: linear-gradient(135deg, #ffffff, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 740px;
}

/* HERO STATS CARDS */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 0.95rem;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold);
}

.stat-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ==========================================================================
   OFFER / INTENT CARDS (SALE & RENT)
   ========================================================================== */
.offer-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.offer-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.offer-card {
  position: relative;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.offer-sale {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.15);
}

.offer-sale:hover {
  border-color: var(--accent-gold);
}

.offer-rent {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.15);
}

.offer-rent:hover {
  border-color: var(--accent-blue);
}

.offer-badge {
  align-self: flex-start;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: var(--accent-gold-light);
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.offer-header {
  margin-bottom: 1.5rem;
}

.offer-title {
  font-size: 1.55rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.offer-price {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin: 0.5rem 0 0.6rem 0;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.offer-rent .offer-price {
  color: var(--accent-blue);
}

.offer-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.offer-subtitle {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  margin-bottom: 2.25rem;
  flex-grow: 1;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.offer-list li span:first-child {
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
}

.offer-rent .offer-list li span:first-child {
  color: var(--accent-blue);
}

.offer-pt-content {
  flex-grow: 1;
  line-height: 1.5;
}

.offer-list li strong {
  color: var(--text-primary);
}

/* ==========================================================================
   PHOTO GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-section {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 38px;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-gold);
  color: #0b0f17;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.35rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.gallery-item.hidden {
  display: none;
}

.gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 15, 23, 0.92) 0%, rgba(11, 15, 23, 0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.15rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.zoom-icon {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(11, 15, 23, 0.8);
  backdrop-filter: blur(6px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
}

.card-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.card-caption {
  font-size: 0.84rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.35;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 13, 0.96);
  backdrop-filter: blur(14px);
}

.lightbox-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-media-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 72vh;
  width: 100%;
}

.lightbox-media-container img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-btn {
  position: absolute;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid var(--border-color);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
  z-index: 30;
}

.lightbox-btn:hover {
  background: var(--accent-gold);
  color: #0b0f17;
  border-color: var(--accent-gold);
}

.lightbox-close {
  top: -15px;
  right: 0;
}

.lightbox-prev {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-caption-bar {
  margin-top: 1rem;
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.95rem;
  max-width: 800px;
  text-align: center;
}

.lightbox-counter {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 0.82rem;
  white-space: nowrap;
}

.lightbox-caption-text {
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ==========================================================================
   VIDEO TOUR SECTION
   ========================================================================= */
.video-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.video-wrapper {
  max-width: 880px;
  margin: 0 auto;
}

.video-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-player-container {
  position: relative;
  width: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-player-container video {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  display: block;
}

.video-info-bar {
  padding: 1.25rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.video-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.video-info-text strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #ffffff;
}

.video-info-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.feature-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.feature-box:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.feat-icon {
  font-size: 2.1rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.feature-box h3 {
  font-size: 1.22rem;
  margin-bottom: 0.6rem;
  color: #ffffff;
  line-height: 1.3;
}

.feature-box p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   SPECS & FLOOR PLAN SECTION
   ========================================================================== */
.specs-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.specs-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.specs-lead {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  margin-bottom: 1.25rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 320px;
}

.specs-table th, .specs-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.specs-table th {
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.specs-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.table-subtotal td {
  background: rgba(56, 189, 248, 0.06);
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.table-total td {
  background: rgba(245, 158, 11, 0.1);
  border-top: 2px solid var(--accent-gold);
}

.highlight-val {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.technical-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.meta-pill {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.meta-pill strong {
  color: var(--text-primary);
}

/* Floor Plan Card */
.specs-plan-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.plan-header h3 {
  font-size: 1.2rem;
}

.plan-image-wrapper {
  position: relative;
  background: #ffffff;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
}

.plan-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}

.plan-zoom-btn {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(11, 15, 23, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.plan-zoom-btn:hover {
  background: var(--accent-gold);
  color: #0b0f17;
  border-color: var(--accent-gold);
}

.plan-caption {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.85rem;
  text-align: center;
}

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */
.location-section {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.25rem;
  align-items: stretch;
}

.poi-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.poi-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: all var(--transition-fast);
}

.poi-item:hover {
  border-color: var(--accent-gold);
  transform: translateX(3px);
}

.poi-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.poi-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex-grow: 1;
}

.poi-text strong {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  color: #ffffff;
  line-height: 1.3;
}

.poi-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.poi-time {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--accent-gold);
  background: var(--accent-gold-light);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  align-self: center;
}

.map-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.map-card {
  min-height: 380px;
  flex-grow: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  background: var(--bg-secondary);
}

.contact-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-header {
  margin-bottom: 2.5rem;
}

.contact-title {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  margin-bottom: 0.4rem;
}

.contact-subtitle {
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-method-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.method-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.method-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex-grow: 1;
}

.method-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.method-val {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  color: #ffffff;
  word-break: break-all;
  line-height: 1.3;
}

.method-link:hover {
  color: var(--accent-gold);
  text-decoration: underline;
}

.btn-copy {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.85rem;
}

.btn-copy:hover {
  background: var(--accent-gold);
  color: #0b0f17;
}

.contact-quick-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}

.form-title {
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-control {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition-fast);
  min-height: 44px;
}

.form-control:focus {
  border-color: var(--accent-gold);
}

.form-status-msg {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: none;
  text-align: center;
  font-weight: 600;
  margin-top: 0.5rem;
}

.form-status-msg.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
}

.form-status-msg.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.form-note {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.4rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #06090e;
  border-top: 1px solid var(--border-color);
  padding: 2.25rem 0;
  font-size: 0.82rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FLOATING ACTION BAR (MOBILE)
   ========================================================================== */
.floating-action-bar {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(17, 24, 39, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.65rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  gap: 0.45rem;
  max-width: 92vw;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.floating-whatsapp {
  background: var(--accent-whatsapp);
}

.floating-email {
  background: var(--accent-gold);
  color: #0b0f17;
}

.floating-video {
  background: rgba(255, 255, 255, 0.14);
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
  .specs-grid-layout, .location-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .site-header {
    padding: 0.75rem 0;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 15, 23, 0.98);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 1.25rem;
    display: none;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
  }

  .main-nav.show {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.1rem;
  }

  .nav-link {
    font-size: 1rem;
    display: block;
    padding: 0.4rem 0;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 3rem 0 4rem 0;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-card {
    aspect-ratio: 1 / 1;
  }

  .card-overlay {
    opacity: 1;
    background: linear-gradient(0deg, rgba(11, 15, 23, 0.85) 0%, rgba(11, 15, 23, 0) 50%);
    padding: 0.75rem;
  }

  .card-caption {
    font-size: 0.75rem;
  }

  .card-tag {
    display: none;
  }

  .contact-card {
    padding: 1.75rem 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .floating-action-bar {
    display: flex;
  }

  body {
    padding-bottom: 4.5rem;
  }

  .video-info-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .lightbox-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .lightbox-close {
    top: -35px;
    right: 5px;
  }
}

@media (max-width: 480px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

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

  .gallery-card {
    aspect-ratio: 4 / 3;
  }
}
