:root {
    --gold: #D4AF37;
    --gold-light: #F3DA84;
    --gold-dark: #8C6E20;
    --navy: #0B1B33;
    --navy-mid: #192D4E;
    --navy-light: #304F7A;
    --cream: #F8F4EB;
    --cream-mid: #E9E3D8;
    --text-light: #F4EFE9;
    --text-muted: #B9C3D1;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--text-light);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(15,27,45,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(239, 176, 3, 0.947);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
  }
  .logo span { color: var(--text-light); font-weight: 400; font-style: italic; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    font-weight: 600 !important;
  }
  .nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background:
      linear-gradient(to bottom, rgba(7, 11, 20, 0.82) 0%, rgba(8, 22, 44, 0.78) 60%, var(--navy) 100%),
      url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1800&q=80') center/cover no-repeat;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 0 5%;
    padding-top: 68px;
  }
  .hero-tag {
    display: inline-block;
    border: 1px solid rgba(212, 175, 69, 0.75);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 7px 22px;
    border-radius: 18px;
    font-size: 0.90rem; letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease both;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700; line-height: 1.1;
    color: #ffffff;
    animation: fadeUp 0.8s 0.1s ease both;
    max-width: 800px;
  }
  .hero h1 em { color: var(--gold); font-style: italic; }
  .hero p {
    margin-top: 1.2rem;
    font-size: 1.1rem; color: #F4EFE9; max-width: 520px;
    animation: fadeUp 0.8s 0.2s ease both;
    font-weight: 300;
  }
  .hero-btns {
    display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px; border-radius: 4px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    transition: transform 0.2s, background 0.2s;
    border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text-light);
    padding: 14px 32px; border-radius: 4px;
    text-decoration: none; font-weight: 500; font-size: 0.95rem;
    transition: all 0.2s; background: transparent;
    cursor: pointer;
  }
  .btn-outline:hover { border-color: rgba(212, 175, 69, 0.9); background: rgba(212,175,69,0.12); color: #ffffff; }

  .hero-stats {
    display: flex; gap: 3rem; margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 2rem;
    animation: fadeUp 0.8s 0.4s ease both;
  }
  .stat { text-align: center; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
  .stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

  /* ─── SECTIONS ─── */
  section { padding: 90px 5%; }

  .section-label {
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.6rem; font-weight: 600;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600; color: #fff; line-height: 1.2;
  }

  /* ─── FEATURED FLATS ─── */
  .properties-bg { background: var(--navy); }

  .props-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
  }

  .properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 1.5rem;
  }

  .prop-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
  }
  .prop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
    border-color: rgba(212,175,69,0.35);
  }
  .prop-img {
    width: 100%; height: 220px; object-fit: cover;
    display: block;
  }
  .prop-body { padding: 1.4rem; }
  .prop-badge {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    color: var(--gold);
    font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 20px; margin-bottom: 0.8rem;
    border: 1px solid rgba(201,168,76,0.3);
  }
  .prop-badge.available { background: rgba(34,197,94,0.12); color: #4ade80; border-color: rgba(74,222,128,0.3); }
  .prop-badge.rented { background: rgba(239,68,68,0.12); color: #f87171; border-color: rgba(248,113,113,0.3); }
  .prop-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; color: #fff; margin-bottom: 0.5rem; font-weight: 600;
  }
  .prop-location {
    font-size: 0.84rem; color: var(--text-muted);
    display: flex; align-items: center; gap: 5px; margin-bottom: 1rem;
  }
  .prop-location svg { width: 14px; height: 14px; flex-shrink: 0; }
  .prop-features {
    display: flex; gap: 1rem; margin-bottom: 1.2rem; flex-wrap: wrap;
  }
  .prop-feat {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.82rem; color: var(--text-muted);
  }
  .prop-feat svg { width: 15px; height: 15px; color: var(--gold); }
  .prop-footer {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1rem;
  }
  .prop-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); font-weight: 700; }
  .prop-price span { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }
  .prop-btn {
    background: transparent; border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold); padding: 7px 18px; border-radius: 4px;
    font-size: 0.82rem; font-weight: 500; cursor: pointer;
    transition: all 0.2s; text-decoration: none;
    display: inline-block;
  }
  .prop-btn:hover { background: var(--gold); color: var(--navy); }

  /* ─── WHY US ─── */
  .why-section { background: var(--navy-mid); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }
  .why-card {
    background: var(--navy);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 12px; padding: 1.8rem;
    transition: border-color 0.3s;
  }
  .why-card:hover { border-color: rgba(201,168,76,0.4); }
  .why-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
  }
  .why-icon svg { width: 24px; height: 24px; color: var(--gold); }
  .why-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
  .why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

  /* ─── ABOUT ─── */
  .about-section { background: var(--navy); }
  .about-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }
  @media(max-width: 820px) { .about-inner { grid-template-columns: 1fr; } }
  .about-img-wrap { position: relative; }
  .about-img {
    width: 100%; border-radius: 12px;
    aspect-ratio: 4/5; object-fit: cover;
    display: block;
  }
  .about-badge {
    position: absolute; bottom: 2rem; right: -1.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 1.2rem 1.6rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  @media(max-width: 820px) { .about-badge { right: 1rem; } }
  .about-badge-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; display: block; }
  .about-badge-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
  .about-content {}
  .about-content h2 { margin-bottom: 1.2rem; }
  .about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.96rem; }
  .about-owner {
    display: flex; align-items: center; gap: 1rem;
    margin-top: 2rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .owner-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy);
    font-weight: 700; flex-shrink: 0;
  }
  .owner-name { font-weight: 600; color: #fff; font-size: 1rem; }
  .owner-role { font-size: 0.82rem; color: var(--gold); margin-top: 2px; }

  /* ─── CONTACT ─── */
  .contact-section { background: var(--navy-mid); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; margin-top: 3rem;
  }
  @media(max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: #fff; margin-bottom: 1.5rem;
  }
  .contact-item {
    display: flex; gap: 1rem; align-items: flex-start;
    margin-bottom: 1.4rem;
  }
  .contact-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(201,168,76,0.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .contact-icon svg { width: 18px; height: 18px; color: var(--gold); }
  .contact-item-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
  .contact-item-val { font-size: 0.96rem; color: #fff; margin-top: 3px; }

  .contact-form {}
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px; color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    transition: border-color 0.2s; outline: none;
    resize: vertical;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
  }
  .form-group select option { background: var(--navy-mid); }
  .form-submit {
    width: 100%; padding: 14px;
    background: var(--gold); color: var(--navy);
    border: none; border-radius: 6px;
    font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s, transform 0.2s;
  }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ─── FOOTER ─── */
  footer {
    background: #080F1A;
    padding: 2.5rem 5%;
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.1);
  }
  footer .logo { font-size: 1.3rem; display: block; margin-bottom: 0.5rem; }
  footer p { font-size: 0.82rem; color: var(--text-muted); }
  footer a { color: var(--gold); text-decoration: none; }

  /* ─── MODAL ─── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 200;
    background: rgba(8,15,26,0.88); backdrop-filter: blur(8px);
    align-items: center; justify-content: center; padding: 1rem;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: var(--navy-mid);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 16px; padding: 2.5rem;
    max-width: 560px; width: 100%;
    position: relative; max-height: 90vh; overflow-y: auto;
  }
  .modal-close {
    position: absolute; top: 1.2rem; right: 1.2rem;
    background: none; border: none; color: var(--text-muted);
    cursor: pointer; font-size: 1.5rem; line-height: 1;
  }
  .modal h2 { font-family: 'Playfair Display', serif; color: #fff; margin-bottom: 0.5rem; }
  .modal .gold-line { width: 40px; height: 2px; background: var(--gold); margin: 0.8rem 0 1.5rem; }
  .modal-detail-row {
    display: flex; justify-content: space-between;
    padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
  }
  .modal-detail-row .label { color: var(--text-muted); }
  .modal-detail-row .val { color: #fff; font-weight: 500; }
  .modal-price { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); margin: 1.2rem 0; }

  /* ─── WHATSAPP FLOAT ─── */
  .wa-float {
    position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 150;
    background: #25D366; color: #fff;
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: transform 0.2s;
  }
  .wa-float:hover { transform: scale(1.1); }
  .wa-float svg { width: 28px; height: 28px; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-in {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  @media(max-width: 640px) {
    .hero-stats { gap: 1.5rem; }
    .nav-links { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .about-badge { right: 0.5rem; }
  }
