/* ── VARIABLES ──────────────────────────────────────────────────── */
:root {
  --navy:   #1B2A4A;
  --navy2:  #162240;
  --navy3:  #0D1829;
  --gold:   #C9A84C;
  --gold2:  #E8C96A;
  --white:  #FFFFFF;
  --light:  #F5F5F0;
  --gray:   #888888;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--navy3); background: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ──────────────────────────────────────────────────── */
.gold-text { color: var(--gold); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy3); font-family: var(--font-sans);
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 36px; border: none; cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white); font-family: var(--font-sans);
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 34px; border: 2px solid rgba(255,255,255,0.6); cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 24px 0; transition: all 0.4s ease;
}
.navbar.scrolled {
  background: var(--navy3); padding: 16px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { color: var(--gold); font-size: 28px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { color: var(--white); font-family: var(--font-sans); font-size: 18px; font-weight: 700; letter-spacing: 3px; }
.logo-sub { color: var(--gold); font-family: var(--font-sans); font-size: 9px; font-weight: 500; letter-spacing: 4px; }
.nav-links { display: flex; gap: 40px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy3);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 12px 24px; transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold2); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: flex-end; justify-content: flex-start; overflow: hidden; }
.hero-video-container { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,18,32,0.92) 0%,
    rgba(10,18,32,0.75) 45%,
    rgba(10,18,32,0.15) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: left;
  max-width: 620px;
  padding: 0 60px;
  margin-left: 0;
  align-self: flex-end;
  margin-bottom: 120px;
}
.hero-eyebrow {
  color: var(--gold); font-size: 11px; font-weight: 600;
  letter-spacing: 5px; text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 300; color: var(--white);
  line-height: 1.08; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-subtitle {
  color: rgba(255,255,255,0.7); font-size: 15px;
  font-weight: 300; letter-spacing: 0.5px;
  margin-bottom: 40px; max-width: 460px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; right: 40px; bottom: 50%;
  transform: translateY(50%); z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.hero-scroll span {
  color: rgba(255,255,255,0.4); font-size: 9px;
  letter-spacing: 3px; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.3;transform:scaleY(0.5)} }

/* ── STATS BAR ──────────────────────────────────────────────────── */
.stats-bar { background: var(--navy3); padding: 40px 0; }
.stats-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 20px 60px; }
.stat-number { display: block; font-family: var(--font-serif); font-size: 36px; font-weight: 600; color: var(--gold); }
.stat-label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 6px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.15); }

/* ── SECTION HEADERS ────────────────────────────────────────────── */
.section-header { text-align: center; padding: 100px 24px 60px; }
.section-eyebrow { color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; }
.section-title { font-family: var(--font-serif); font-size: clamp(36px, 4vw, 56px); font-weight: 400; color: var(--navy3); line-height: 1.1; margin-bottom: 16px; }
.section-subtitle { color: var(--gray); font-size: 15px; font-weight: 300; max-width: 600px; margin: 0 auto; }

/* ── PROPERTIES ─────────────────────────────────────────────────── */
.properties { background: var(--light); padding-bottom: 80px; }
.properties-grid { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.property-card { background: var(--white); overflow: hidden; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.property-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(27,42,74,0.15); }
.property-image { position: relative; height: 260px; overflow: hidden; }
.property-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.property-card:hover .property-image img { transform: scale(1.08); }
.property-badge { position: absolute; top: 20px; left: 20px; background: var(--gold); color: var(--navy3); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; }
.property-overlay { position: absolute; inset: 0; background: rgba(13,24,41,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.property-card:hover .property-overlay { opacity: 1; }
.property-btn { color: var(--white); border: 2px solid var(--gold); padding: 12px 28px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; transition: all 0.3s; }
.property-btn:hover { background: var(--gold); color: var(--navy3); }
.property-info { padding: 24px; }
.property-location { color: var(--gold); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.property-location i { margin-right: 6px; }
.property-name { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--navy3); margin-bottom: 16px; }
.property-features { display: flex; gap: 20px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.property-features span { font-size: 12px; color: var(--gray); }
.property-features i { color: var(--gold); margin-right: 5px; }
.property-footer { display: flex; align-items: center; justify-content: space-between; }
.property-price { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--navy3); }
.property-whatsapp { width: 40px; height: 40px; background: #25D366; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; transition: all 0.3s; }
.property-whatsapp:hover { background: #128C7E; transform: scale(1.1); }
.properties-cta { text-align: center; margin-top: 60px; }

/* ── WHY US ─────────────────────────────────────────────────────── */
.why-us { padding: 100px 0; background: var(--white); }
.why-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content .section-eyebrow { text-align: left; }
.why-content .section-title { text-align: left; margin-bottom: 24px; }
.why-desc { color: var(--gray); font-size: 15px; line-height: 1.8; margin-bottom: 40px; }
.why-features { display: flex; flex-direction: column; gap: 28px; margin-bottom: 40px; }
.why-feature { display: flex; align-items: flex-start; gap: 20px; }
.why-icon { width: 48px; height: 48px; background: rgba(201,168,76,0.1); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; flex-shrink: 0; }
.why-feature h4 { font-size: 14px; font-weight: 600; color: var(--navy3); margin-bottom: 4px; letter-spacing: 0.5px; }
.why-feature p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.why-image { position: relative; }
.why-image img { width: 100%; height: 550px; object-fit: cover; }
.why-image-card { position: absolute; bottom: -20px; left: -20px; background: var(--navy3); padding: 30px 40px; }
.card-number { display: block; font-family: var(--font-serif); font-size: 36px; color: var(--gold); font-weight: 600; }
.card-label { display: block; font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

/* ── ABOUT ──────────────────────────────────────────────────────── */
.about { }
.about-bg { background: var(--navy3); padding: 100px 40px; text-align: center; }
.about-bg .section-eyebrow { text-align: center; }
.about-bg .section-title { text-align: center; color: var(--white); }
.about-text { max-width: 800px; margin: 0 auto 24px; color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.9; }
.about-stats { display: flex; justify-content: center; gap: 80px; margin-top: 60px; flex-wrap: wrap; }
.about-stat { text-align: center; }
.about-stat-num { display: block; font-family: var(--font-serif); font-size: 48px; color: var(--gold); font-weight: 600; }
.about-stat-label { display: block; font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }

/* ── CONTACT ────────────────────────────────────────────────────── */
.contact { background: var(--light); padding-bottom: 100px; }
.contact-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-item { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.contact-icon { width: 50px; height: 50px; background: var(--navy3); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 20px; flex-shrink: 0; }
.contact-item h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-item a, .contact-item p { font-size: 15px; color: var(--navy3); font-weight: 500; }
.contact-item a:hover { color: var(--gold); }
.contact-social { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.social-btn { display: flex; align-items: center; gap: 10px; padding: 14px 28px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s; }
.whatsapp-btn { background: #25D366; color: white; }
.whatsapp-btn:hover { background: #128C7E; }
.email-btn { background: var(--navy3); color: white; }
.email-btn:hover { background: var(--navy); }
.contact-form { background: var(--white); padding: 50px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--navy3); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid #ddd; background: var(--light);
  font-family: var(--font-sans); font-size: 14px; color: var(--navy3);
  outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer { background: #080E1A; padding: 80px 0 0; }
.footer-container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; }
.footer-tagline { color: var(--gold); font-size: 13px; font-style: italic; margin: 16px 0 10px; }
.footer-desc { color: rgba(255,255,255,0.4); font-size: 13px; line-height: 1.7; }
.footer h4 { color: var(--white); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.3s; }
.footer-links ul li a:hover { color: var(--gold); }
.footer-locations ul li { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 10px; }
.footer-contact p { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-contact i { color: var(--gold); width: 16px; }
.footer-contact a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { max-width: 1400px; margin: 60px auto 0; padding: 24px 40px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 12px; letter-spacing: 0.5px; }

/* ── WHATSAPP FLOAT ─────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 36px; right: 36px; z-index: 999;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: white; box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: all 0.3s ease; animation: pulse 2s infinite;
}
.whatsapp-float:hover { background: #128C7E; transform: scale(1.1); animation: none; }
@keyframes pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .why-container { grid-template-columns: 1fr; gap: 40px; }
  .why-image { display: none; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.active { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--navy3); align-items: center; justify-content: center; gap: 30px; z-index: 999; }
  .nav-links.active a { font-size: 18px; }
  .properties-grid { grid-template-columns: 1fr; }
  .stats-container { gap: 0; }
  .stat-item { padding: 20px 30px; }
  .stat-divider { display: none; }
  .contact-container { grid-template-columns: 1fr; }
  .contact-form { padding: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { gap: 40px; }
  .hero-title { font-size: 42px; }
  .section-title { font-size: 32px; }
}
