/* ===================== TOKENS ===================== */
:root {
  --black: #0a0a0a;
  --charcoal: #1c1c1c;
  --dark: #2a2a2a;
  --mid: #5a5a5a;
  --light: #9a9a9a;
  --bone: #f7f4ef;
  --white: #ffffff;
  --gold: #b8976a;
  --gold-light: #d4b896;
  --gold-dim: rgba(184,151,106,0.15);
  --gold-line: rgba(184,151,106,0.35);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===================== RESET ===================== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--white); color: var(--dark); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }

/* ===================== UTILITIES ===================== */
.gold-line { display: inline-block; width: 40px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 14px; }
.section-tag { font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 400; display: flex; align-items: center; margin-bottom: 16px; }
.page { display: none; }
.page.active { display: block; }

/* ===================== NAV ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  height: 80px;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}
nav.scrolled .nav-logo { color: #ffffff; }
nav.scrolled .nav-logo span { color: var(--gold); }
nav.scrolled .nav-links a { color: var(--dark); }
nav.scrolled .nav-cta { background: var(--black); color: var(--white); }
nav.dark-nav { background: rgba(10,10,10,0.85); backdrop-filter: blur(12px); }
.nav-logo {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 600;
  color: var(--white); letter-spacing: 1px; transition: color 0.3s;
}
.nav-logo span { color: var(--gold-light); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.82); font-weight: 400;
  transition: color 0.2s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white); font-size: 0.68rem;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all 0.25s; border-radius: 1px;
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-mobile-toggle span { display: block; width: 24px; height: 1px; background: var(--white); transition: all 0.3s; }
nav.scrolled .nav-mobile-toggle span { background: var(--dark); }

/* ===================== HERO ===================== */
#hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1008 0%, #0d0d0d 40%, #1a1208 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('maraya_assets/maraya-01.jpeg');
  background-size: cover; background-position: center;
  opacity: 0.45;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.25) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px; max-width: 820px;
  animation: heroReveal 1.2s var(--ease) both;
}
@keyframes heroReveal { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
.hero-eyebrow {
  display: flex; align-items: center;
  font-size: 0.65rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 24px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 36px; height: 1px; background: var(--gold); margin-right: 14px; }
.hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3rem, 6.5vw, 6rem);
  color: var(--white); line-height: 1.05;
  margin-bottom: 28px;
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-subtitle {
  color: rgba(255,255,255,0.58); font-size: 0.9rem;
  line-height: 1.8; max-width: 480px; font-weight: 300;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  padding: 16px 40px; background: var(--gold); color: var(--white);
  font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 400; transition: all 0.25s; border-radius: 1px;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { background: #a07a50; transform: translateY(-1px); }
.btn-outline-white {
  padding: 16px 40px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white); font-size: 0.7rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 400; transition: all 0.25s; border-radius: 1px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 60px; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.45); font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
}
.scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.3); }
.hero-badge {
  position: absolute; right: 60px; bottom: 50px; z-index: 2;
  border: 1px solid var(--gold-line);
  padding: 20px 28px; text-align: center;
  background: rgba(10,10,10,0.6); backdrop-filter: blur(8px);
  animation: heroReveal 1.2s 0.3s var(--ease) both;
}
.hero-badge-num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.hero-badge-label { font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ===================== FEATURED ===================== */
#featured { padding: 120px 60px; background: #111111; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; color: var(--black); }
.section-title em { font-style: italic; color: var(--gold); }
.view-all-link {
  font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold-line);
  padding-bottom: 3px; transition: all 0.2s;
}
.view-all-link:hover { color: var(--dark); border-color: var(--dark); }

.featured-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 2px; }
.feat-card { position: relative; overflow: hidden; cursor: pointer; }
.feat-card-main { grid-row: 1 / 3; }
.feat-card-img { position: relative; overflow: hidden; }
.feat-card-main .feat-card-img { height: 600px; }
.feat-card:not(.feat-card-main) .feat-card-img { height: 299px; }
.feat-card-img img { height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.feat-card:hover .feat-card-img img { transform: scale(1.06); }
.feat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.1) 50%, transparent 100%);
  transition: opacity 0.3s;
}
.feat-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 28px 24px;
}
.feat-card-op {
  display: inline-block; padding: 4px 12px;
  background: var(--gold); color: var(--white);
  font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 10px; border-radius: 1px;
}
.feat-card-op.rent { background: var(--charcoal); border: 1px solid var(--gold-line); }
.feat-card-title { font-family: var(--serif); font-size: 1.5rem; color: var(--white); line-height: 1.2; margin-bottom: 8px; font-weight: 400; }
.feat-card-loc { color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 1px; margin-bottom: 14px; }
.feat-card-price { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-light); }
.feat-card-feats { display: flex; gap: 16px; margin-top: 10px; }
.feat-f { color: rgba(255,255,255,0.65); font-size: 0.72rem; letter-spacing: 0.5px; }

/* ===================== WHY US ===================== */
#why { padding: 120px 60px; background: var(--bone); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 60px; }
.why-card { padding: 40px 28px; background: var(--white); border-bottom: 2px solid transparent; transition: border-color 0.3s, transform 0.3s; }
.why-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.why-icon {
  width: 48px; height: 48px; margin-bottom: 24px;
  border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.why-title { font-family: var(--serif); font-size: 1.25rem; color: var(--black); margin-bottom: 12px; font-weight: 400; }
.why-text { font-size: 0.82rem; color: var(--mid); line-height: 1.8; font-weight: 300; }

/* ===================== TESTIMONIALS ===================== */
#testimonials { padding: 120px 60px; background: var(--black); position: relative; overflow: hidden; }
#testimonials::before {
  content: '"';
  position: absolute; top: -20px; left: 40px;
  font-family: var(--serif); font-size: 30rem; line-height: 1;
  color: rgba(255,255,255,0.02); pointer-events: none;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.06); margin-top: 60px; }
.testi-card { padding: 48px 36px; background: var(--black); }
.testi-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 20px; }
.testi-text { font-family: var(--serif); font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.75; font-style: italic; margin-bottom: 28px; font-weight: 300; }
.testi-author { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.testi-city { font-size: 0.65rem; letter-spacing: 1px; color: rgba(255,255,255,0.3); margin-top: 4px; }

/* ===================== CONTACT SECTION ===================== */
#contact-section { padding: 120px 60px; background: #111111; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-left { }
.contact-info { margin-top: 44px; display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; }
.contact-icon { width: 44px; height: 44px; border: 1px solid var(--gold-line); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-item-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--light); margin-bottom: 4px; }
.contact-item-value { font-size: 0.9rem; color: var(--dark); }
.btn-wa {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 28px; background: #25D366; color: var(--white);
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  transition: background 0.2s; border-radius: 1px; margin-top: 12px; width: fit-content;
}
.btn-wa:hover { background: #1da851; }
.contact-right { }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--mid); }
.form-input, .form-select, .form-textarea {
  padding: 14px 16px;
  border: 1px solid #e0e0e0; border-radius: 1px;
  font-family: var(--sans); font-size: 0.85rem; color: var(--dark);
  background: var(--white); transition: border-color 0.2s; outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: none; height: 110px; }
.btn-submit {
  padding: 16px 40px; background: var(--black); color: var(--white);
  font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase;
  transition: background 0.25s; border-radius: 1px; width: 100%;
}
.btn-submit:hover { background: var(--gold); }

/* ===================== FOOTER ===================== */
footer {
  background: var(--charcoal); padding: 60px 60px 40px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand { }
.footer-logo { font-family: var(--serif); font-size: 1.4rem; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.38); line-height: 1.7; font-weight: 300; max-width: 240px; }
.footer-col-title { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.25); letter-spacing: 0.5px; }
.footer-gold-line { display: flex; align-items: center; gap: 10px; font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.footer-gold-line::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

/* ===================== FLOATING WA ===================== */
.float-wa {
  position: fixed; bottom: 32px; right: 32px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: pulseWa 2.5s infinite;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.55); animation: none; }
@keyframes pulseWa { 0%,100%{box-shadow:0 8px 30px rgba(37,211,102,0.4)} 50%{box-shadow:0 8px 40px rgba(37,211,102,0.65)} }

/* ===================== PROPERTIES PAGE ===================== */
#properties-page { padding-top: 80px; }
.props-hero {
  background: var(--black); padding: 80px 60px 60px;
  position: relative; overflow: hidden;
}
.props-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('maraya_assets/maraya-01.jpeg');
  background-size: cover; background-position: center 30%;
  opacity: 0.2;
}
.props-hero-content { position: relative; z-index: 1; }
.props-hero h1 { font-family: var(--serif); font-size: 3rem; color: var(--white); font-weight: 300; margin-bottom: 10px; }
.props-hero p { color: rgba(255,255,255,0.45); font-size: 0.85rem; }

.filters-bar {
  background: var(--white);
  border-bottom: 1px solid #ebebeb;
  padding: 24px 60px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  position: sticky; top: 80px; z-index: 100;
}
.filter-select {
  padding: 10px 36px 10px 14px;
  border: 1px solid #e0e0e0; border-radius: 1px;
  font-family: var(--sans); font-size: 0.78rem; color: var(--dark);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235a5a5a' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none; outline: none; cursor: pointer; transition: border-color 0.2s;
  min-width: 160px;
}
.filter-select:focus { border-color: var(--gold); }
.filter-divider { width: 1px; height: 28px; background: #e8e8e8; margin: 0 4px; }
.filter-count { margin-left: auto; font-size: 0.72rem; color: var(--light); letter-spacing: 1px; }
.btn-reset {
  padding: 10px 20px; border: 1px solid #e0e0e0;
  font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--mid); transition: all 0.2s; border-radius: 1px;
}
.btn-reset:hover { border-color: var(--gold); color: var(--gold); }

.props-grid-wrap { padding: 60px; background: var(--bone); min-height: 400px; }
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.prop-card { background: var(--white); overflow: hidden; cursor: pointer; transition: box-shadow 0.3s; }
.prop-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.prop-card-img { position: relative; height: 260px; overflow: hidden; }
.prop-card-img img { height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.prop-card:hover .prop-card-img img { transform: scale(1.06); }
.prop-card-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 12px; font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase;
}
.badge-sale { background: var(--gold); color: var(--white); }
.badge-rent { background: var(--charcoal); color: var(--gold-light); border: 1px solid var(--gold-line); }
.prop-card-body { padding: 24px 24px 20px; }
.prop-card-city { font-size: 0.65rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.prop-card-title { font-family: var(--serif); font-size: 1.2rem; color: var(--black); margin-bottom: 12px; font-weight: 400; line-height: 1.3; }
.prop-card-price { font-family: var(--serif); font-size: 1.3rem; color: var(--dark); margin-bottom: 16px; }
.prop-card-feats {
  display: flex; gap: 16px;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}
.prop-feat { font-size: 0.72rem; color: var(--mid); display: flex; align-items: center; gap: 5px; }
.prop-feat svg { color: var(--gold); }
.prop-card-cta {
  display: block; width: 100%; padding: 12px;
  background: var(--black); color: var(--white);
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  text-align: center; transition: background 0.2s; margin-top: 16px;
}
.prop-card-cta:hover { background: var(--gold); }

.no-props {
  grid-column: 1/-1; text-align: center; padding: 80px 20px;
}
.no-props p { font-family: var(--serif); font-size: 1.5rem; color: var(--mid); }

/* ===================== DETAIL PAGE ===================== */
#detail-page { padding-top: 80px; }
.detail-back {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); padding: 24px 60px 0;
  transition: gap 0.2s; cursor: pointer;
}
.detail-back:hover { gap: 14px; }
.detail-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, 240px); gap: 3px; margin: 20px 60px 0; overflow: hidden; }
.detail-gallery-main { grid-row: 1/3; height: 483px; position: relative; overflow: hidden; }
.detail-gallery-main img, .detail-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery-thumb { position: relative; overflow: hidden; }
.detail-gallery-main img { transition: transform 0.6s var(--ease); }
.detail-gallery-main:hover img { transform: scale(1.03); }
.detail-gallery-count {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(10,10,10,0.75); color: var(--white);
  padding: 6px 14px; font-size: 0.7rem; letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

.detail-body { display: grid; grid-template-columns: 1fr 380px; gap: 60px; padding: 48px 60px 80px; align-items: start; }
.detail-left { }
.detail-city { font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.detail-title { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--black); font-weight: 300; line-height: 1.15; margin-bottom: 16px; }
.detail-price { font-family: var(--serif); font-size: 2rem; color: var(--dark); margin-bottom: 32px; }
.detail-feats-row {
  display: flex; gap: 0; border: 1px solid #ebebeb;
  margin-bottom: 40px;
}
.detail-feat {
  flex: 1; padding: 18px 20px; text-align: center;
  border-right: 1px solid #ebebeb;
}
.detail-feat:last-child { border-right: none; }
.detail-feat-num { font-family: var(--serif); font-size: 1.4rem; color: var(--black); }
.detail-feat-label { font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--light); margin-top: 3px; }
.detail-section-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 14px;
  margin-top: 36px;
  font-weight: 600;
}
.detail-section-title:first-child { margin-top: 0; }
.detail-desc { font-size: 0.88rem; color: var(--mid); line-height: 1.85; font-weight: 300; }
.detail-amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #f4f1eb;
  font-weight: 300;
}.amenity::before { content: ''; width: 5px; height: 5px; background: var(--gold); flex-shrink: 0; border-radius: 50%; }
.detail-map { height: 240px; background: #f0ede8; margin-top: 10px; display: flex; align-items: center; justify-content: center; border: 1px solid #e8e5e0; position: relative; overflow: hidden; }
.detail-map iframe { width: 100%; height: 100%; border: none; }
.detail-map-placeholder { text-align: center; color: var(--light); }
.detail-map-placeholder svg { color: var(--gold); margin-bottom: 8px; }
.detail-map-placeholder p { font-size: 0.78rem; letter-spacing: 1px; }

.detail-right { position: sticky; top: 100px; }
.contact-card {
  border: 1px solid #ebebeb; padding: 36px 32px;
  background: var(--white);
}
.contact-card-title { font-family: var(--serif); font-size: 1.3rem; color: var(--black); margin-bottom: 4px; font-weight: 400; }
.contact-card-sub { font-size: 0.72rem; color: var(--light); letter-spacing: 1px; margin-bottom: 28px; }
.contact-card form { display: flex; flex-direction: column; gap: 14px; }
.btn-wa-full {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; background: #25D366; color: var(--white);
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  transition: background 0.2s; margin-top: 4px;
}
.btn-wa-full:hover { background: #1da851; }
.btn-email-full {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; background: var(--white); color: var(--dark);
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid #e0e0e0;
  transition: all 0.2s; margin-top: 4px;
}
.btn-email-full:hover { border-color: var(--gold); color: var(--gold); }
.agent-box { border: 1px solid #ebebeb; padding: 24px; margin-top: 16px; display: flex; align-items: center; gap: 16px; }
.agent-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--bone); border: 1px solid var(--gold-line); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--serif); font-size: 1.1rem; flex-shrink: 0; }
.agent-name {
  color: #f4f1eb;
}
.agent-role { font-size: 0.68rem; letter-spacing: 1.5px; color: var(--light); text-transform: uppercase; margin-top: 2px; }


.full-gallery { margin-top: 34px; display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.full-gallery a { display:block; height: 150px; overflow:hidden; background: var(--bone); }
.full-gallery img { width:100%; height:100%; object-fit:cover; transition: transform 0.35s var(--ease); }
.full-gallery a:hover img { transform: scale(1.05); }
@media (max-width: 580px) { .full-gallery { grid-template-columns: repeat(2, 1fr); } .full-gallery a { height: 120px; } }
.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  color: white;
  font-size: .9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===================== SCHEDULE CTA ===================== */
.schedule-cta {
  background: var(--black); padding: 80px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.schedule-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,151,106,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.schedule-cta-tag { font-size: 0.62rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.schedule-cta-tag::before, .schedule-cta-tag::after { content: ''; width: 30px; height: 1px; background: var(--gold-line); }
.schedule-cta h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); font-weight: 300; margin-bottom: 16px; }
.schedule-cta p { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-bottom: 36px; }

/* ===================== MOBILE ===================== */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero-content { padding: 0 24px; }
  .hero-badge { display: none; }
  .hero-scroll { left: 24px; }
  #featured, #why, #testimonials, #contact-section { padding: 72px 24px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .featured-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feat-card-main { grid-row: auto; }
  .feat-card-main .feat-card-img { height: 360px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 48px 24px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .filters-bar { padding: 16px 24px; }
  .props-hero { padding: 60px 24px 40px; }
  .props-grid-wrap { padding: 36px 24px; }
  .detail-gallery { margin: 16px 24px 0; grid-template-columns: 1fr; grid-template-rows: 260px; }
  .detail-gallery-main { height: 260px; grid-row: auto; }
  .detail-gallery-thumb { display: none; }
  .detail-body { grid-template-columns: 1fr; padding: 32px 24px 60px; gap: 36px; }
  .detail-right { position: static; }
  .detail-back { padding: 18px 24px 0; }
  .schedule-cta { padding: 60px 24px; }
}
@media (max-width: 580px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .detail-feats-row { flex-wrap: wrap; }
  .detail-feat { min-width: 45%; border-bottom: 1px solid #ebebeb; }
}

.logo-img { height: 58px; width: auto; object-fit: contain; display: block; }
.footer-logo-img { height: 82px; width: auto; object-fit: contain; display: block; margin-bottom: 14px; }
.gallery-lightbox {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,.94); align-items: center; justify-content: center;
}
.gallery-lightbox.active { display: flex; }
.gallery-lightbox img { max-width: 90vw; max-height: 84vh; object-fit: contain; box-shadow: 0 20px 70px rgba(0,0,0,.45); }
.gallery-close, .gallery-prev, .gallery-next {
  position: absolute; background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.25);
  width: 52px; height: 52px; border-radius: 50%; font-size: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(8px);
}
.gallery-close { top: 24px; right: 24px; font-size: 34px; }
.gallery-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.gallery-next { right: 24px; top: 50%; transform: translateY(-50%); }
.gallery-counter { position: absolute; bottom: 24px; color: rgba(255,255,255,.75); font-size: 13px; letter-spacing: 1px; }
.gallery-clickable { cursor: zoom-in; }
@media (max-width: 900px) {
  .logo-img { height: 46px; }
  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }
  .gallery-close { top: 12px; right: 12px; }
}

/* ===================== SOFT DARK LUXURY THEME ===================== */
body,
#home-page,
#properties-page,
#detail-page,
#contact-page {
  background: #151515 !important;
  color: #f4f1eb !important;
}

/* Header / navbar */
nav,
nav.scrolled,
nav.dark-nav {
  background: rgba(12, 12, 12, 0.94) !important;
  border-bottom: 1px solid rgba(184,151,106,0.24) !important;
  box-shadow: 0 10px 36px rgba(0,0,0,0.28) !important;
  backdrop-filter: blur(14px);
}

nav .nav-links a,
nav.scrolled .nav-links a {
  color: rgba(255,255,255,0.78) !important;
}

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

nav .nav-cta,
nav.scrolled .nav-cta {
  background: rgba(184,151,106,0.08) !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold-light) !important;
  border-radius: 4px;
}

nav .nav-cta:hover,
nav.scrolled .nav-cta:hover {
  background: var(--gold) !important;
  color: #111111 !important;
}

.nav-mobile-toggle span,
nav.scrolled .nav-mobile-toggle span {
  background: var(--gold-light) !important;
}

/* Main section backgrounds */
#featured,
#contact-section,
.props-grid-wrap,
.detail-body,
#detail-page,
#properties-page {
  background: linear-gradient(180deg, #181818 0%, #141414 100%) !important;
}

#why,
.filters-bar,
.detail-left,
.detail-right {
  background: #1d1b19 !important;
}

.props-hero,
.schedule-cta,
footer {
  background: #0b0b0b !important;
}

/* Structure and separation */
section,
.schedule-cta,
.props-grid-wrap,
.detail-body,
#contact-section {
  border-top: 1px solid rgba(184,151,106,0.13);
}

.section-header {
  border-bottom: 1px solid rgba(184,151,106,0.18);
  padding-bottom: 26px;
}

/* Typography */
.section-title,
.detail-title,
.detail-section-title,
.why-title,
.contact-card-title,
.prop-card-title,
.detail-feat-num,
.no-props p {
  color: #faf4ea !important;
}

.detail-price,
.prop-card-price,
.feat-card-price {
  color: var(--gold-light) !important;
}

.hero-subtitle,
.detail-desc,
.why-text,
.contact-item-value,
.prop-feat,
.detail-map-placeholder p,
.contact-card-sub,
.detail-feat-label,
.agent-role,
.form-label,
.filter-count,
p {
  color: rgba(255,255,255,0.72) !important;
}

.detail-city,
.prop-card-city,
.section-tag,
.view-all-link,
.detail-back,
.footer-col-title {
  color: var(--gold) !important;
}

/* Cards and boxes */
.why-card,
.prop-card,
.contact-card,
.agent-box,
.detail-feats-row,
.detail-feat,
.form-input,
.form-select,
.form-textarea {
  background: #222222 !important;
  border: 1px solid rgba(184,151,106,0.26) !important;
  color: #f4f1eb !important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  border-radius: 10px;
}

.filters-bar {
  background: #1f1f1f !important;
  border-color: rgba(184,151,106,0.22) !important;
}

.why-card:hover,
.prop-card:hover,
.contact-card:hover {
  border-color: rgba(212,184,150,0.52) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
}

.detail-feat {
  border-right-color: rgba(184,151,106,0.22) !important;
}

.prop-card-feats {
  border-top-color: rgba(184,151,106,0.18) !important;
}

.agent-avatar {
  background: #121212 !important;
  border-color: rgba(184,151,106,0.45) !important;
  color: var(--gold-light) !important;
}

.agent-name {
  color: #f4f1eb !important;
}

/* Forms */
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.35) !important;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(184,151,106,0.12);
}

/* Images, gallery and map */
.prop-card-img,
.feat-card-img,
.detail-gallery-main,
.detail-gallery-thumb,
.detail-map,
.full-gallery a,
.video-thumb {
  border-radius: 8px;
  overflow: hidden;
}

.detail-map,
.full-gallery a {
  background: #1f1f1f !important;
  border-color: rgba(184,151,106,0.22) !important;
}

.detail-gallery-count {
  background: rgba(0,0,0,0.82) !important;
  color: #fff !important;
}

/* Logo */
.logo-img {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}

/* Buttons */
.btn-primary,
.btn-submit,
.prop-card-cta {
  background: var(--gold) !important;
  color: #111111 !important;
  border-radius: 4px;
}

.btn-primary:hover,
.btn-submit:hover,
.prop-card-cta:hover {
  background: var(--gold-light) !important;
  color: #0f0f0f !important;
  transform: translateY(-1px);
}

.btn-outline-white,
.btn-show-gallery,
.btn-reset {
  border-radius: 4px;
}

.btn-show-gallery {
  margin-top: 20px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-show-gallery:hover {
  background: var(--gold);
  color: #111;
}

/* Feature overlays */
.feat-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.86) 0%, rgba(0,0,0,0.2) 55%, transparent 100%) !important;
}

/* Footer refinement */
footer {
  border-top: 1px solid rgba(184,151,106,0.18);
}

.footer-links a {
  color: rgba(255,255,255,0.55) !important;
}

.footer-links a:hover {
  color: var(--gold-light) !important;
}

/* Collapsible Gallery */
.extra-photo {
  display: none !important;
}

.full-gallery.expanded .extra-photo {
  display: block !important;
}

/* Mobile navbar */
@media (max-width: 900px) {
  nav,
  nav.scrolled {
    background: rgba(10,10,10,0.98) !important;
  }
}
