/* ===========================
   SEUN PROPERTY — style.css
   =========================== */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --dark-bg: #0a0a0a;
  --dark-2: #0d0d0d;
  --dark-3: #111111;
  --dark-4: #161616;
  --border: #2a2a2a;
  --text-primary: #f0ece4;
  --text-muted: #a09880;
  --text-dim: #6b6658;
  --green: #4caf7a;
  --green-bg: #1a3a2a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gold { color: var(--gold); }

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  background: var(--dark-2);
  border-bottom: 0.5px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-logo span {
  color: var(--text-primary);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer;
}

/* === HERO === */
.hero {
  min-height: 520px;
  background: #0f0d08;
  display: flex;
  align-items: center;
  padding: 5rem 2rem;
  border-bottom: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(201,168,76,0.025) 60px,
    rgba(201,168,76,0.025) 61px
  );
  pointer-events: none;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.tag {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: #0a0a0a;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-light); color: #0a0a0a; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 0.5px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(201,168,76,0.1);
}

/* === STATS BAR === */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--dark-3);
  border-bottom: 0.5px solid var(--border);
}

.stat {
  padding: 1.8rem 2rem;
  border-right: 0.5px solid var(--border);
  text-align: center;
}

.stat:last-child { border-right: none; }

.stat-num {
  font-size: 30px;
  font-weight: 600;
  color: var(--gold);
}

.stat-label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* === SECTIONS === */
.section {
  padding: 4rem 2rem;
}

.dark-section { background: var(--dark-2); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 600;
}

.view-all {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.view-all:hover { color: var(--gold-light); }

/* === PROPERTY CARDS === */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.prop-card {
  background: var(--dark-3);
  transition: background 0.2s;
  cursor: pointer;
}

.prop-card:hover { background: #161410; }

.prop-img {
  height: 200px;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.prop-img img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.prop-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #2a2520;
  z-index: 0;
}

.prop-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1px;
  font-weight: 600;
  z-index: 2;
}

.badge-sale { background: var(--gold); color: #0a0a0a; }
.badge-rent { background: var(--green-bg); color: var(--green); border: 0.5px solid var(--green); }

.prop-info { padding: 1.25rem; }

.prop-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.prop-title {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.prop-location {
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.prop-location i { color: var(--gold); font-size: 13px; }

.prop-features {
  display: flex;
  gap: 1rem;
  border-top: 0.5px solid var(--border);
  padding-top: 12px;
  margin-bottom: 14px;
}

.prop-feat {
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 4px;
}

.prop-feat i { color: var(--gold); font-size: 14px; }

.prop-btn {
  display: block;
  text-align: center;
  background: transparent;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px;
  border-radius: 1px;
  transition: all 0.2s;
}

.prop-btn:hover {
  background: var(--gold);
  color: #0a0a0a;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--dark-3);
  padding: 2rem 1.5rem;
  transition: background 0.2s;
}

.service-card:hover { background: var(--dark-4); }

.service-card i {
  font-size: 28px;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* === WHATSAPP CTA BAND === */
.cta-band {
  background: #14110a;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cta-text p {
  font-size: 14px;
  color: var(--text-muted);
}

.wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-bg);
  color: var(--green);
  border: 0.5px solid var(--green);
  padding: 13px 24px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}

.wa-btn:hover { background: #254d38; color: var(--green); }
.wa-btn i { font-size: 20px; }

/* === FOOTER === */
.footer { background: var(--dark-2); border-top: 0.5px solid var(--border); }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 3rem 2rem;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 0.75rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }
.footer-links i { font-size: 15px; }

.footer-bottom {
  border-top: 0.5px solid #1a1a1a;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 11px;
  color: #3a3a3a;
  letter-spacing: 0.5px;
}

/* === FLOATING WHATSAPP === */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  z-index: 999;
  transition: transform 0.2s;
}

.float-wa:hover { transform: scale(1.1); color: #fff; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: var(--dark-2);
    padding: 1.5rem 2rem;
    border-bottom: 0.5px solid var(--border);
    gap: 1.2rem;
    z-index: 99;
  }

  .hero h1 { font-size: 28px; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 0.5px solid var(--border); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .cta-band { flex-direction: column; text-align: center; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* === ADMIN NAV BUTTON === */
.nav-admin {
  background: transparent;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 0.5px solid var(--border);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-admin:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}