:root {
  --vc-bg: #F5F7FA;
  --vc-surface: #FFFFFF;
  --vc-surface-2: #EDF1F5;
  --vc-border: #DCE3EB;
  --vc-ink: #102036;
  --vc-ink-2: #183048;
  --vc-heading: #12263D;
  --vc-body: #2E4155;
  --vc-muted: #5F7083;
  --vc-primary: #304878;
  --vc-primary-strong: #183048;
  --vc-primary-bright: #3C5C94;
  --vc-primary-soft: #E2E8F2;
  --vc-gold: #C09060;
  --vc-gold-bright: #D2A878;
  --vc-gold-soft: #F5EEE0;
  --vc-indigo: #4F46E5;
  --vc-indigo-soft: #E8E8FC;
  --vc-amber: #D97706;
  --vc-amber-soft: #FCEFDB;
  --vc-rose: #BE123C;
  --vc-rose-soft: #FBE4E9;
  --vc-shadow: 0 10px 30px rgba(12, 26, 43, .08);
  --vc-shadow-lg: 0 24px 60px rgba(12, 26, 43, .14);
  --vc-nav-glass: rgba(255, 255, 255, .82);
}

[data-theme="dark"] {
  --vc-bg: #0A111C;
  --vc-surface: #111A28;
  --vc-surface-2: #172231;
  --vc-border: #24344B;
  --vc-ink: #070D16;
  --vc-ink-2: #101B2E;
  --vc-heading: #EAF1F9;
  --vc-body: #C2D0DF;
  --vc-muted: #8799AC;
  --vc-primary: #7C9AD0;
  --vc-primary-strong: #6080BC;
  --vc-primary-bright: #97B2E4;
  --vc-primary-soft: #15243D;
  --vc-gold: #D2A878;
  --vc-gold-bright: #E0BC90;
  --vc-gold-soft: #38301C;
  --vc-indigo: #8B87F5;
  --vc-indigo-soft: #232244;
  --vc-amber: #F0A93B;
  --vc-amber-soft: #3A2B10;
  --vc-rose: #F26D8D;
  --vc-rose-soft: #3C1520;
  --vc-shadow: 0 10px 30px rgba(0, 0, 0, .45);
  --vc-shadow-lg: 0 24px 60px rgba(0, 0, 0, .55);
  --vc-nav-glass: rgba(10, 17, 28, .82);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--vc-bg);
  color: var(--vc-body);
  transition: background-color .25s ease, color .25s ease;
}

h1, h2, .display-font { font-family: 'Fraunces', Georgia, serif; font-weight: 600; letter-spacing: -.01em; color: var(--vc-heading); }
h3, h4, h5, h6 { color: var(--vc-heading); font-weight: 700; }
a { color: var(--vc-primary); }
p { color: var(--vc-body); }

.text-gold { color: var(--vc-gold) !important; }
.text-primary-vc { color: var(--vc-primary) !important; }
.bg-surface { background: var(--vc-surface) !important; }
.border-vc { border-color: var(--vc-border) !important; }
.ls-wide { letter-spacing: .2em; }
.fw-extrabold { font-weight: 800; }

.topbar { background: var(--vc-ink); font-size: .78rem; color: #A7BBD0; }
.topbar strong { color: #EEF4FA; }
.topbar .topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,.18); }
.topbar a.topbar-link { color: #A7BBD0; text-decoration: none; transition: color .15s; }
.topbar a.topbar-link:hover { color: var(--vc-gold-bright); }

.site-navbar {
  background: var(--vc-nav-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--vc-border);
}
.site-navbar .nav-link {
  color: var(--vc-muted); font-weight: 500; font-size: .92rem;
  padding-inline: .85rem; position: relative; border-radius: .5rem;
}
.site-navbar .nav-link:hover { color: var(--vc-heading); }
.site-navbar .nav-link.active { color: var(--vc-primary); font-weight: 600; }
.site-navbar .nav-link.active::after {
  content: ''; position: absolute; left: .85rem; right: .85rem; bottom: 2px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--vc-gold-bright), var(--vc-gold));
}
.navbar-toggler { border-color: var(--vc-border); color: var(--vc-heading); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(15,27,22,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
[data-theme="dark"] .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(236,243,238,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--vc-border); background: var(--vc-surface);
  color: var(--vc-muted); display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.theme-toggle:hover { color: var(--vc-gold); border-color: var(--vc-gold); transform: rotate(15deg); }

.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--vc-primary-bright), var(--vc-primary-strong));
  color: #fff; font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(48, 72, 120, .35);
}
[data-theme="dark"] .brand-mark { box-shadow: 0 4px 14px rgba(124, 154, 208, .25); }
.brand-mark-lg { width: 46px; height: 46px; font-size: 1.2rem; }
.brand-logo {
  height: 44px; width: auto; max-width: 230px; object-fit: contain; display: block;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(48, 72, 120, .22);
}
[data-theme="dark"] .brand-logo { box-shadow: 0 4px 14px rgba(124, 154, 208, .22); }
.brand-logo-lg { height: 62px; max-width: 310px; }
@media (max-width: 991.98px) { .brand-logo { height: 40px; } .brand-logo-lg { height: 56px; } }

.btn { border-radius: .65rem; font-weight: 600; }
.btn-primary-vc {
  --bs-btn-bg: transparent; --bs-btn-border-color: transparent;
  background: linear-gradient(135deg, var(--vc-primary-bright), var(--vc-primary-strong));
  color: #fff;
}
.btn-primary-vc:hover, .btn-primary-vc:focus { color: #fff; filter: brightness(1.08); box-shadow: 0 8px 20px rgba(48, 72, 120, .3); }
.btn-gold {
  background: linear-gradient(135deg, var(--vc-gold-bright), var(--vc-gold));
  border: 0; color: #fff;
}
.btn-gold:hover, .btn-gold:focus { color: #fff; filter: brightness(1.07); box-shadow: 0 8px 20px rgba(183, 121, 31, .3); }
.btn-outline-ink {
  --bs-btn-color: var(--vc-heading); --bs-btn-border-color: var(--vc-border);
  --bs-btn-hover-bg: var(--vc-ink); --bs-btn-hover-border-color: var(--vc-ink); --bs-btn-hover-color: #fff;
}
.btn-outline-vc {
  --bs-btn-color: var(--vc-primary); --bs-btn-border-color: var(--vc-primary);
  --bs-btn-hover-bg: var(--vc-primary); --bs-btn-hover-border-color: var(--vc-primary); --bs-btn-hover-color: #fff;
}

.hero-section {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 88% -12%, rgba(214, 158, 46, .16), transparent 60%),
    radial-gradient(800px 520px at -12% 30%, rgba(48, 72, 120, .14), transparent 60%),
    var(--vc-bg);
}
[data-theme="dark"] .hero-section {
  background:
    radial-gradient(900px 480px at 88% -12%, rgba(227, 179, 65, .1), transparent 60%),
    radial-gradient(800px 520px at -12% 30%, rgba(124, 154, 208, .12), transparent 60%),
    var(--vc-bg);
}
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(currentColor 1px, transparent 1.4px);
  background-size: 22px 22px; opacity: .05; color: var(--vc-heading);
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem; border-radius: 50rem;
  background: var(--vc-primary-soft); color: var(--vc-primary);
  font-size: .78rem; font-weight: 600; letter-spacing: .02em;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { transform: scale(1); opacity: 1 } 50% { transform: scale(1.5); opacity: .55 } }
.hero-title { font-size: clamp(2.1rem, 4.2vw, 3.4rem); line-height: 1.12; }
.hero-title em { font-style: italic; color: var(--vc-primary); }
.hero-check { color: var(--vc-muted); font-size: .92rem; font-weight: 500; }

.collage-wrap { position: relative; max-width: 520px; margin-inline: auto; padding-bottom: 3rem; }
.collage-main {
  width: 100%; height: 400px; object-fit: cover;
  border-radius: 26px; box-shadow: var(--vc-shadow-lg);
  border: 6px solid var(--vc-surface);
}
.collage-sub {
  position: absolute; left: -8%; bottom: 0;
  width: 52%; height: 170px; object-fit: cover;
  border-radius: 20px; border: 6px solid var(--vc-surface);
  box-shadow: var(--vc-shadow-lg);
}
.float-chip {
  position: absolute; z-index: 2;
  background: var(--vc-nav-glass); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--vc-border); border-radius: 1rem;
  box-shadow: var(--vc-shadow); padding: .7rem 1rem;
  animation: float-y 5s ease-in-out infinite;
}
.float-chip.chip-a { top: 8%; right: -4%; }
.float-chip.chip-b { bottom: 14%; right: -6%; animation-delay: 1.6s; }
.float-chip .fc-value { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.05rem; color: var(--vc-heading); line-height: 1.1; }
.float-chip .fc-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--vc-muted); }
@keyframes float-y { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-9px) } }
@media (max-width: 991.98px) {
  .collage-sub { left: 0; } .float-chip.chip-a { right: 0; } .float-chip.chip-b { right: 0; bottom: 4%; }
  .collage-main { height: 320px; }
}

.glass-card {
  background: var(--vc-nav-glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--vc-border); border-radius: 1.25rem;
}

.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 300px at 90% -30%, rgba(214, 158, 46, .22), transparent 60%),
    radial-gradient(600px 380px at -8% 130%, rgba(18, 134, 111, .28), transparent 60%),
    linear-gradient(140deg, var(--vc-ink), var(--vc-ink-2));
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; color: #fff; opacity: .06;
  background-image: radial-gradient(currentColor 1px, transparent 1.4px); background-size: 20px 20px;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.65); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--vc-gold); font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em;
}
.section-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--vc-gold); border-radius: 2px; }
.section-title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.title-rule { width: 58px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--vc-gold-bright), var(--vc-gold)); }

.property-card {
  background: var(--vc-surface); border: 1px solid var(--vc-border) !important;
  border-radius: 1.1rem; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--vc-shadow-lg) !important; border-color: var(--vc-primary) !important; }
.property-img { height: 225px; object-fit: cover; width: 100%; transition: transform .55s ease; }
.property-card:hover .property-img { transform: scale(1.06); }
.property-chip {
  position: absolute; top: 12px; left: 12px;
  background: rgba(10, 18, 14, .72); backdrop-filter: blur(6px);
  color: #fff; font-size: .64rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .3rem .7rem; border-radius: 50rem;
}
.sold-chip {
  position: absolute; top: 12px; right: 12px;
  background: linear-gradient(135deg, #F43F5E, #BE123C);
  color: #fff; font-size: .64rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .3rem .7rem; border-radius: 50rem;
}
.property-card .card-title-a { color: var(--vc-heading); transition: color .15s; }
.property-card:hover .card-title-a { color: var(--vc-primary); }
.price-tag { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.25rem; color: var(--vc-primary); }
.enquire-link { font-size: .82rem; font-weight: 700; color: var(--vc-heading); text-decoration: none; display: inline-flex; align-items: center; gap: .45rem; }
.enquire-link i { color: var(--vc-gold); transition: transform .2s; }
.enquire-link:hover { color: var(--vc-primary); }
.enquire-link:hover i { transform: translateX(4px); }

.stat-band {
  position: relative; overflow: hidden; border-radius: 1.5rem;
  background: linear-gradient(130deg, var(--vc-primary-strong) 0%, var(--vc-primary) 55%, #3C5C94 100%);
}
[data-theme="dark"] .stat-band { background: linear-gradient(130deg, #183048, #304878 60%, #3C5C94); }
.stat-band::before {
  content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  border: 40px solid rgba(255,255,255,.06); top: -160px; right: -80px;
}
.stat-band::after {
  content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  border: 30px solid rgba(255,255,255,.05); bottom: -120px; left: 12%;
}
.stat-band .row { position: relative; z-index: 1; }
.stat-glass {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 1rem; padding: 1.15rem 1.25rem; height: 100%;
  backdrop-filter: blur(4px);
}
.stat-glass .stat-value { font-family: 'Fraunces', serif; font-size: 1.9rem; font-weight: 700; color: #F3CE79; line-height: 1.1; }
.stat-glass .stat-label { font-size: .74rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .1em; }

.loan-card {
  position: relative; overflow: hidden;
  background: var(--vc-surface); border: 1px solid var(--vc-border);
  border-radius: 1.1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.loan-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--lc, var(--vc-primary)); opacity: 0; transition: opacity .2s;
}
.loan-card:hover { transform: translateY(-5px); box-shadow: var(--vc-shadow-lg); }
.loan-card:hover::before { opacity: 1; }
.icon-chip {
  width: 50px; height: 50px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.icon-chip.emerald { background: var(--vc-primary-soft); color: var(--vc-primary); }
.icon-chip.indigo { background: var(--vc-indigo-soft); color: var(--vc-indigo); }
.icon-chip.amber { background: var(--vc-amber-soft); color: var(--vc-amber); }
.icon-chip.rose { background: var(--vc-rose-soft); color: var(--vc-rose); }
.icon-chip.gold { background: var(--vc-gold-soft); color: var(--vc-gold); }

.value-tile { background: var(--vc-surface); border: 1px solid var(--vc-border); border-radius: 1.1rem; transition: transform .2s, box-shadow .2s; }
.value-tile:hover { transform: translateY(-4px); box-shadow: var(--vc-shadow); }

.pill-filter {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem 1.05rem; border-radius: 50rem;
  background: var(--vc-surface); border: 1px solid var(--vc-border);
  color: var(--vc-body); font-size: .82rem; font-weight: 600;
  text-decoration: none; transition: all .15s;
}
.pill-filter:hover { border-color: var(--vc-primary); color: var(--vc-primary); }
.pill-filter.active { background: var(--vc-primary); border-color: var(--vc-primary); color: #fff; box-shadow: 0 6px 16px rgba(27,74,122,.25); }

.cta-panel {
  position: relative; overflow: hidden; border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--vc-ink) 0%, var(--vc-ink-2) 100%);
}
.cta-panel::after {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,158,46,.25), transparent 65%);
  top: -180px; right: -120px;
}
.cta-panel > * { position: relative; z-index: 1; }

.partner-chip {
  display: inline-block; padding: .55rem 1.15rem; border-radius: .8rem;
  background: var(--vc-surface); border: 1px solid var(--vc-border);
  color: var(--vc-heading); font-weight: 600; font-size: .95rem;
  transition: all .15s;
}
.partner-chip:hover { border-color: var(--vc-gold); color: var(--vc-gold); transform: translateY(-2px); box-shadow: var(--vc-shadow); }

.spec-row { display: flex; justify-content: space-between; padding: .65rem 0; border-bottom: 1px dashed var(--vc-border); font-size: .9rem; }
.spec-row:last-child { border-bottom: 0; }
.spec-row .spec-k { color: var(--vc-muted); }
.spec-row .spec-v { color: var(--vc-heading); font-weight: 600; }

.site-footer { background: var(--vc-ink); }
.site-footer h6 { color: #fff; }
.site-footer p, .site-footer li { color: #A6BBD0; }
.footer-links a, .footer-contact a { color: #A6BBD0; text-decoration: none; display: inline-block; padding: .18rem 0; transition: color .15s, transform .15s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--vc-gold-bright); transform: translateX(3px); }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14);
  display: inline-flex; align-items: center; justify-content: center; color: #A6BBD0;
  transition: all .2s;
}
.footer-social a:hover { background: var(--vc-gold); border-color: var(--vc-gold); color: var(--vc-ink); }

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1040;
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, #34D399, #059669);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; text-decoration: none;
  box-shadow: 0 10px 26px rgba(5, 150, 105, .45);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

.form-control, .form-select {
  border-color: var(--vc-border); background-color: var(--vc-surface); color: var(--vc-heading);
}
.form-control::placeholder { color: var(--vc-muted); opacity: .7; }
.form-control:focus, .form-select:focus {
  border-color: var(--vc-primary); background-color: var(--vc-surface); color: var(--vc-heading);
  box-shadow: 0 0 0 .22rem rgba(48, 72, 120, .16);
}
.form-label { color: var(--vc-heading); }
.input-group-text { background: var(--vc-surface-2); border-color: var(--vc-border); color: var(--vc-muted); }

.table-vcore { --bs-table-bg: transparent; }
.table-vcore thead { background: var(--vc-surface-2); }
.table-vcore thead th { color: var(--vc-muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; white-space: nowrap; border-bottom: 1px solid var(--vc-border); }
.table-vcore td { border-color: var(--vc-border); vertical-align: middle; }
.table-vcore tbody tr:hover td { background: var(--vc-surface-2); }

.status-new { background: var(--vc-amber-soft); color: var(--vc-amber); }
.status-contacted { background: var(--vc-indigo-soft); color: var(--vc-indigo); }
.status-closed { background: var(--vc-primary-soft); color: var(--vc-primary); }

.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 250px; flex-shrink: 0; position: sticky; top: 0; height: 100vh;
  background: var(--vc-ink); color: #A6BBD0;
  display: flex; flex-direction: column;
  transition: transform .25s ease; z-index: 1045;
}
.admin-sidebar .side-link {
  display: flex; align-items: center; gap: .8rem;
  padding: .72rem 1.1rem; margin: .15rem .8rem; border-radius: .7rem;
  color: #A6BBD0; text-decoration: none; font-size: .92rem; font-weight: 500;
  transition: all .15s;
}
.admin-sidebar .side-link:hover { background: rgba(255,255,255,.06); color: #fff; }
.admin-sidebar .side-link.active {
  background: linear-gradient(135deg, rgba(151, 178, 228, .18), rgba(151, 178, 228, .08));
  color: var(--vc-primary-bright); font-weight: 600;
  box-shadow: inset 3px 0 0 var(--vc-primary-bright);
}
.admin-sidebar .side-link i { width: 20px; text-align: center; }
.sidebar-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1044; }
@media (max-width: 991.98px) {
  .admin-sidebar { position: fixed; left: 0; transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); box-shadow: var(--vc-shadow-lg); }
  .admin-sidebar.open ~ .sidebar-backdrop { display: block; }
}
.admin-main { flex: 1; min-width: 0; display: flex; flex-direction: column; background: var(--vc-bg); }
.admin-topbar {
  background: var(--vc-surface); border-bottom: 1px solid var(--vc-border);
  padding: .8rem 1.5rem; position: sticky; top: 0; z-index: 1030;
}
.admin-content { padding: 1.75rem 1.5rem 3rem; }

.burger-btn {
  width: 38px; height: 38px; border-radius: .6rem; border: 1px solid var(--vc-border);
  background: transparent; color: var(--vc-heading);
  display: inline-flex; align-items: center; justify-content: center;
}

.admin-stat { background: var(--vc-surface); border: 1px solid var(--vc-border); border-radius: 1rem; padding: 1.15rem 1.25rem; height: 100%; transition: transform .15s, box-shadow .15s; }
.admin-stat:hover { transform: translateY(-3px); box-shadow: var(--vc-shadow); }
.admin-stat .stat-value { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 700; color: var(--vc-heading); line-height: 1.15; }
.admin-stat .stat-label { font-size: .72rem; color: var(--vc-muted); text-transform: uppercase; letter-spacing: .1em; }
.admin-stat .tile-icon { width: 42px; height: 42px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; }

.card { background: var(--vc-surface); border-color: var(--vc-border); }
.card-header { border-color: var(--vc-border) !important; }
[data-theme="dark"] .card-header.bg-white { background: var(--vc-surface) !important; color: var(--vc-heading); }
[data-theme="dark"] .bg-light { background: var(--vc-surface-2) !important; color: var(--vc-body); }
.list-group-item { background: var(--vc-surface); border-color: var(--vc-border); color: var(--vc-body); }
.badge.bg-light { background: var(--vc-surface-2) !important; color: var(--vc-body) !important; border: 1px solid var(--vc-border); }

.login-split { min-height: 100vh; display: flex; }
.login-brand {
  flex: 1; position: relative; overflow: hidden;
  background:
    radial-gradient(700px 400px at 85% 10%, rgba(211,179,119,.25), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(46,110,172,.35), transparent 60%),
    linear-gradient(150deg, #0E1C31, #183048);
  color: #fff; display: flex; flex-direction: column; justify-content: center; padding: 3.5rem;
}
.login-brand::before {
  content: ''; position: absolute; inset: 0; opacity: .07; color: #fff;
  background-image: radial-gradient(currentColor 1px, transparent 1.4px); background-size: 22px 22px;
}
.login-brand > * { position: relative; z-index: 1; }
.login-form-side { flex: 1; display: flex; align-items: center; justify-content: center; padding: 2rem; background: var(--vc-bg); }
@media (max-width: 991.98px) { .login-brand { display: none; } }

.alert-success { --bs-alert-bg: var(--vc-primary-soft); --bs-alert-color: var(--vc-primary-strong); --bs-alert-border-color: transparent; }
[data-theme="dark"] .alert-success { --bs-alert-color: var(--vc-primary-bright); }
.alert-danger { --bs-alert-bg: var(--vc-rose-soft); --bs-alert-color: var(--vc-rose); --bs-alert-border-color: transparent; }

.pagination { --bs-pagination-active-bg: var(--vc-primary); --bs-pagination-active-border-color: var(--vc-primary); --bs-pagination-color: var(--vc-primary); }
.page-link { background: var(--vc-surface); border-color: var(--vc-border); color: var(--vc-primary); }
.page-item.disabled .page-link { background: var(--vc-surface-2); }

.modal-content { background: var(--vc-surface); }

.hero-search {
  display: flex; align-items: stretch; gap: .25rem;
  background: var(--vc-surface); border: 1px solid var(--vc-border);
  border-radius: 1.1rem; padding: .55rem; max-width: 780px; margin-inline: auto;
  box-shadow: var(--vc-shadow-lg); position: relative; z-index: 2;
}
.hs-field { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: .35rem 1rem; min-width: 0; }
.hs-field label {
  font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--vc-muted); margin-bottom: .15rem;
}
.hs-field input, .hs-field select {
  border: 0; outline: none; background: transparent;
  color: var(--vc-heading); font-size: .95rem; font-weight: 500; width: 100%;
}
.hs-divider { width: 1px; background: var(--vc-border); margin: .4rem 0; }
.hs-btn { border-radius: .8rem !important; padding-block: .8rem; white-space: nowrap; }
@media (max-width: 767.98px) {
  .hero-search { flex-direction: column; gap: .5rem; }
  .hs-field { border-bottom: 1px solid var(--vc-border); padding-bottom: .6rem; }
  .hs-btn { width: 100%; }
}

.loc-tile {
  display: flex; align-items: center; gap: .9rem;
  background: var(--vc-surface); border: 1px solid var(--vc-border);
  border-radius: .95rem; padding: .85rem 1.05rem;
  text-decoration: none; height: 100%;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.loc-tile:hover { transform: translateY(-3px); box-shadow: var(--vc-shadow); border-color: var(--vc-primary); }
.loc-tile .icon-chip { width: 40px; height: 40px; font-size: .95rem; flex-shrink: 0; border-radius: 11px; }
.loc-body { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.loc-body strong { color: var(--vc-heading); font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.loc-body small { color: var(--vc-muted); font-size: .72rem; }
.loc-arrow { margin-left: auto; color: var(--vc-border); transition: color .18s, transform .18s; font-size: .75rem; }
.loc-tile:hover .loc-arrow { color: var(--vc-primary); transform: translateX(3px); }

.insight-card {
  background: var(--vc-surface); border: 1px solid var(--vc-border);
  border-radius: 1.1rem; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--vc-shadow-lg); }
.ic-thumb-wrap { height: 185px; }
.ic-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.insight-card:hover .ic-thumb { transform: scale(1.06); }
.ic-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--vc-surface) !important; font-size: .66rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: .32rem .75rem !important;
}
.ic-tag.icon-amber { color: var(--vc-amber); }
.ic-tag.icon-indigo { color: var(--vc-indigo); }
.ic-tag.icon-emerald { color: var(--vc-primary); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
