:root {
  --navy: #071b34;
  --navy-2: #123a63;
  --gold: #d7ad55;
  --gold-2: #f0d48a;
  --gray: #f4f6fa;
  --ink: #111827;
  --muted: #667085;
  --white: #ffffff;
  --line: #e6ebf2;
  --shadow: 0 22px 55px rgba(7, 27, 52, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { color: var(--ink); font-family: "Inter", "Segoe UI", Arial, sans-serif; background: #fff; }
a { color: inherit; text-decoration: none; }
.site-header { background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(230,235,242,.9); box-shadow: 0 14px 42px rgba(7,27,52,.08); backdrop-filter: blur(18px); }
.navbar { min-height: 76px; }
.navbar-brand { color: var(--navy); font-weight: 900; letter-spacing: 0; display: inline-flex; align-items: center; gap: 9px; }
.navbar-brand span:not(.brand-mark) { color: var(--gold); }
.brand-mark { width: 38px; height: 38px; display: inline-grid; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(145deg, var(--gold), #9f741d); box-shadow: 0 10px 24px rgba(215,173,85,.34); }
.site-logo { display: block; width: auto; height: auto; max-width: 180px; max-height: 46px; object-fit: contain; }
.nav-link { color: var(--navy); font-weight: 700; position: relative; padding-inline: 10px !important; }
.nav-link::after { content: ""; position: absolute; left: 10px; right: 10px; bottom: 2px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-link:hover::after { transform: scaleX(1); }
.btn { transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-gold, .btn-navy { border: 0; border-radius: 7px; font-weight: 800; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy); box-shadow: 0 14px 28px rgba(215,173,85,.3); }
.btn-gold:hover { background: linear-gradient(135deg, #e3bb65, #f6de97); color: var(--navy); box-shadow: 0 16px 32px rgba(215,173,85,.4); }
.btn-navy { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; box-shadow: 0 14px 28px rgba(7,27,52,.18); }
.btn-navy:hover { background: linear-gradient(135deg, #0d2749, #174772); color: #fff; }
.hero { min-height: calc(100vh - 76px); display: flex; align-items: center; color: #fff; position: relative; overflow: hidden; background: linear-gradient(100deg, rgba(7,27,52,.95) 0%, rgba(7,27,52,.78) 43%, rgba(7,27,52,.25) 100%), url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1900&q=85") center/cover; }
.hero::before { content: ""; position: absolute; inset: auto 0 0 0; height: 46%; background: linear-gradient(0deg, rgba(7,27,52,.82), transparent); pointer-events: none; }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -120px; top: 10%; border: 1px solid rgba(215,173,85,.22); border-radius: 50%; box-shadow: inset 0 0 0 70px rgba(255,255,255,.04); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.45rem, 5.5vw, 5.6rem); font-weight: 900; line-height: .98; max-width: 780px; text-wrap: balance; }
.hero p { max-width: 680px; color: rgba(255,255,255,.86); font-size: 1.12rem; line-height: 1.8; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; backdrop-filter: blur(10px); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.9); font-weight: 700; font-size: .9rem; }
.hero-trust i { color: var(--gold-2); }
.search-panel { background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.65); border-radius: 10px; padding: 24px; box-shadow: 0 30px 70px rgba(0,0,0,.28); backdrop-filter: blur(18px); }
.search-title { margin-bottom: 16px; }
.search-title span { color: var(--gold); font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.search-title strong { display: block; color: var(--navy); font-size: 1.35rem; }
.search-panel .form-control, .search-panel .form-select { min-height: 52px; border-color: var(--line); border-radius: 7px; font-weight: 600; }
.search-panel .form-control:focus, .search-panel .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(215,173,85,.18); }
.section { padding: 82px 0; }
.section-soft { background: linear-gradient(180deg, #f7f9fc, #eef2f7); }
.section-title { max-width: 760px; margin-bottom: 34px; }
.eyebrow { color: var(--gold); font-weight: 800; text-transform: uppercase; font-size: .8rem; letter-spacing: .08em; }
.section-title h2 { color: var(--navy); font-weight: 900; font-size: clamp(2rem, 3vw, 3.25rem); letter-spacing: 0; }
.section-title p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; margin: 10px 0 0; }
.property-card { height: 100%; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; position: relative; }
.property-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.7); z-index: 1; }
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(215,173,85,.42); }
.property-card img { width: 100%; height: 250px; object-fit: cover; transition: transform .45s ease, filter .45s ease; }
.property-card:hover img { transform: scale(1.05); filter: saturate(1.08); }
.property-body { padding: 22px; position: relative; }
.property-body h5 { color: var(--navy); font-weight: 850; line-height: 1.35; }
.badge-gold { background: linear-gradient(135deg, rgba(215,173,85,.2), rgba(240,212,138,.36)); color: #7b5a15; border: 1px solid rgba(215,173,85,.3); border-radius: 999px; padding: 7px 11px; font-weight: 800; font-size: .78rem; }
.price { color: var(--navy); font-weight: 800; font-size: 1.25rem; }
.feature-box, .stat-box, .service-box, .team-card, .testimonial-card { background: rgba(255,255,255,.96); border: 1px solid var(--line); border-radius: 10px; padding: 26px; height: 100%; box-shadow: 0 14px 35px rgba(7,27,52,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-box:hover, .service-box:hover, .team-card:hover, .testimonial-card:hover, .category-box:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(215,173,85,.36); }
.feature-box i, .service-box i { color: var(--gold); font-size: 2rem; }
.category-box i { width: 48px; height: 48px; display: grid; place-items: center; color: var(--navy); background: linear-gradient(135deg, rgba(215,173,85,.2), rgba(215,173,85,.05)); border-radius: 12px; margin-bottom: 18px; }
.stat-box { position: relative; overflow: hidden; }
.stat-box::after { content: ""; position: absolute; inset: auto 18px 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.stat-box strong { color: var(--navy); display: block; font-size: 2.35rem; font-weight: 900; }
.cta { background: linear-gradient(115deg, rgba(7,27,52,.98), rgba(18,58,99,.95)), url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1600&q=80") center/cover; color: #fff; position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(215,173,85,.22); border-radius: 14px; pointer-events: none; }
.cta .container { position: relative; z-index: 1; }
.footer { background: linear-gradient(180deg, #07182d, #041020); color: rgba(255,255,255,.78); padding: 64px 0 24px; }
.footer h4, .footer h6 { color: #fff; }
.footer a { display: block; color: rgba(255,255,255,.72); margin: 8px 0; transition: color .2s ease, transform .2s ease; }
.footer a:hover { color: var(--gold-2); transform: translateX(3px); }
.footer .social-links { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; gap: 10px; margin-top: 20px; }
.footer .social-links a { width: 42px; height: 42px; display: grid; place-items: center; margin: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: #fff; font-size: 1.1rem; }
.footer .social-links a:hover { border-color: var(--gold-2); background: rgba(215,173,85,.12); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 32px; padding-top: 20px; color: rgba(255,255,255,.55); }
.float-whatsapp, .float-call { position: fixed; right: 18px; z-index: 20; width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.25); transition: transform .22s ease; }
.float-whatsapp:hover, .float-call:hover { transform: translateY(-3px) scale(1.03); }
.float-whatsapp { bottom: 86px; background: #25d366; }
.float-call { bottom: 24px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy); }
.page-hero { padding: 120px 0 82px; color: #fff; background: linear-gradient(100deg, rgba(7,27,52,.94), rgba(7,27,52,.5)), url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1700&q=85") center/cover; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; background: linear-gradient(0deg, rgba(7,27,52,.55), transparent); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-weight: 900; font-size: clamp(2.4rem, 5vw, 4.6rem); }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.1rem; }
.filter-bar { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 22px; box-shadow: var(--shadow); }
.gallery-main { width: 100%; height: 460px; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow); }
.detail-panel { border: 1px solid var(--line); border-radius: 10px; padding: 26px; background: #fff; box-shadow: 0 14px 34px rgba(7,27,52,.06); }
.amenity { display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; margin: 4px; border-radius: 999px; background: var(--gray); color: var(--navy); font-weight: 600; }
.map-frame { width: 100%; min-height: 360px; border: 0; border-radius: 10px; box-shadow: var(--shadow); }
.reveal { opacity: 0; transform: translateY(18px); transition: .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 991px) {
  .navbar { min-height: 68px; }
  .hero { min-height: auto; padding: 82px 0 58px; }
  .section { padding: 58px 0; }
  .gallery-main { height: 320px; }
  .search-panel { margin-top: 18px; }
  .hero::after { width: 330px; height: 330px; right: -170px; }
}

@media (max-width: 575px) {
  .site-logo { max-width: 145px; max-height: 38px; }
  .hero h1 { font-size: 2.45rem; }
  .search-panel { padding: 18px; }
  .hero-trust span { width: 100%; justify-content: center; }
  .property-card img { height: 220px; }
  .float-whatsapp, .float-call { width: 48px; height: 48px; right: 14px; }
}
