@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --gold: #B8860B;
  --gold-light: #D4A017;
  --gold-pale: #FBF5E6;
  --gold-glow: rgba(184,134,11,0.18);
  --dark: #0A0800;
  --dark2: #140F02;
  --dark3: #1C1402;
  --dark4: #241B03;
  --white: #FFFFFF;
  --off-white: #F8F5EE;
  --text: #18110A;
  --muted: #7A6A50;
  --border: #E5D8BF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 14px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--off-white); color: var(--text); }

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,8,0,0.97);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(184,134,11,0.18);
  padding: 0 44px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav-logo-box {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 17px; font-weight: 700;
  color: var(--dark); letter-spacing: -1px;
  box-shadow: 0 0 0 1px rgba(184,134,11,0.4), 0 4px 12px rgba(184,134,11,0.25);
}
.nav-logo-text { line-height: 1.15; }
.nav-logo-name { font-family: var(--serif); font-size: 17px; font-weight: 700; color: #F0D080; letter-spacing: 0.2px; }
.nav-logo-tagline { font-size: 9px; color: rgba(255,255,255,0.3); letter-spacing: 2.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 13px; color: rgba(255,255,255,0.58);
  text-decoration: none; padding: 7px 14px; border-radius: 7px;
  transition: all 0.2s; font-family: var(--sans); font-weight: 400; letter-spacing: 0.1px;
}
.nav-links a:hover, .nav-links a.active { color: #F0D080; background: rgba(184,134,11,0.1); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--dark2); border: 1px solid rgba(184,134,11,0.2);
  border-radius: 13px; padding: 8px; min-width: 210px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(184,134,11,0.08);
}
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.nav-links .dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 7px; width: 100%;
  color: rgba(255,255,255,0.65); font-size: 13px;
}
.nav-links .dropdown-menu a:hover { background: rgba(184,134,11,0.12); color: #F0D080; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark); padding: 10px 22px;
  border-radius: 8px; font-size: 13px; font-weight: 600;
  text-decoration: none; display: inline-block; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(184,134,11,0.35); transition: all 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: #F0D080; border-radius: 2px; }

@media(max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--dark2); padding: 16px 20px; gap: 4px;
    border-bottom: 1px solid rgba(184,134,11,0.18);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  }
  .nav-links.open a { width: 100%; padding: 10px 14px; }
  .nav-links .dropdown-menu { position: static; display: block; box-shadow: none; border: none; padding: 0 0 0 12px; margin: 4px 0; }
}

/* ===================== HERO ===================== */
.hero {
  background: var(--dark);
  min-height: 90vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 90px 40px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184,134,11,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(184,134,11,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(184,134,11,0.05) 0%, transparent 60%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0) 0px,
    rgba(255,255,255,0) 39px,
    rgba(184,134,11,0.03) 39px,
    rgba(184,134,11,0.03) 40px
  ),
  repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0) 0px,
    rgba(255,255,255,0) 79px,
    rgba(184,134,11,0.025) 79px,
    rgba(184,134,11,0.025) 80px
  );
}
.hero-inner { position: relative; max-width: 720px; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.3);
  color: #F0D080; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  padding: 8px 22px; border-radius: 100px; margin-bottom: 32px; font-family: var(--sans);
}
.hero h1 {
  font-family: var(--serif); font-size: 66px; font-weight: 700;
  color: #fff; line-height: 1.05; margin-bottom: 16px; letter-spacing: -1px;
}
.hero h1 span { color: #F0D080; }
.hero-sub { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 24px; }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 44px; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark); border: none; padding: 16px 36px;
  border-radius: 9px; font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: var(--sans); text-decoration: none;
  display: inline-block; letter-spacing: 0.3px;
  transition: all 0.25s; box-shadow: 0 4px 22px rgba(184,134,11,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(184,134,11,0.45); }
.btn-secondary {
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.82);
  border: 1.5px solid rgba(255,255,255,0.18); padding: 16px 36px;
  border-radius: 9px; font-size: 14px; font-weight: 400;
  cursor: pointer; font-family: var(--sans); text-decoration: none;
  display: inline-block; transition: all 0.25s;
}
.btn-secondary:hover { border-color: rgba(184,134,11,0.5); color: #F0D080; background: rgba(184,134,11,0.07); }

@media(max-width:600px){
  .hero h1 { font-size: 38px; }
  .hero { min-height: 72vh; padding: 64px 24px; }
}

/* ===================== STATS ===================== */
.stats-row {
  background: var(--gold-pale); border-bottom: 1.5px solid rgba(184,134,11,0.18);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat { text-align: center; padding: 28px 20px; border-right: 1px solid rgba(184,134,11,0.12); }
.stat:last-child { border-right: none; }
.stat-n { font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-l { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }
@media(max-width:600px){ .stats-row { grid-template-columns: 1fr 1fr; } }

/* ===================== SECTIONS ===================== */
.section { padding: 80px 44px; }
.section-white { background: var(--white); }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--dark); }

.section-head { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  display: inline-block; font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 16px; padding: 5px 16px;
  background: rgba(184,134,11,0.08); border: 1px solid rgba(184,134,11,0.2); border-radius: 100px;
}
.section-head h2 { font-family: var(--serif); font-size: 44px; font-weight: 700; line-height: 1.15; margin-bottom: 14px; color: var(--text); }
.section-head h2 span { color: var(--gold); }
.section-head p { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.75; font-weight: 300; }

/* ===================== PAGE HERO ===================== */
.page-hero {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark4) 50%, var(--dark) 100%);
  padding: 72px 44px 60px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(184,134,11,0.1) 0%, transparent 65%),
    repeating-linear-gradient(55deg, rgba(184,134,11,0.025) 0px, rgba(184,134,11,0.025) 1px, transparent 1px, transparent 28px);
}
.page-hero-inner { max-width: 700px; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: #F0D080; }
.breadcrumb span { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: rgba(255,255,255,0.55); }
.page-hero-icon { font-size: 44px; margin-bottom: 18px; }
.page-hero h1 { font-family: var(--serif); font-size: 52px; font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.1; letter-spacing: -0.5px; }
.page-hero h1 span { color: #F0D080; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.58); line-height: 1.8; font-weight: 300; }

/* ===================== CARDS ===================== */
.card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1100px; margin: 0 auto; }
.card-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
@media(max-width:720px){ .card-grid-2 { grid-template-columns: 1fr; } }

.info-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px;
  transition: all 0.3s; cursor: default;
}
.info-card:hover {
  border-color: rgba(184,134,11,0.35);
  box-shadow: 0 12px 40px rgba(184,134,11,0.08), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.info-card-icon { font-size: 32px; margin-bottom: 16px; }
.info-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.info-card p { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; }

.highlight-card {
  background: linear-gradient(145deg, var(--dark2), var(--dark4));
  border: 1px solid rgba(184,134,11,0.25);
  border-radius: var(--radius-lg); padding: 36px;
  position: relative; overflow: hidden;
}
.highlight-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(184,134,11,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.highlight-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 700; color: #F0D080; margin-bottom: 10px; }
.highlight-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; font-weight: 300; }

/* ===================== FEATURE LIST ===================== */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text); line-height: 1.65; }
.check {
  width: 22px; height: 22px; min-width: 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #0A0800; margin-top: 1px;
}

/* ===================== RATE TABLE ===================== */
.rate-table { width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: 14px; }
.rate-table thead th {
  background: var(--dark); color: #F0D080;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 18px; text-align: left; font-weight: 600;
}
.rate-table tbody td { padding: 16px 18px; border-bottom: 1px solid var(--border); color: var(--text); }
.rate-table tbody tr:last-child td { border-bottom: none; }
.rate-table tbody tr:hover td { background: rgba(184,134,11,0.04); }
.rate-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  padding: 3px 9px; border-radius: 5px;
  background: rgba(184,134,11,0.12); color: #7A5800; border: 1px solid rgba(184,134,11,0.2);
}

/* ===================== EMI CALCULATOR ===================== */
.emi-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  background: linear-gradient(145deg, var(--dark), var(--dark4));
  border: 1px solid rgba(184,134,11,0.2); border-radius: var(--radius-lg);
  padding: 36px; max-width: 860px; margin: 0 auto;
}
@media(max-width:680px){ .emi-wrap { grid-template-columns: 1fr; } }
.emi-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 8px; display: flex; justify-content: space-between; align-items: center; font-family: var(--sans); text-transform: uppercase; letter-spacing: 1px; }
.emi-label span { font-size: 14px; color: #F0D080; font-weight: 600; text-transform: none; letter-spacing: 0; }
input[type=range] {
  width: 100%; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,0.1); outline: none; margin-bottom: 24px;
  accent-color: var(--gold-light);
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-light); border: 3px solid var(--dark); box-shadow: 0 0 0 2px var(--gold-light);
}
.emi-result {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(184,134,11,0.2);
  border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; justify-content: center;
}
.emi-result-label { font-size: 10px; letter-spacing: 3px; color: rgba(255,255,255,0.35); margin-bottom: 10px; text-transform: uppercase; }
.emi-result-amount { font-family: var(--serif); font-size: 50px; font-weight: 700; color: #F0D080; line-height: 1; margin-bottom: 24px; }
.emi-breakdown { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 18px; }
.emi-row { display: flex; justify-content: space-between; margin-bottom: 12px; }
.emi-row span { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; }
.emi-row strong { font-size: 13px; color: rgba(255,255,255,0.82); font-weight: 500; }
.emi-apply-btn {
  margin-top: 24px; width: 100%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark); border: none; padding: 15px;
  border-radius: 10px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: var(--sans); text-decoration: none; display: block; text-align: center;
  box-shadow: 0 4px 16px rgba(184,134,11,0.3); transition: all 0.2s;
}
.emi-apply-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ===================== STEPS ===================== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0; position: relative; max-width: 900px; margin: 0 auto; }
.step-item { text-align: center; padding: 28px 18px; position: relative; }
.step-item:not(:last-child)::after {
  content: '→'; position: absolute; right: -10px; top: 36px;
  color: var(--gold); font-size: 22px; z-index: 1; opacity: 0.7;
}
.step-num {
  width: 54px; height: 54px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--dark);
  box-shadow: 0 4px 16px rgba(184,134,11,0.3);
}
.step-title { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }
@media(max-width:600px){ .step-item:not(:last-child)::after { display: none; } }

/* ===================== CONTACT FORM ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; max-width: 1000px; margin: 0 auto; }
@media(max-width:720px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: linear-gradient(160deg, var(--dark), var(--dark4)); border-radius: var(--radius-lg); padding: 40px; border: 1px solid rgba(184,134,11,0.18); }
.contact-info h3 { font-family: var(--serif); font-size: 28px; font-weight: 700; color: #F0D080; margin-bottom: 10px; }
.contact-info p { font-size: 14px; color: rgba(255,255,255,0.48); margin-bottom: 30px; line-height: 1.8; font-weight: 300; }
.c-row { display: flex; gap: 15px; margin-bottom: 22px; }
.c-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.22); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.c-info-label { font-size: 10px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 4px; }
.c-info-value { font-size: 14px; color: #fff; font-weight: 400; }
.c-info-value a { color: #F0D080; text-decoration: none; }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.contact-form h3 { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.contact-form p { font-size: 13px; color: var(--muted); margin-bottom: 26px; font-weight: 300; }
.f-group { margin-bottom: 18px; }
.f-label { font-size: 11px; font-weight: 600; color: #666; display: block; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.f-input, .f-select, .f-textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 9px;
  font-size: 14px; font-family: var(--sans); color: var(--text);
  background: #FAFAF5; outline: none; transition: all 0.2s;
  font-weight: 300;
}
.f-input:focus, .f-select:focus, .f-textarea:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(184,134,11,0.08); }
.f-textarea { resize: vertical; min-height: 90px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:500px){ .f-row { grid-template-columns: 1fr; } }
.f-submit {
  width: 100%; background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark); border: none; padding: 16px;
  border-radius: 10px; font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: var(--sans);
  box-shadow: 0 4px 18px rgba(184,134,11,0.28); transition: all 0.25s;
}
.f-submit:hover { opacity: 0.9; transform: translateY(-1px); }

/* ===================== WHY CARDS ===================== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; }
.why-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 26px 18px; text-align: center;
  transition: all 0.25s;
}
.why-card:hover { border-color: rgba(184,134,11,0.35); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(184,134,11,0.08); }
.why-card-icon { font-size: 32px; margin-bottom: 14px; }
.why-card h4 { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: linear-gradient(135deg, var(--dark), var(--dark4));
  padding: 70px 44px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(184,134,11,0.1) 0%, transparent 65%);
}
.cta-banner h2 { font-family: var(--serif); font-size: 40px; font-weight: 700; color: #fff; margin-bottom: 12px; position: relative; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 32px; line-height: 1.75; font-weight: 300; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===================== FOOTER ===================== */
.footer { background: var(--dark); padding: 60px 44px 30px; border-top: 1px solid rgba(184,134,11,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
@media(max-width:700px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:420px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-about p { font-size: 13px; color: rgba(255,255,255,0.32); line-height: 1.9; margin-top: 14px; font-weight: 300; }
.footer-logo-name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: #F0D080; }
.footer-h { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: #F0D080; margin-bottom: 18px; font-weight: 600; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: #F0D080; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); font-weight: 300; }
.footer-badges { display: flex; gap: 8px; }
.f-badge { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.3); font-size: 10px; padding: 5px 14px; border-radius: 6px; letter-spacing: 0.5px; }

/* ===================== WHATSAPP ===================== */
.wa-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 60px; height: 60px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; text-decoration: none; z-index: 999;
  box-shadow: 0 4px 22px rgba(37,211,102,0.4), 0 0 0 4px rgba(37,211,102,0.12);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.1); }

/* ===================== PROP CARDS ===================== */
.prop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.prop-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; }
.prop-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: rgba(184,134,11,0.3); }
.prop-img { height: 165px; display: flex; align-items: center; justify-content: center; font-size: 60px; position: relative; }
.prop-badge { position: absolute; top: 14px; left: 14px; font-size: 10px; font-weight: 700; padding: 5px 13px; border-radius: 7px; font-family: var(--sans); letter-spacing: 0.3px; }
.b-sale { background: #C8E6A0; color: #1F5200; }
.b-rent { background: #B8D8F8; color: #0A3A7A; }
.b-new { background: #F0D080; color: #4A2800; }
.b-comm { background: #E0D0FF; color: #400880; }
.prop-body { padding: 20px; }
.prop-name { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--text); }
.prop-loc { font-size: 12px; color: var(--muted); margin: 5px 0 11px; font-weight: 300; }
.prop-price { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--gold); }
.prop-meta { font-size: 12px; color: var(--muted); margin-top: 5px; margin-bottom: 15px; font-weight: 300; }
.prop-btn {
  width: 100%; background: transparent; border: 1.5px solid var(--gold);
  color: var(--gold); padding: 10px; border-radius: 9px;
  font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--sans); transition: all 0.2s;
}
.prop-btn:hover { background: var(--gold); color: var(--dark); }

@media(max-width:600px){
  .section { padding: 52px 22px; }
  .cta-banner { padding: 52px 22px; }
  .footer { padding: 44px 22px 26px; }
  .page-hero { padding: 56px 22px 48px; }
  .page-hero h1 { font-size: 32px; }
}
