* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #1B3A6B;
  --navy-dark: #122850;
  --navy-light: #f0f4fa;
  --gold: #C9A84C;
  --gold-dark: #a88a38;
  --white: #ffffff;
  --cream: #FAFAF7;
  --text: #1a1a1a;
  --text-light: #666;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
}

/* NAV */
nav {
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.nav-logo {
  color: var(--white);
  text-decoration: none;
  padding: 1rem 0;
}
.nav-logo-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.nav-logo-title {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 0; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 1.2rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 4px;
  border-bottom: none !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-dark); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* PAGE HEADER */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 5%;
  text-align: center;
}
.page-header h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.page-header p { font-size: 1.1rem; opacity: 0.85; }

/* SECTIONS */
section { padding: 4rem 5%; }
.section-title {
  text-align: center;
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 0.8rem auto 2rem;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2a5298 100%);
  color: var(--white);
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text h1 { font-size: 2.8rem; line-height: 1.2; margin-bottom: 1rem; }
.hero-text h1 span { color: var(--gold); }
.hero-text p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 2rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-photo {
  text-align: center;
}
.hero-photo img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.hero-photo-placeholder {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin: 0 auto;
}

/* STATS BAR */
.stats-bar {
  background: var(--gold);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat { text-align: center; color: var(--white); }
.stat-number { font-size: 2rem; font-weight: 800; display: block; }
.stat-label { font-size: 0.8rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }

/* CARDS */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.8rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  border-top: 4px solid var(--navy);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(0,0,0,0.12); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { color: var(--navy); margin-bottom: 0.6rem; font-size: 1.1rem; }
.card p { color: var(--text-light); line-height: 1.6; font-size: 0.95rem; }

/* PROPERTY CARDS */
.property-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.property-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.property-img {
  background: var(--navy-light);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  text-transform: uppercase;
}
.property-badge.sold { background: #666; }
.property-info { padding: 1.2rem; }
.property-price { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 0.3rem; }
.property-address { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.8rem; }
.property-details { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--text-light); }
.property-details span { display: flex; align-items: center; gap: 0.3rem; }

/* CTA BANNER */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 5%;
  text-align: center;
}
.cta-banner.gold { background: var(--gold); }
.cta-banner h2 { font-size: 1.9rem; margin-bottom: 0.5rem; }
.cta-banner p { margin-bottom: 1.5rem; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; }

/* AI BOX */
.ai-box {
  background: var(--navy-light);
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
.ai-box h3 { color: var(--navy); margin-bottom: 0.5rem; }
.ai-box .phone-number { font-size: 1.6rem; font-weight: 700; color: var(--navy); margin: 0.5rem 0; }

/* TESTIMONIALS */
.testimonial {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  border-left: 4px solid var(--gold);
}
.testimonial-text { font-style: italic; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.5rem; }

/* CONTACT FORM */
.contact-form {
  background: var(--cream);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); font-size: 0.95rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; }
.about-photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border: 4px solid var(--gold);
}
.about-photo-placeholder {
  width: 100%;
  padding-top: 120%;
  background: var(--navy-light);
  border-radius: 8px;
  border: 4px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
}
.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy-light);
  border: 1px solid var(--navy);
  color: var(--navy);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0.3rem;
}
.lang-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0.2rem;
}

/* CONTACT INFO */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.2rem; align-items: flex-start; }
.contact-item .icon { font-size: 1.5rem; }
.contact-item p { color: var(--text-light); line-height: 1.6; }
.contact-item a { color: var(--navy); text-decoration: none; font-weight: 600; }
.map-embed { border-radius: 8px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.1); }

/* FOOTER */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.8);
  padding: 2.5rem 5%;
  text-align: center;
}
footer a { color: var(--gold); text-decoration: none; }
footer .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; }
footer p { font-size: 0.85rem; margin-top: 0.5rem; }
.footer-logo-name { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.footer-logo-title { font-size: 0.75rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-text h1 { font-size: 2rem; }
  .hero-photo { display: none; }
  .nav-links { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { gap: 2rem; }
}
