/* ============================================
   ONEHAUS REAL ESTATE - Ultra Luxury Design System
   ============================================ */

:root {
  --navy: #1B2A4A;
  --navy-deep: #0F1A2E;
  --gold: #C8A85C;
  --gold-light: #D4BA78;
  --gold-dark: #A08040;
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --gray-100: #F7F7F7;
  --gray-200: #E8E8E8;
  --gray-300: #D0D0D0;
  --gray-500: #888888;
  --gray-700: #555555;
  --gray-900: #222222;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

*, *::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(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(15, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { text-decoration: none; display: flex; flex-wrap: wrap; align-items: baseline; }
.logo-text { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--white); letter-spacing: 0; }
.logo-accent { font-family: var(--font-display); font-size: 42px; font-weight: 400; color: var(--gold); letter-spacing: 0; }
.logo-sub { font-family: var(--font-body); font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.5); letter-spacing: 6px; text-transform: uppercase; width: 100%; display: block; margin-top: -3px; text-align: center; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.8);
  font-size: 13px; font-weight: 400; letter-spacing: 1px;
  text-transform: uppercase; transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 8px 20px; border-radius: 2px; font-weight: 600;
}
.nav-cta.nav-cta:hover { background: var(--gold-light); }
.nav-right { display: flex; gap: 16px; align-items: center; }
.lang-toggle {
  background: none; border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); padding: 4px 12px; font-size: 12px;
  letter-spacing: 1px; cursor: pointer; transition: var(--transition);
  font-family: var(--font-body); border-radius: 2px;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative; flex-direction: column;
  justify-content: space-between;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--white); transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #2C3E6B 50%, var(--navy) 100%);
  opacity: 0.9;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,168,92,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(200,168,92,0.05) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 6px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 24px; font-weight: 500;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; color: var(--white); line-height: 1.15;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.7);
  font-weight: 300; margin-bottom: 40px; line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 14px 32px; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
  font-weight: 600; transition: var(--transition); cursor: pointer;
  border: none; font-family: var(--font-body); border-radius: 2px;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; text-align: center; }

.hero-stats {
  margin-top: 60px; display: flex; justify-content: center;
  align-items: center; gap: 40px;
}
.stat { text-align: center; }
.stat-number { display: block; font-family: var(--font-display); font-size: 28px; color: var(--white); font-weight: 600; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); text-align: center; z-index: 2;
}
.hero-scroll span { display: block; font-size: 11px; letter-spacing: 3px; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 8px; }
.scroll-indicator {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section-dark { background: var(--navy-deep); color: var(--white); }

.section-eyebrow {
  font-size: 12px; letter-spacing: 5px; color: var(--gold);
  text-transform: uppercase; margin-bottom: 16px; font-weight: 500;
  text-align: center;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; margin-bottom: 20px; text-align: center;
  line-height: 1.2;
}
.section-title-left { text-align: left; }
.section-dark .section-title { color: var(--white); }
.section-intro {
  font-size: 17px; color: var(--gray-700); max-width: 680px;
  margin: 0 auto 60px; text-align: center; line-height: 1.7;
}
.section-dark .section-intro { color: rgba(255,255,255,0.6); }

/* ============ VALUE GRID ============ */
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 28px; border-radius: 4px;
  transition: var(--transition);
}
.value-card:hover {
  border-color: rgba(200,168,92,0.3);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.value-icon {
  width: 40px; height: 40px; margin-bottom: 20px; color: var(--gold);
}
.value-icon svg { width: 100%; height: 100%; }
.value-card h3 {
  font-family: var(--font-display); font-size: 20px;
  margin-bottom: 12px; color: var(--white);
}
.value-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ============ PROPERTY CARDS ============ */
.property-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 60px;
  border: 1px solid var(--gray-200); border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}
.property-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.property-gallery {
  position: relative; background: var(--navy-deep);
  min-height: 500px; display: flex; align-items: center;
  justify-content: center;
}
.property-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--gold); color: var(--navy);
  padding: 6px 16px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600; z-index: 2;
}
.property-placeholder {
  text-align: center; color: rgba(255,255,255,0.3); padding: 40px;
}
.property-placeholder svg { width: 60px; height: 60px; margin-bottom: 16px; display: block; margin-left: auto; margin-right: auto; }
.property-placeholder span { font-size: 13px; letter-spacing: 1px; }
.property-info { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.property-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; gap: 20px; }
.property-location { font-size: 12px; letter-spacing: 2px; color: var(--gold-dark); text-transform: uppercase; margin-bottom: 4px; }
.property-name { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--navy); }
.property-price { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--navy); white-space: nowrap; }
.property-desc { font-size: 14px; color: var(--gray-700); line-height: 1.8; margin-bottom: 24px; }
.property-specs { display: flex; gap: 24px; margin-bottom: 24px; padding: 20px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.spec { text-align: center; flex: 1; }
.spec-value { display: block; font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--navy); }
.spec-label { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }
.property-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.feature {
  background: var(--cream); color: var(--gray-700);
  padding: 6px 14px; font-size: 12px; border-radius: 2px;
  letter-spacing: 0.5px;
}

/* ============ NEIGHBORHOOD ============ */
.neighborhood-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.neighborhood-item {
  padding: 32px;
  border-left: 2px solid var(--gold);
}
.neighborhood-item h4 {
  font-family: var(--font-display); font-size: 18px;
  color: var(--white); margin-bottom: 12px;
}
.neighborhood-item p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ============ GOLDEN VISA ============ */
.visa-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.visa-desc { font-size: 16px; color: var(--gray-700); line-height: 1.7; margin-bottom: 32px; }
.visa-benefits { display: flex; flex-direction: column; gap: 16px; }
.visa-benefit { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--gray-700); }
.visa-check { color: var(--gold); font-size: 18px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.visa-highlight { display: flex; justify-content: center; }
.visa-box {
  background: var(--navy-deep); color: var(--white);
  padding: 48px; text-align: center; border-radius: 4px;
  border: 1px solid rgba(200,168,92,0.2);
  width: 100%; max-width: 380px;
}
.visa-box-label { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.visa-box-amount { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.visa-box-note { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ============ COMPARISON TABLE ============ */
.comparison-table { max-width: 800px; margin: 0 auto; }
.comp-row {
  display: grid; grid-template-columns: 1fr 1fr 0.6fr;
  padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: center; font-size: 15px;
  color: rgba(255,255,255,0.7);
}
.comp-header {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid rgba(200,168,92,0.3);
  padding-bottom: 12px; margin-bottom: 4px;
}
.comp-highlight {
  background: rgba(200,168,92,0.1);
  border: 1px solid rgba(200,168,92,0.2);
  border-radius: 4px; color: var(--white); font-weight: 600;
}
.comp-mult { color: rgba(255,255,255,0.4); font-size: 13px; text-align: right; }
.comp-ref { color: var(--gold); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-align: right; }

/* ============ CONTACT FORM ============ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: flex-start; }
.contact-desc { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 32px; }
.contact-channels { display: flex; gap: 24px; margin-bottom: 24px; }
.channel { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-700); }
.channel-icon { color: var(--gold); display: flex; }
.channel-icon svg { width: 20px; height: 20px; }
.contact-privacy { font-size: 12px; color: var(--gray-500); }

.contact-form-wrapper {
  background: var(--gray-100); padding: 40px;
  border-radius: 4px; border: 1px solid var(--gray-200);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1px solid var(--gray-300);
  border-radius: 2px; font-family: var(--font-body);
  font-size: 14px; color: var(--gray-900);
  background: var(--white); transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,168,92,0.1);
}
.form-group textarea { resize: vertical; }
.form-disclaimer { font-size: 11px; color: var(--gray-500); text-align: center; margin-top: 4px; }

/* Form success */
.form-success {
  text-align: center; padding: 40px 20px;
}
.form-success h3 {
  font-family: var(--font-display); font-size: 24px;
  color: var(--navy); margin-bottom: 12px;
}
.form-success p { color: var(--gray-700); font-size: 15px; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  padding: 40px 0; border-top: 1px solid rgba(200,168,92,0.15);
}
.footer-inner { text-align: center; }
.footer-brand { margin-bottom: 16px; }
.footer-brand .logo-text, .footer-brand .logo-accent { font-size: 30px; }
.footer-brand .logo-sub { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 4px; }
.footer-brand .footer-tagline { display: none; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 2px; margin-top: 4px; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; letter-spacing: 1px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .neighborhood-grid { grid-template-columns: repeat(2, 1fr); }
  .property-card { grid-template-columns: 1fr; }
  .property-gallery { min-height: 300px; }
  .visa-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .section-intro { max-width: 100%; padding: 0 16px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(15,26,46,0.98);
    padding: 24px; gap: 20px;
    border-top: 1px solid rgba(200,168,92,0.15);
  }
  .nav-hamburger { display: flex; }
  .logo-text, .logo-accent { font-size: 30px; }
  .logo-sub { font-size: 10px; letter-spacing: 4px; margin-top: -2px; }
  .hero { min-height: 600px; }
  .hero-content { padding-top: 80px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 4px; margin-bottom: 16px; }
  .hero-price { font-size: clamp(28px, 6vw, 40px); }
  .hero-stats { flex-direction: row; gap: 16px; margin-top: 32px; }
  .stat-number { font-size: 22px; }
  .stat-label { font-size: 10px; letter-spacing: 1px; }
  .stat-divider { width: 1px; height: 30px; }
  .value-grid { grid-template-columns: 1fr; }
  .neighborhood-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .property-info { padding: 28px 20px; }
  .property-header { flex-direction: column; }
  .property-specs { gap: 12px; }
  .section { padding: 60px 0; }
  .comp-row { grid-template-columns: 1fr 1fr 0.5fr; font-size: 13px; padding: 12px 16px; }
  .contact-form-wrapper { padding: 24px; }
  .visa-box { padding: 32px; }
  .visa-box-amount { font-size: 36px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 24px; }
  .section-title { font-size: clamp(24px, 5vw, 36px); }
  .section-intro { font-size: 15px; margin-bottom: 40px; }
  .footer-brand .logo-text, .footer-brand .logo-accent { font-size: 24px; }
  .footer-brand .logo-sub { font-size: 9px; letter-spacing: 3px; }
  .gallery-hero img { height: 200px; }
  .gallery-grid .gallery-thumb { height: 120px; }
  .plan-map-section { padding: 60px 0; }
  .collection-name { font-size: 22px; }
  .collection-price { font-size: 18px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .hero-content { padding-top: 90px; padding-left: 16px; padding-right: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; padding: 14px 24px; font-size: 12px; }
  .comp-row { grid-template-columns: 1fr 1fr; }
  .comp-row span:last-child { display: none; }
  .comp-header span:last-child { display: none; }
  .container { padding: 0 16px; }
  .hero-stats { gap: 12px; }
  .stat-number { font-size: 20px; }
  .hero-price { margin-bottom: 20px; }
  .property-name { font-size: 22px; }
  .property-price { font-size: 20px; }
  .spec-value { font-size: 20px; }
  .detail-spec-value { font-size: 16px; }
  .contact-channels { flex-direction: column; gap: 12px; }
}

/* ============ HERO WITH BACKGROUND IMAGE ============ */
.hero-has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-has-bg::before {
  background: linear-gradient(135deg, rgba(15,26,46,0.85) 0%, rgba(27,42,74,0.7) 50%, rgba(15,26,46,0.8) 100%);
}
.hero-hermosilla { background-image: url('img/hermosilla/img-09.jpg'); }
.hero-ayala { background-image: url('img/ayala/img-01.jpg'); }

/* ============ PROPERTY HERO (Individual pages) ============ */
.hero-price {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; color: var(--gold); margin-bottom: 32px;
}

/* ============ PHOTO GALLERY ============ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  border-radius: 4px; overflow: hidden;
}
.gallery-grid .gallery-hero {
  grid-column: 1 / -1;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: var(--transition);
  cursor: pointer;
}
.gallery-grid img:hover { opacity: 0.9; transform: scale(1.02); }
.gallery-hero img { height: 400px; }
.gallery-grid .gallery-thumb { height: 200px; overflow: hidden; }
.gallery-grid .gallery-thumb img { height: 100%; }

/* Collection card images */
.collection-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.6s ease;
}
.collection-card:hover .collection-img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92); align-items: center;
  justify-content: center; padding: 40px; cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: white; font-size: 32px; cursor: pointer;
  background: none; border: none; font-weight: 300;
  opacity: 0.7; transition: var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: white; font-size: 48px; cursor: pointer;
  background: none; border: none; opacity: 0.5;
  transition: var(--transition); padding: 20px;
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-hero img { height: 250px; }
  .gallery-grid .gallery-thumb { height: 150px; }
}

/* ============ COLLECTION GRID (Corporate page) ============ */
.collection-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.collection-card {
  text-decoration: none; color: inherit;
  border: 1px solid var(--gray-200); border-radius: 4px;
  overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column;
}
.collection-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.collection-visual {
  position: relative; background: var(--navy-deep);
  min-height: 280px; display: flex; align-items: center;
  justify-content: center;
}
.collection-placeholder {
  text-align: center; color: rgba(255,255,255,0.25); padding: 40px;
}
.collection-placeholder svg { width: 60px; height: 60px; margin-bottom: 12px; display: block; margin: 0 auto 12px; }
.collection-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy);
  padding: 6px 16px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
}
.collection-info { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.collection-location {
  font-size: 11px; letter-spacing: 2px; color: var(--gold-dark);
  text-transform: uppercase; margin-bottom: 4px;
}
.collection-name {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.collection-price {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--navy); margin-bottom: 16px;
}
.collection-specs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--gray-700); margin-bottom: 16px;
}
.spec-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); display: inline-block;
}
.collection-teaser {
  font-size: 14px; color: var(--gray-700); line-height: 1.7;
  margin-bottom: 20px; flex: 1;
}
.collection-cta {
  font-size: 13px; font-weight: 600; color: var(--gold-dark);
  letter-spacing: 1px; text-transform: uppercase;
  transition: var(--transition);
}
.collection-card:hover .collection-cta { color: var(--gold); }

/* ============ PROPERTY DETAIL LAYOUT ============ */
.property-detail-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.property-placeholder-large {
  background: var(--navy-deep); border-radius: 4px;
  min-height: 420px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25); padding: 40px;
  text-align: center;
}
.property-placeholder-large svg { width: 80px; height: 80px; margin-bottom: 16px; }
.property-placeholder-large span { font-size: 13px; letter-spacing: 1px; }
.property-detail-desc {
  font-size: 15px; color: var(--gray-700); line-height: 1.8;
  margin-bottom: 32px;
}
.detail-specs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.detail-spec {
  padding: 16px; background: var(--gray-100);
  border-radius: 4px; border: 1px solid var(--gray-200);
}
.detail-spec-label {
  display: block; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px;
}
.detail-spec-value {
  font-family: var(--font-display); font-size: 18px;
  font-weight: 600; color: var(--navy);
}

/* ============ FEATURES GRID ============ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.feature-item {
  padding: 32px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; transition: var(--transition);
}
.feature-item:hover {
  border-color: rgba(200,168,92,0.3);
  background: rgba(255,255,255,0.06);
}
.feature-icon {
  width: 36px; height: 36px; color: var(--gold); margin-bottom: 16px;
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-item h4 {
  font-family: var(--font-display); font-size: 18px;
  color: var(--white); margin-bottom: 10px;
}
.feature-item p {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7;
}

/* ============ FLOOR PLAN & MAP ============ */
.plan-map-section { padding: 100px 0; }
.plan-map-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  max-width: 900px; margin: 0 auto;
}
.plan-block, .map-block {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: 4px; overflow: hidden;
}
.plan-block-header, .map-block-header {
  padding: 20px 24px; border-bottom: 1px solid var(--gray-200);
}
.plan-block-header h3, .map-block-header h3 {
  font-family: var(--font-display); font-size: 18px;
  font-weight: 600; color: var(--navy); margin: 0;
}
.plan-block-header span, .map-block-header span {
  font-size: 12px; color: var(--gray-500); letter-spacing: 1px;
  text-transform: uppercase; display: block; margin-bottom: 4px;
}
.plan-block img {
  width: 100%; display: block; cursor: pointer;
  transition: var(--transition); background: white;
  padding: 16px;
}
.plan-block img:hover { opacity: 0.9; }
.map-block iframe {
  width: 100%; height: 350px; border: none; display: block;
}

/* ============ RESPONSIVE (new elements) ============ */
@media (max-width: 1024px) {
  .collection-grid { grid-template-columns: 1fr; }
  .property-detail-layout { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-map-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .detail-specs-grid { grid-template-columns: 1fr; }
  .collection-visual { min-height: 200px; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 72px;
  background: #fff;
  color: #333;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--font-body);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}
@media (max-width: 768px) {
  .whatsapp-float { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .whatsapp-float .wa-tooltip { display: none; }
}
