/* ============================================================
   Complete Realty Solutions
   Aesthetic: Assetly-inspired — clean white, slate navy,
   accent teal, sharp cards, refined sans-serif
   Fonts: Satoshi (display) + Geist (body)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Lora:ital,wght@0,600;1,500&display=swap');

:root {
  --bg:        #FFFFFF;
  --bg2:       #F7F8FA;
  --bg3:       #EFF1F5;
  --navy:      #0F1F3D;
  --navy2:     #1A3260;
  --teal:      #1D7A5F;
  --teal-lt:   #25A67E;
  --teal-pale: rgba(29, 122, 95, 0.12);
  --orange:    rgb(249, 162, 69);
  --orange-lt: rgb(251, 185, 115);
  --orange-pale: rgba(249, 162, 69, 0.12);
  --slate:     #4A5568;
  --muted:     #718096;
  --border:    #E2E8F0;
  --border2:   #CBD5E0;
  --white:     #FFFFFF;
  --text:      #1A202C;

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-pill:100px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:     0 4px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-lt); }
img { max-width: 100%; display: block; }
h1,h2,h3 { line-height: 1.2; }

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 10px; }

/* ── Flash ──────────────────────────────────────────────── */
.flash { padding: 12px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: 14px; font-weight: 500; display:flex; align-items:center; gap:8px; }
.flash.success { background:#ECFDF5; color:#065F46; border:1px solid #A7F3D0; }
.flash.error   { background:#FEF2F2; color:#991B1B; border:1px solid #FECACA; }
.flash.info    { background:#EFF6FF; color:#1E40AF; border:1px solid #BFDBFE; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; border: 1.5px solid transparent;
  transition: all var(--transition); white-space: nowrap; line-height: 1;
}
.btn-primary  { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-lt); border-color: var(--orange-lt); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(249, 162, 69, 0.25); }
.btn-teal     { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-lt); border-color: var(--teal-lt); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(29, 122, 95, 0.2); }
.btn-outline  { background: transparent; color: var(--navy); border-color: var(--border2); }
.btn-outline:hover { border-color: var(--navy); background: var(--bg2); color: var(--navy); }
.btn-ghost    { background: transparent; color: var(--slate); border-color: transparent; }
.btn-ghost:hover { background: var(--bg2); color: var(--navy); }
.btn-dark     { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover { background: var(--navy2); color: #fff; transform: translateY(-1px); }
.btn-danger   { background: #EF4444; color: #fff; border-color: #EF4444; }
.btn-danger:hover { background: #DC2626; color: #fff; }
.btn-sm       { padding: 7px 14px; font-size: 13px; border-radius: var(--radius-sm); }
.btn-lg       { padding: 13px 28px; font-size: 15px; }
.btn-pill     { border-radius: var(--radius-pill); }

/* ── Topbar ────────────────────────────────────────────── */
.topbar { background: var(--navy); color: rgba(255,255,255,0.7); font-size: 11px; padding: 10px 5%; height: 36px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.topbar-inner { display: flex; gap: 24px; max-width: 1200px; margin: 0 auto; width: 100%; }
.topbar-inner span { display: flex; align-items: center; gap: 6px; }
.topbar-inner a { color: inherit; transition: color var(--transition); }
.topbar-inner a:hover { color: #fff; }
.topbar-inner i { color: var(--teal-lt); font-size: 12px; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
  height: 66px; display: flex; align-items: center;
  padding: 0 5%; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled { top: 0; box-shadow: var(--shadow-sm); background: #fff; height: 60px; }
@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar { top: 0; }
}
.navbar .logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.navbar .logo-mark {
  width: 34px; height: 34px; background: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px; letter-spacing: -0.5px;
}
.navbar .logo-text { font-family: var(--font-display); font-size: 17px; color: var(--navy); font-weight: 600; letter-spacing: -0.3px; }
.navbar .logo-text span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0 auto; padding: 0 32px; }
.nav-links a { color: var(--slate); font-size: 14px; font-weight: 500; padding: 6px 12px; border-radius: var(--radius-sm); transition: all var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--bg2); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { width: 20px; height: 2px; background: var(--navy); display: block; border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 66px; left: 0; right: 0; background: var(--bg);
  border-bottom: 1px solid var(--border); padding: 16px 24px; z-index: 999; flex-direction: column; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--slate); font-size: 15px; font-weight: 500; padding: 10px 12px; border-radius: var(--radius-sm); }
.mobile-menu a:hover { background: var(--bg2); color: var(--navy); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding: 120px 5% 80px;
  display: flex; align-items: center;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -40%; right: -10%;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,122,95,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -20%; left: -5%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,31,61,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-pale); color: var(--teal); border: 1px solid rgba(29,122,95,0.2);
  padding: 5px 12px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--navy); line-height: 1.15; margin-bottom: 20px; font-weight: 600;
}
.hero h1 em { color: var(--orange); font-style: italic; }
.hero-desc { font-size: 16px; color: var(--slate); line-height: 1.75; margin-bottom: 32px; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; align-items: center; gap: 24px; padding-top: 28px; border-top: 1px solid var(--border); }
.hero-trust-item .num { font-size: 1.6rem; font-weight: 700; color: var(--navy); line-height: 1; }
.hero-trust-item .lbl { font-size: 12px; color: var(--muted); margin-top: 2px; }
.hero-trust .sep { width: 1px; height: 32px; background: var(--border); }

/* Hero dashboard mockup */
.hero-visual { position: relative; }
.hero-browser {
  background: var(--bg2); border-radius: var(--radius-xl); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-browser-bar {
  background: var(--bg3); padding: 12px 16px; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.hero-browser-dots { display: flex; gap: 6px; }
.hero-browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hero-browser-dots span:nth-child(1) { background: #FF5F57; }
.hero-browser-dots span:nth-child(2) { background: #FFBD2E; }
.hero-browser-dots span:nth-child(3) { background: #28CA41; }
.hero-browser-url {
  flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 5px 12px; font-size: 12px; color: var(--muted); margin: 0 10px;
}
.hero-screen { padding: 20px; }
.hero-dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.hero-dash-header h3 { font-size: 15px; font-weight: 600; color: var(--navy); }
.hero-stats-mini { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.hero-stat-mini { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; }
.hero-stat-mini .s-val { font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.hero-stat-mini .s-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; }
.hero-prop-list { display: flex; flex-direction: column; gap: 8px; }
.hero-prop-row {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 10px 14px; display: flex; align-items: center; justify-content: space-between;
}
.hero-prop-row .p-title { font-size: 12px; font-weight: 600; color: var(--navy); }
.hero-prop-row .p-loc   { font-size: 11px; color: var(--muted); }
.hero-prop-row .p-price { font-size: 12px; font-weight: 700; color: var(--teal); }
.hero-prop-row .p-badge { font-size: 10px; background: var(--teal-pale); color: var(--teal); padding: 3px 8px; border-radius: var(--radius-pill); font-weight: 600; }
/* floating accent cards */
.hero-float-card {
  position: absolute; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px 18px; box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.hero-float-card:nth-child(2) { animation-delay: -2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.hfc-top { top: -28px; right: -20px; }
.hfc-bot { bottom: -24px; left: -24px; }
.hfc-label { font-size: 11px; color: var(--muted); margin-bottom: 3px; }
.hfc-value { font-size: 15px; font-weight: 700; color: var(--navy); }
.hfc-dot   { display: inline-block; width:8px; height:8px; border-radius:50%; margin-right:5px; }
.hfc-dot.green { background:#22C55E; }
.hfc-dot.teal  { background:var(--teal); }

/* ── Search Bar ─────────────────────────────────────────── */
.search-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 20px;
  display: flex;
  gap: 0;
  align-items: center;
  max-width: 680px;
  box-shadow: 0 10px 30px rgba(15, 31, 61, 0.08);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-wrap:focus-within {
  border-color: var(--teal);
  box-shadow: 0 14px 40px rgba(29, 122, 95, 0.12);
}
.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
}
.search-field i { color: var(--teal); font-size: 14px; opacity: 0.8; }
.search-wrap select, .search-wrap input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  width: 100%;
  font-weight: 500;
}
.search-wrap input::placeholder { color: var(--muted); opacity: 0.6; }
.search-wrap .sdivider { width: 1.5px; height: 24px; background: var(--border); flex-shrink: 0; margin: 0 8px; }

@media (max-width: 600px) {
  .search-wrap { flex-direction: column; border-radius: var(--radius-lg); padding: 12px; gap: 12px; }
  .search-wrap .sdivider { display: none; }
  .search-wrap .btn { width: 100%; justify-content: center; }
}

/* ── Sections ───────────────────────────────────────────── */
.section { padding: 88px 5%; }
.section-alt  { background: var(--bg2); }
.section-light { background: #F8FAFC; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-cream { background: #FFFDF8; border-top: 1px solid #F3EACC; }
.section-dark { background: var(--navy); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.eyebrow { display: inline-flex; align-items:center; gap:6px; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.09em; color: var(--teal);
  background: var(--teal-pale); border: 1px solid rgba(29,122,95,0.18);
  padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: 14px; }
.section-dark .eyebrow { background: rgba(29,122,95,0.2); border-color: rgba(29,122,95,0.3); }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.6rem); color: var(--navy); font-weight: 600; line-height: 1.2; }
.section-dark .section-header h2 { color: #fff; }
.section-header p { color: var(--slate); margin-top: 12px; font-size: 16px; max-width: 520px; }
.section-header.center p { margin-inline: auto; }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ── Property Cards ─────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 22px; }
.prop-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.prop-card:hover { border-color: var(--border2); box-shadow: var(--shadow); transform: translateY(-3px); }
.prop-card .thumb { height: 190px; overflow: hidden; position: relative; background: var(--bg3); }
.prop-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prop-card:hover .thumb img { transform: scale(1.05); }
.prop-card .cat-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  color: var(--navy); font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: var(--radius-pill); border: 1px solid var(--border);
}
.prop-card .feat-badge { position: absolute; top: 12px; right: 12px; background: var(--teal); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: var(--radius-pill); text-transform:uppercase; letter-spacing:0.04em; }
.prop-card .body { padding: 18px 20px 20px; }
.prop-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; line-height: 1.35; }
.prop-card .loc { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 4px; margin-bottom: 14px; }
.prop-card .meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.prop-card .meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--slate); background: var(--bg2); padding: 4px 10px; border-radius: var(--radius-pill); border: 1px solid var(--border); }
.prop-card .footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.prop-card .price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); }
.prop-card .actions { display: flex; gap: 7px; }

/* ── Services ───────────────────────────────────────────── */
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; padding: 0; display: flex; flex-direction: column;
  transition: all var(--transition);
}
.svc-thumb { height: 180px; overflow: hidden; position: relative; }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--transition); }
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--teal-lt); }
.svc-card:hover .svc-thumb img { transform: scale(1.1); }
.svc-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { color: var(--navy); font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; transition: color var(--transition); }
.svc-card:hover h3 { color: var(--teal); }
.svc-card p { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 24px; flex: 1; }
.svc-arrow { font-size: 13px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.05em; display: flex; align-items: center; gap: 8px; border: none; background: none; padding: 0; cursor: pointer; transition: gap var(--transition); margin-top: auto; width: fit-content; }
.svc-arrow i { transition: transform var(--transition); }
.svc-card:hover .svc-arrow { gap: 12px; }
.svc-card:hover .svc-arrow i { transform: translateX(5px); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* ── Services Icon Grid ─────────────────────────────────── */
.services-icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-icon-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg);
  padding: 32px 24px 28px; display: flex; flex-direction: column; align-items: flex-start;
  text-decoration: none; transition: all var(--transition);
}
.svc-icon-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-5px); border-color: var(--orange-lt); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.svc-icon-wrap { width: 56px; height: 56px; border-radius: 14px; background: var(--orange-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background var(--transition); }
.svc-icon-wrap i { font-size: 22px; color: var(--orange); }
.svc-icon-card:hover .svc-icon-wrap { background: rgba(249,162,69,0.22); }
.svc-icon-card h3 { color: #fff; font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.svc-icon-card p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px; flex: 1; }
.svc-icon-card .svc-arrow { color: var(--orange); }
@media (max-width: 900px)  { .services-icon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .services-icon-grid { grid-template-columns: 1fr; } }

/* ── Services Detail (services.php) ─────────────────────── */
.services-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.svc-detail-card { display: flex; gap: 20px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: box-shadow var(--transition), transform var(--transition); }
.svc-detail-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.svc-detail-icon { width: 60px; height: 60px; min-width: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.svc-detail-body { flex: 1; display: flex; flex-direction: column; }
.svc-detail-body h2 { font-size: 1.2rem; color: var(--navy); margin-bottom: 14px; }
.svc-points { list-style: none; padding: 0; margin: 0 0 8px 0; display: flex; flex-direction: column; gap: 9px; }
.svc-points li { padding-left: 20px; position: relative; font-size: 14px; color: var(--slate); line-height: 1.6; }
.svc-points li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }
@media (max-width: 900px) { .services-detail-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .svc-detail-card { padding: 24px 18px; } .svc-detail-icon { width: 48px; height: 48px; min-width: 48px; font-size: 20px; } }

/* ── About Split ────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-xl); }
.about-accent-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 18px 22px; box-shadow: var(--shadow); min-width: 200px;
}
.about-accent-card .label { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.about-accent-card .value { font-size: 1.5rem; font-weight: 700; color: var(--navy); font-family: var(--font-display); }
.about-content .eyebrow { display: inline-flex; }
.about-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.4rem); color: var(--navy); margin-bottom: 16px; }
.about-content p { color: var(--slate); margin-bottom: 14px; font-size: 15px; line-height: 1.75; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 22px 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.feature-list li .check { width: 20px; height: 20px; background: var(--teal-pale); border-radius: 50%; color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 1px; }

/* ── Testimonials ───────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }
.testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 24px; transition: box-shadow var(--transition); }
.testi-card:hover { box-shadow: var(--shadow); }
.testi-stars { color: #F59E0B; font-size: 14px; margin-bottom: 14px; letter-spacing: 1px; }
.testi-card blockquote { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--navy); line-height: 1.6; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--teal-pale); color: var(--teal); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.testi-name  { font-size: 13px; font-weight: 600; color: var(--navy); }
.testi-place { font-size: 12px; color: var(--muted); }

/* ── Process Steps ──────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 0; }
.step-item { text-align: center; padding: 32px 24px; position: relative; }
.step-item::after { content:''; position:absolute; top:52px; right:0; width:1px; height:40px; background:rgba(255,255,255,0.1); }
.step-item:last-child::after { display:none; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: rgba(29,122,95,0.2); border: 1px solid rgba(29,122,95,0.3); color: #6EE7C4; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-item h3 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.step-item p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-band { background: var(--navy); border-radius: var(--radius-xl); padding: 60px 64px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position:relative; overflow:hidden; }
.cta-band::before { content:''; position:absolute; top:-60%; right:-5%; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(29, 122, 95, 0.15) 0%, transparent 70%); }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.2rem); color: #fff; max-width: 480px; position:relative; }
.cta-band p  { color: rgba(255,255,255,0.55); margin-top: 8px; font-size: 15px; }
.cta-band .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position:relative; }

/* ── Footer ─────────────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,0.55); padding: 48px 5% 20px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; margin-bottom: 32px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 14px; max-width: 260px; line-height: 1.6; }
.footer-col h4 { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: 12.5px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; font-size: 12.5px; color: rgba(255,255,255,0.45); }
.footer-contact-item i { color: var(--teal-lt); font-size: 13px; margin-top: 2px; flex-shrink:0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 18px; display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: rgba(255,255,255,0.3); flex-wrap:wrap; gap:8px; }
.footer-logo-mark { width:24px; height:24px; background:rgba(255,255,255,0.1); border-radius:5px; display:inline-flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.7); font-weight:700; font-size:10px; margin-right:8px; vertical-align:middle; }

/* ── Page Banner ────────────────────────────────────────── */
.page-banner {
  padding: 100px 5% 40px;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: none;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(29, 122, 95, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
}
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.5); position: relative; }
.breadcrumb a { color: var(--teal-lt); font-weight: 500; transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ── Auth Pages ─────────────────────────────────────────── */
.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-left { background: var(--navy); display: flex; align-items: center; justify-content: center; padding: 40px; position: relative; overflow: hidden; }
.auth-left::before { content:''; position:absolute; top:-30%; left:-10%; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(29, 122, 95, 0.15) 0%,transparent 70%); }
.auth-left-inner { position:relative; z-index:1; max-width:380px; }
.auth-left h2 { font-family:var(--font-display); font-size:2rem; color:#fff; margin-bottom:14px; }
.auth-left p { color:rgba(255,255,255,0.55); font-size:15px; line-height:1.7; margin-bottom:32px; }
.auth-features { display:flex; flex-direction:column; gap:14px; }
.auth-feature { display:flex; align-items:center; gap:12px; color:rgba(255,255,255,0.7); font-size:14px; }
.auth-feature .af-icon { width:32px; height:32px; background:rgba(29, 122, 95, 0.2); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--teal-lt); font-size:14px; flex-shrink:0; }
.auth-right { display:flex; align-items:center; justify-content:center; padding:40px; background:var(--bg2); }
.auth-form-box { background:var(--bg); border:1px solid var(--border); border-radius:var(--radius-xl); padding:40px; width:100%; max-width:420px; box-shadow:var(--shadow); }
.auth-form-box .auth-logo { display:flex; align-items:center; gap:8px; margin-bottom:28px; }
.auth-form-box h2 { font-family:var(--font-display); font-size:1.7rem; color:var(--navy); margin-bottom:6px; }
.auth-form-box .sub { font-size:14px; color:var(--muted); margin-bottom:26px; }

/* ── Forms ──────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 13px; color: var(--navy); }
.form-control {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 14px; transition: all var(--transition);
  background: var(--bg); color: var(--text);
}
.form-control:focus { outline:none; border-color:var(--teal); box-shadow: 0 0 0 4px rgba(29, 122, 95, 0.08); background:#fff; }
.form-control::placeholder { color: var(--muted); opacity: 0.6; }

/* ── Contact Hero Form ──────────────────────────────────── */
.contact-hero-card {
  display: grid; grid-template-columns: 380px 1fr;
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.1);
}
.contact-hero-info {
  background: var(--navy); color: #fff; padding: 48px;
  background-image: radial-gradient(circle at bottom left, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.contact-hero-form { padding: 48px 60px; background: #fff; }
.contact-pill-item { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.contact-pill-item i { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal-lt); }

@media (max-width: 992px) {
  .contact-hero-card { grid-template-columns: 1fr; }
  .contact-hero-info { padding: 32px; }
  .contact-hero-form { padding: 32px; }
}

/* ── Dashboard Layout ───────────────────────────────────── */
.dash-wrap { display: flex; min-height: 100vh; background: var(--bg2); }
.sidebar {
  width: 248px; flex-shrink: 0; background: var(--bg); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; position: fixed; top: 0; left: 0; bottom: 0; z-index: 200;
}
.sb-brand { padding: 20px 20px 16px; border-bottom: 1px solid var(--border); }
.logo { display: flex; align-items: center; gap: 0; }
.logo img { height: 44px; width: auto; }
.logo-mark { display:none; }
.logo-text { display:none; }
.sidebar nav { flex:1; padding:14px 12px; overflow-y:auto; }
.nav-section-label { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--muted); padding:12px 10px 5px; }
.sidebar nav a { display:flex; align-items:center; gap:9px; padding:9px 10px; border-radius:var(--radius); color:var(--slate); font-size:13.5px; font-weight:500; transition:all 0.18s; margin-bottom:1px; }
.sidebar nav a i { width:16px; text-align:center; font-size:13px; flex-shrink:0; }
.sidebar nav a:hover { background:var(--bg2); color:var(--navy); }
.sidebar nav a.active i { color:var(--teal); }
.sb-user { padding:14px 16px; border-top:1px solid var(--border); display:flex; align-items:center; gap:10px; }
.sb-avatar { width:32px; height:32px; border-radius:50%; background:var(--teal-pale); color:var(--teal); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:13px; flex-shrink:0; }
.sb-user .info .name { font-size:13px; font-weight:600; color:var(--navy); }
.sb-user .info .role { font-size:11px; color:var(--muted); }
.sb-user .logout { margin-left:auto; color:var(--muted); font-size:14px; }
.sb-user .logout:hover { color:var(--navy); }

.dash-main { margin-left:248px; flex:1; display:flex; flex-direction:column; }
.dash-topbar { background:var(--bg); border-bottom:1px solid var(--border); height:60px; display:flex; align-items:center; justify-content:space-between; padding:0 28px; position:sticky; top:0; z-index:100; }
.dash-topbar h1 { font-size:1rem; font-weight:600; color:var(--navy); }
.dash-content { padding:28px; flex:1; }

/* ── Dashboard Cards ────────────────────────────────────── */
.stats-row { display:grid; grid-template-columns:repeat(auto-fill,minmax(190px,1fr)); gap:16px; margin-bottom:24px; }
.stat-card { background:var(--bg); border:1px solid var(--border); border-radius:var(--radius-lg); padding:20px 22px; }
.stat-card .s-top { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:10px; }
.stat-card .s-icon { width:38px; height:38px; border-radius:var(--radius); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.s-icon.teal  { background:var(--teal-pale); color:var(--teal); }
.s-icon.blue  { background:#EFF6FF; color:#3B82F6; }
.s-icon.amber { background:#FFFBEB; color:#D97706; }
.s-icon.red   { background:#FEF2F2; color:#EF4444; }
.s-icon.green { background:#F0FDF4; color:#22C55E; }
.stat-card .s-label { font-size:12px; color:var(--muted); font-weight:500; margin-bottom:4px; }
.stat-card .s-num   { font-size:2rem; font-weight:700; color:var(--navy); line-height:1; font-family:var(--font-display); }
.stat-card .s-trend { font-size:11px; color:var(--muted); margin-top:4px; }

.dash-card { background:var(--bg); border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; }
.dash-card .card-head { padding:16px 20px; border-bottom:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; }
.dash-card .card-head h3 { font-size:14px; font-weight:600; color:var(--navy); }
.dash-card .card-body { padding:18px 20px; }

/* ── Table ──────────────────────────────────────────────── */
.tbl-wrap { overflow-x:auto; }
table.tbl { width:100%; border-collapse:collapse; font-size:13.5px; }
table.tbl thead th { background:var(--bg2); color:var(--slate); font-size:11px; text-transform:uppercase; letter-spacing:0.07em; font-weight:700; padding:10px 16px; text-align:left; border-bottom:1px solid var(--border); white-space:nowrap; }
table.tbl tbody tr:hover { background:var(--bg2); }
table.tbl tbody td { padding:12px 16px; border-bottom:1px solid var(--border); color:var(--text); vertical-align:middle; }
table.tbl tbody tr:last-child td { border-bottom:none; }

/* ── Status Badges ──────────────────────────────────────── */
.badge { display:inline-flex; align-items:center; gap:4px; padding:3px 10px; border-radius:var(--radius-pill); font-size:11px; font-weight:600; }
.badge-active    { background:#ECFDF5; color:#065F46; }
.badge-inactive  { background:#FEF2F2; color:#991B1B; }
.badge-pending   { background:#FFFBEB; color:#92400E; }
.badge-confirmed { background:#EFF6FF; color:#1E40AF; }

/* ── Admin sidebar accent ───────────────────────────────── */
.admin-badge { background:rgba(239,68,68,0.12); color:#EF4444; font-size:10px; padding:2px 7px; border-radius:var(--radius-pill); font-weight:700; margin-left:6px; }

/* ── Pagination ─────────────────────────────────────────── */
.pagination { display:flex; gap:5px; justify-content:center; margin-top:36px; flex-wrap:wrap; }
.pagination a, .pagination span { width:34px; height:34px; display:flex; align-items:center; justify-content:center; border-radius:var(--radius); font-size:13px; border:1px solid var(--border); color:var(--slate); transition:all 0.18s; }
.pagination a:hover { border-color:var(--teal); color:var(--teal); background:var(--teal-pale); }
.pagination .active { background:var(--teal); color:#fff; border-color:var(--teal); font-weight:600; }

/* ── Modal ──────────────────────────────────────────────── */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(15,31,61,0.4); backdrop-filter:blur(4px); z-index:9000; }
.modal-box { display:none; position:fixed; top:50%; left:50%; transform:translate(-50%,-50%); z-index:9001; width:92%; max-width:480px; background:var(--bg); border-radius:var(--radius-xl); border:1px solid var(--border); box-shadow:var(--shadow-lg); padding:32px; }
.modal-close { position:absolute; top:14px; right:14px; background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius); width:30px; height:30px; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:16px; color:var(--muted); }
.modal-close:hover { color:var(--navy); }
.modal-box h2 { font-family:var(--font-display); font-size:1.4rem; color:var(--navy); margin-bottom:5px; }
.modal-box .sub { font-size:13px; color:var(--muted); margin-bottom:22px; }

/* ── Contact ────────────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:60px; align-items:start; }
.contact-info-card { display:flex; align-items:flex-start; gap:14px; margin-bottom:20px; }
.ci-icon { width:42px; height:42px; background:var(--teal-pale); border-radius:var(--radius); display:flex; align-items:center; justify-content:center; color:var(--teal); font-size:16px; flex-shrink:0; }
.ci-body h4 { font-size:13px; font-weight:600; color:var(--navy); margin-bottom:3px; }
.ci-body p  { font-size:13px; color:var(--muted); }
/* ── Number input spinner removal ─────────────────────────── */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .about-grid, .contact-grid, .services-grid { grid-template-columns:1fr; }
  .auth-wrap { grid-template-columns:1fr; }
  .auth-left { display:none; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .form-row { grid-template-columns:1fr; }
}
@media (max-width: 768px) {
  .dash-main { margin-left:0; }
  .sidebar { transform:translateX(-100%); transition:transform 0.3s; }
  .sidebar.open { transform:translateX(0); }
  .dash-content { padding:16px; }
  .stats-row { grid-template-columns:1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns:1fr; }
  .cards-grid, .services-grid { grid-template-columns:1fr; }
  .cta-band { padding:36px 28px; }
  .stats-row { grid-template-columns:1fr; }
  .hero { padding:100px 5% 60px; }
}

/* ── Utilities ─────────────────────────────────────────── */
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }
.mt-36 { margin-top: 36px; }
.mb-0 { margin-bottom: 0px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.w-full { width: 100%; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-6 { gap: 6px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.btn-whatsapp { background: #25D366 !important; border-color: #25D366 !important; }
.btn-whatsapp:hover { background: #128C7E !important; border-color: #128C7E !important; }
.center-text { text-align: center; }
.h-fit { height: fit-content; }
.no-border { border: none !important; }
.shadow-none { box-shadow: none !important; }
.pos-static { position: static !important; }
.max-none { max-width: none !important; }
.p-40 { padding: 40px !important; }
.br-none { border-top: none; }
.border-top { border-top: 1px solid var(--border); }
.img-contain { object-fit: contain; }
.img-cover { object-fit: cover; }
.h-320 { height: 320px; }
.h-350 { height: 350px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.flex-auto { flex: 1; }
.f-11 { font-size: 11px; }
.f-13 { font-size: 13px; }
.f-18 { font-size: 18px; }
.lh-16 { line-height: 1.6; }
.lh-17 { line-height: 1.7; }
.op-06 { opacity: 0.6; }
.op-05 { opacity: 0.5; }
.c-white { color: #fff; }
.c-navy { color: var(--navy); }
.fs-2-4 { font-size: 2.4rem; }
.radius-pill { border-radius: var(--radius-pill); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.c-teal { color: var(--teal); }
.c-teal-lt { color: var(--teal-lt); }
.flash-fixed { position: fixed; top: 76px; right: 20px; z-index: 9999; min-width: 300px; max-width: 400px; box-shadow: var(--shadow); }
.map-embed-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 320px; box-shadow: var(--shadow); }
.btn-search-submit { padding: 10px 20px; }
.step-icon-wrap { width: 56px; height: 56px; background: rgba(29,122,95,0.2); border: 1px solid rgba(29,122,95,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--teal-lt); margin: 0 auto 16px; }
.step-label { font-size: 10px; color: var(--teal-lt); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 8px; }
.services-process-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 32px; }
.contact-trust-footer { border-top: 1px solid var(--border); }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.flex-end { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.flex-align-center { display: flex; align-items: center; gap: 8px; }
.grid-col-all { grid-column: 1 / -1; }
.p-56-0 { padding: 56px 0; }
.fs-36 { font-size: 36px; }
.btn-cta-outline { border-color: rgba(255,255,255,0.25) !important; color: #fff !important; }
.btn-full { width: 100%; justify-content: center; padding: 12px !important; }
.modal-submit-btn { width: 100%; justify-content: center; padding: 12px; }
.enq-btn-full { width: 100%; justify-content: center; padding: 12px !important; }
.no-mb { margin-bottom: 0 !important; }
.d-block { display: block; }
.bg-teal-20 { background: rgba(29, 122, 95, 0.2); }
.border-teal-30 { border: 1px solid rgba(29, 122, 95, 0.3); }


/* ── Properties Marketplace Toolbar ─────────────────────── */
.properties-toolbar {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 12px 20px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; box-shadow: var(--shadow-sm); margin-bottom: 32px;
}
.filter-groups { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-group { display: flex; align-items: center; gap: 8px; }
.filter-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.custom-select {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px 12px; font-size: 13.5px; color: var(--navy); font-weight: 500;
  outline: none; transition: all var(--transition); cursor: pointer; min-width: 140px;
}
.custom-select:hover { border-color: var(--teal); background: #fff; }
.results-count { font-size: 13px; color: var(--slate); font-weight: 500; }
.results-count span { color: var(--teal); font-weight: 700; }

.placeholder-img {
  background: var(--bg3) url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=800&q=80') center/cover no-repeat;
  width: 100%; height: 100%; display: block; filter: brightness(0.9);
}
.verified-badge {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  color: var(--teal); font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: var(--radius-pill); border: 1px solid rgba(29,122,95,0.2);
  display: flex; align-items: center; gap: 4px;
}

@media (max-width: 768px) {
  .properties-toolbar { flex-direction: column; align-items: stretch; gap: 16px; padding: 18px; }
  .filter-groups { gap: 10px; }
  .filter-group { flex: 1; }
  .custom-select { width: 100%; }
}

/* ── Choices.js Customization ────────────────────────────── */
.choices { margin-bottom: 0; font-family: var(--font-body); width: 100%; min-width: 140px; }
.choices__inner {
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 8px 12px !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  transition: all var(--transition);
  color: var(--navy);
  font-weight: 500;
  font-size: 14px;
}
.choices__inner:focus-within { border-color: var(--teal) !important; box-shadow: 0 0 0 4px rgba(29, 122, 95, 0.08) !important; background: #fff !important; }
.choices__list--dropdown { border-radius: 0 0 var(--radius) var(--radius) !important; border: 1px solid var(--border) !important; box-shadow: var(--shadow-lg) !important; z-index: 1000 !important; }
.choices__list--dropdown .choices__item--selectable { padding: 10px 14px !important; font-size: 14px !important; color: var(--text) !important; }
.choices__list--dropdown .choices__item--selectable.is-highlighted { background-color: var(--teal-pale) !important; color: var(--teal) !important; }
.choices[data-type*="select-one"] .choices__inner { padding-bottom: 8px !important; }
.choices__list--single { padding: 0 6px 0 0 !important; font-weight: 600; color: var(--navy); }


