/* ==========================================================================
   Universal Real Estate Donnybrook Stylesheet
   ========================================================================== */

/* Design Tokens & Theme Setup */
:root {
  /* Color Palette (Blue & Gold) */
  --primary-blue-dark: hsl(215, 95%, 8%);
  --primary-blue: hsl(215, 85%, 15%);
  --primary-blue-light: hsl(215, 70%, 25%);
  --primary-gold: hsl(43, 75%, 52%);
  --primary-gold-hover: hsl(43, 85%, 45%);
  --primary-gold-glow: hsla(43, 75%, 52%, 0.35);
  
  --dark-bg: hsl(215, 60%, 5%);
  --dark-surface: hsla(215, 70%, 8%, 0.7);
  --dark-surface-border: hsla(43, 40%, 50%, 0.15);
  --dark-surface-solid: hsl(215, 85%, 8%);
  
  --text-primary: hsl(0, 0%, 96%);
  --text-secondary: hsl(215, 20%, 75%);
  --text-muted: hsl(215, 15%, 55%);
  
  --glass-bg: rgba(9, 21, 33, 0.65);
  --glass-border: rgba(212, 175, 55, 0.15);
  --glass-glow: rgba(0, 48, 96, 0.25);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout Options */
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --transition-speed: 0.3s;
  --transition-bezier: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus,
select:focus,
input:focus {
  outline: none;
}

button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary-gold);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-blue-light);
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--dark-bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold);
}

/* Helper Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0;
}

.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.w-100 { width: 100%; }

/* Buttons & Links */
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.highlight-text {
  color: var(--primary-gold);
  background: linear-gradient(135deg, var(--primary-gold), hsl(43, 100%, 75%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-premium {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.badge-gold {
  display: inline-block;
  color: var(--primary-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  display: block;
  color: var(--primary-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

/* Premium Buttons */
.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-gold), hsl(43, 85%, 45%));
  color: hsl(215, 95%, 4%);
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--primary-gold-glow);
  transition: all var(--transition-speed) var(--transition-bezier);
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-gold-glow);
  filter: brightness(1.1);
}

.btn-primary {
  background: var(--primary-blue-light);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-bezier);
}

.btn-primary:hover {
  background: var(--primary-gold);
  color: hsl(215, 95%, 4%);
  border-color: var(--primary-gold);
}

.btn-secondary {
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  background: transparent;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-bezier);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.08);
}

.btn-text-link {
  color: var(--primary-gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: transform var(--transition-speed);
}

.btn-text-link:hover {
  transform: translateX(4px);
}

/* Floating Navigation Bar */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
  transition: background var(--transition-speed);
}

.header-container {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo {
  height: 48px;
  width: auto;
  border-radius: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--primary-gold);
  font-weight: 600;
}

#nav-menu > ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-surface-solid);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 0;
  min-width: 180px;
  list-style: none;
  z-index: 150;
  flex-direction: column;
  gap: 0 !important;
}

.dropdown:hover .dropdown-menu {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-speed);
}

.dropdown-menu a:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--primary-gold);
  padding-left: 1.5rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color var(--transition-speed);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: width var(--transition-speed) var(--transition-bezier);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  width: 100%;
}

.menu-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 110;
}

.menu-burger span {
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all var(--transition-speed) ease;
  border-radius: 2px;
}

.menu-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-burger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(var(--header-height) + 2rem);
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.4s var(--transition-bezier), opacity 0.4s var(--transition-bezier), visibility 0.4s;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.mobile-nav-overlay.open {
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.mobile-nav-overlay ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mobile-link {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: color var(--transition-speed);
}

.mobile-link:hover {
  color: var(--primary-gold);
}

/* SPA Page Transitions */
.app-page {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--transition-bezier), transform 0.4s var(--transition-bezier);
  padding-top: var(--header-height);
  min-height: calc(100vh - 120px);
}

.app-page.active-page {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

@starting-style {
  .app-page.active-page {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('assets/properties/prop-4.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 17, 14, 0.4), var(--dark-bg));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Glassmorphic Search Panel */
.search-panel-container {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  max-width: 700px;
  margin: 0 auto;
}

.search-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.search-tab {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-weight: 700;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color var(--transition-speed);
  position: relative;
}

.search-tab.active {
  color: var(--primary-gold);
}

.search-tab.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 3px;
  background-color: var(--primary-gold);
  border-radius: 50px;
}

.search-bar-form {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.search-input-group select {
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0 1rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.search-input-group select:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.btn-search-glow {
  background: var(--primary-gold);
  color: var(--primary-blue-dark);
  font-weight: 700;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-speed);
}

.btn-search-glow:hover {
  background: hsl(43, 85%, 45%);
  box-shadow: 0 0 15px var(--primary-gold-glow);
}

/* INTRO / STATS SECTION */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.glass-suburb-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--dark-surface-border);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  text-align: center;
}

.glass-suburb-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.glass-suburb-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* PROPERTY GRID & CARDS */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.property-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-surface-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all var(--transition-speed) var(--transition-bezier);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.08);
}

.card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-bezier);
}

.property-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.badge-type {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.badge-type.sale {
  background: var(--primary-gold);
  color: hsl(215, 95%, 4%);
}

.badge-type.rent {
  background: var(--primary-blue-light);
}

.card-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-suburb {
  font-size: 0.8rem;
  color: var(--primary-gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.card-address {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.card-price {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.card-specs {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid var(--dark-surface-border);
  padding-top: 1rem;
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* AREA GUIDE SUBURB HIGHLIGHTS */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.guide-card {
  position: relative;
  height: 380px;
  border-radius: var(--border-radius-md);
  background-image: var(--bg-url);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border: 1px solid var(--dark-surface-border);
}

.guide-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 17, 14, 0.2), var(--primary-blue-dark));
  opacity: 0.85;
  transition: opacity var(--transition-speed);
}

.guide-card:hover .guide-card-overlay {
  opacity: 0.95;
}

.guide-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.guide-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
}

.guide-card-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ADVANCED FILTER PANEL */
.filter-panel {
  background: var(--dark-surface);
  border: 1px solid var(--dark-surface-border);
  border-radius: var(--border-radius-md);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.filter-row-5 {
  grid-template-columns: repeat(5, 1fr);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.filter-group select {
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border-radius: var(--border-radius-sm);
  padding: 0 1rem;
  cursor: pointer;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.filter-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  border-top: 1px solid var(--dark-surface-border);
  padding-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* WIZARD APPRAISAL FORM */
.wizard-container {
  max-width: 600px;
  margin: 0 auto 4rem auto;
  background: var(--dark-surface);
  border: 1px solid var(--dark-surface-border);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.wizard-progress-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 3rem;
}

.wizard-progress-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-blue-light);
  transform: translateY(-50%);
  z-index: 1;
}

.wizard-progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-gold);
  transform: translateY(-50%);
  z-index: 1;
  transition: width 0.3s ease;
}

.step-indicator {
  width: 32px;
  height: 32px;
  background: var(--dark-surface-solid);
  border: 2px solid var(--primary-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.step-indicator.active-step {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  box-shadow: 0 0 10px var(--primary-gold-glow);
}

.step-indicator.completed-step {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--primary-blue-dark);
}

.wizard-step {
  display: none;
}

.wizard-step.active-step {
  display: block;
  animation: fadeIn 0.4s ease;
}

.wizard-step h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  border-radius: var(--border-radius-sm);
  transition: border-color var(--transition-speed);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.required {
  color: var(--primary-gold);
}

.error-msg {
  display: none;
  font-size: 0.8rem;
  color: #ff6b6b;
  margin-top: 0.4rem;
}

.radio-card-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.radio-card {
  border: 1px solid var(--dark-surface-border);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  display: flex;
  gap: 1rem;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.radio-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.radio-card input[type="radio"] {
  width: auto;
  accent-color: var(--primary-gold);
}

.radio-card-content {
  display: flex;
  flex-direction: column;
}

.radio-title {
  font-weight: 700;
  color: var(--text-primary);
}

.radio-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.wizard-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  border-top: 1px solid var(--dark-surface-border);
  padding-top: 1.5rem;
}

.wizard-success-card {
  display: none;
  text-align: center;
  animation: scaleUp 0.4s var(--transition-bezier);
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-gold);
  color: var(--primary-blue-dark);
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  font-weight: 700;
}

/* FINANCIAL CALCULATORS */
.calc-tabs-wrapper {
  margin-bottom: 4rem;
}

.calc-navigation-tabs {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--dark-surface-border);
  padding-bottom: 1rem;
}

.calc-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: color var(--transition-speed);
  position: relative;
}

.calc-tab-btn.active {
  color: var(--primary-gold);
}

.calc-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-gold);
  border-radius: 50px 50px 0 0;
}

.calc-panel {
  display: none;
}

.calc-panel.active-panel {
  display: block;
  animation: fadeIn 0.4s ease;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

.slider-input-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.slider-input-group input[type="range"] {
  flex-grow: 1;
  accent-color: var(--primary-gold);
  cursor: pointer;
}

.slider-input-group input[type="number"] {
  width: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.5rem;
  border-radius: var(--border-radius-sm);
  text-align: right;
}

.results-card {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  border: 1px solid var(--primary-gold);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.results-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-gold);
  margin-bottom: 0.75rem;
}

.results-value {
  display: block;
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.results-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.radio-group-horizontal {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.radio-group-horizontal label {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-group-horizontal input {
  accent-color: var(--primary-gold);
}

/* GROWTH SVG CHART */
.growth-insights-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.chart-container-box {
  background: var(--dark-surface);
  border: 1px solid var(--dark-surface-border);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  position: relative;
}

.growth-svg-chart {
  width: 100%;
  height: auto;
}

.chart-text {
  fill: var(--text-secondary);
  font-size: 10px;
  font-family: var(--font-body);
}

.chart-dot {
  fill: var(--primary-gold);
  stroke: var(--dark-bg);
  stroke-width: 2;
  cursor: pointer;
  transition: r var(--transition-speed);
}

.chart-dot:hover {
  r: 8;
  fill: white;
}

.chart-tooltip-box {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--primary-gold);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  backdrop-filter: blur(8px);
}

.insights-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insights-list li {
  position: relative;
  padding-left: 1.5rem;
}

.insights-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary-gold);
}

/* OUR TEAM */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.agent-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-surface-border);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-speed) var(--transition-bezier);
  cursor: pointer;
}

.agent-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-5px);
}

.agent-photo-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem auto;
  border: 2px solid var(--primary-gold);
}

.agent-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.agent-title {
  font-size: 0.8rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* OVERLAY DRAWER PANEL (GLASSMORPHISM) */
.detail-drawer-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s var(--transition-bezier), visibility 0.4s;
  display: flex;
  justify-content: flex-end;
}

.detail-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.drawer-panel {
  width: 100%;
  max-width: 600px;
  height: 100%;
  background: var(--dark-surface-solid);
  border-left: 1px solid var(--glass-border);
  padding: 3rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition-bezier);
  position: relative;
}

.detail-drawer-overlay.open .drawer-panel {
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition-speed);
}

.close-btn:hover {
  color: var(--primary-gold);
}

.drawer-image-box {
  width: 100%;
  height: 300px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
}

.drawer-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-meta-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.drawer-address {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.drawer-price {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 2rem;
}

.drawer-specs {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--dark-surface-border);
  padding-bottom: 1.5rem;
}

.drawer-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.drawer-features ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.drawer-features li::before {
  content: '✓';
  color: var(--primary-gold);
  margin-right: 0.5rem;
  font-weight: bold;
}

/* CONTACT & FOOTER */
.contact-section {
  position: relative;
  background-image: url('assets/properties/prop-4.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.contact-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--dark-bg), rgba(5, 17, 14, 0.95));
  z-index: 1;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-card-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.contact-row-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.icon-circle {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-text-group {
  display: flex;
  flex-direction: column;
}

.contact-sub-title {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 700;
}

.contact-val {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-form-container {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.contact-form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.success-alert-box {
  display: none;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}

.main-footer {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-surface-border);
  padding: 2rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  /* Nav */
  #nav-menu, 
  #main-header nav,
  .header-actions #header-contact-btn {
    display: none !important;
  }
  .menu-burger {
    display: flex !important;
  }

  /* Typography */
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.75rem; }

  /* Hero */
  .hero-section {
    height: 70vh;
    min-height: 480px;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  /* Search panel */
  .search-panel-container {
    padding: 1.25rem;
    max-width: 100%;
  }
  .search-tabs {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .search-tab {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }
  .search-bar-form {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Intro / Stats Section */
  .intro-grid, .calc-grid, .growth-insights-layout, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stat-row {
    gap: 1.5rem;
  }
  .stat-number {
    font-size: 2.25rem;
  }
  .glass-suburb-card {
    padding: 2rem 1.5rem;
  }

  /* Property grid */
  .property-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Guide grid */
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .guide-card {
    height: 220px;
  }

  /* Section headers */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  /* Contact */
  .contact-form-container {
    padding: 2rem;
  }
  .contact-grid {
    gap: 2.5rem;
  }

  /* Container */
  .container {
    padding: 2.5rem 0;
  }

  /* ---- Properties page ---- */
  .page-header h1 {
    font-size: 2rem;
  }
  .page-header p {
    font-size: 0.9rem;
  }
  .filter-row, .filter-row-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .filter-panel {
    padding: 1.25rem 1.5rem;
  }

  /* ---- Calculators page ---- */
  .calc-grid {
    gap: 2rem;
  }
  .results-card {
    padding: 2rem;
  }
  .results-value {
    font-size: 2.25rem;
  }
  .slider-input-group input[type="number"] {
    width: 100px;
  }

  /* ---- Team page ---- */
  .agents-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  .agent-photo-wrapper {
    width: 100px;
    height: 100px;
  }

  /* ---- Drawer panel ---- */
  .drawer-panel {
    padding: 2rem;
  }
  .drawer-image-box {
    height: 220px;
  }
}

@media (max-width: 768px) {
  /* Layout */
  .container {
    width: 92%;
    padding: 2rem 0;
  }

  /* Header */
  .header-container {
    width: 92%;
  }
  .nav-logo {
    height: 36px;
  }
  .logo-title {
    font-size: 1rem;
  }
  .logo-subtitle {
    font-size: 0.55rem;
  }

  /* Hero */
  .hero-section {
    height: auto;
    min-height: 520px;
    padding: 6rem 0 3rem;
  }
  .hero-content {
    padding: 0;
  }
  .hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .hero-lead {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
  }
  .badge-premium {
    font-size: 0.6rem;
    padding: 0.3rem 0.75rem;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
  }

  /* Search panel */
  .search-panel-container {
    padding: 1rem;
    border-radius: 12px;
  }
  .search-tabs {
    margin-bottom: 0.75rem;
  }
  .search-tab {
    font-size: 0.72rem;
    padding: 0.35rem 0.6rem;
  }
  .search-input-group select {
    height: 44px;
    font-size: 0.82rem;
    padding: 0 0.75rem;
  }
  .btn-search-glow {
    padding: 0.7rem;
    font-size: 0.85rem;
  }

  /* Intro section */
  .intro-text-column h2 {
    font-size: 1.5rem;
  }
  .intro-text-column p {
    font-size: 0.88rem;
  }
  .stat-row {
    flex-direction: column;
    gap: 1.25rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.78rem;
  }
  .glass-suburb-card {
    padding: 1.75rem 1.25rem;
  }
  .glass-suburb-card h3 {
    font-size: 1.25rem;
  }
  .glass-suburb-card p {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  /* Featured Listings */
  .section-subtitle {
    font-size: 0.75rem;
  }
  .card-img-wrapper {
    height: 200px;
  }
  .card-title {
    font-size: 1.05rem;
  }
  .card-price {
    font-size: 1.2rem;
  }

  /* Growth corridors / guide cards */
  .guide-card {
    height: 200px;
  }
  .guide-card-content {
    padding: 1.25rem;
  }
  .guide-card-content h3 {
    font-size: 1.15rem;
  }
  .guide-card-content p {
    font-size: 0.8rem;
  }

  /* Contact Section */
  .contact-section .container {
    padding: 2.5rem 0;
  }
  .contact-info h2 {
    font-size: 1.5rem;
  }
  .contact-info p {
    font-size: 0.88rem;
  }
  .contact-card-details {
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .contact-sub-title {
    font-size: 0.7rem;
  }
  .contact-val {
    font-size: 0.9rem;
    word-break: break-word;
  }
  .contact-form-container {
    padding: 1.5rem;
  }
  .contact-form-container h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .form-row-2, .form-row-3, .radio-card-group {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* ---- Properties page ---- */
  .page-header h1 {
    font-size: 1.65rem;
  }
  .page-header p {
    font-size: 0.85rem;
    max-width: 100%;
  }
  .filter-row, .filter-row-5 {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .filter-panel {
    padding: 1rem;
    margin-bottom: 2rem;
  }
  .filter-group label {
    font-size: 0.75rem;
  }
  .filter-group select {
    height: 40px;
    font-size: 0.82rem;
  }
  .filter-meta-row {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.8rem;
  }

  /* ---- Calculators page ---- */
  .calc-navigation-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
  }
  .calc-tab-btn {
    font-size: 0.72rem;
    padding: 0.4rem 0.65rem;
  }
  .calc-tab-btn.active::after {
    display: none;
  }
  .calc-inputs-column h3 {
    font-size: 1.1rem;
  }
  .slider-input-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  .slider-input-group input[type="number"] {
    width: 100%;
  }
  .results-card {
    padding: 1.75rem;
  }
  .results-value {
    font-size: 2rem;
  }
  .results-label {
    font-size: 0.78rem;
  }
  .chart-container-box {
    padding: 1rem;
  }
  .chart-tooltip-box {
    bottom: 8px;
    right: 8px;
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
  }
  .growth-text-column h3 {
    font-size: 1.1rem;
  }
  .growth-text-column p {
    font-size: 0.85rem;
  }
  .insights-list li {
    font-size: 0.85rem;
  }
  .radio-group-horizontal {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* ---- Team page ---- */
  .agents-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }
  .agent-card {
    padding: 2rem 1.5rem;
  }
  .agent-photo-wrapper {
    width: 110px;
    height: 110px;
    margin-bottom: 1.25rem;
  }
  .agent-name {
    font-size: 1.15rem;
  }
  .agent-title {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  /* ---- Appraisal page ---- */
  .wizard-container {
    padding: 1.5rem;
    margin: 0 auto 2rem auto;
  }
  .wizard-step h2 {
    font-size: 1.15rem;
  }
  .wizard-progress-bar {
    margin-bottom: 2rem;
  }
  .step-indicator {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .radio-card {
    padding: 1rem;
  }
  .radio-title {
    font-size: 0.9rem;
  }
  .radio-desc {
    font-size: 0.72rem;
  }
  .wizard-buttons {
    margin-top: 1.75rem;
    padding-top: 1rem;
    gap: 0.75rem;
  }
  .wizard-buttons .btn-primary,
  .wizard-buttons .btn-secondary,
  .wizard-buttons .btn-primary-glow {
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }

  /* ---- Drawer panel ---- */
  .drawer-panel {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
  }
  .drawer-image-box {
    height: 180px;
    margin-bottom: 1.25rem;
  }
  .drawer-meta-title {
    font-size: 1.3rem;
  }
  .drawer-price {
    font-size: 1.4rem;
  }
  .drawer-specs {
    gap: 1rem;
    font-size: 0.85rem;
  }
  .drawer-features ul {
    grid-template-columns: 1fr;
  }
  .close-btn {
    top: 12px;
    right: 12px;
    font-size: 1.5rem;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .main-footer {
    padding: 1.5rem 0;
    font-size: 0.78rem;
  }

  /* WhatsApp widget */
  .whatsapp-widget-container {
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Extra small screens (phones < 480px) */
@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  .hero-section {
    min-height: 480px;
    padding: 5.5rem 0 2.5rem;
  }
  .hero-content h1 {
    font-size: 1.65rem;
    line-height: 1.15;
  }
  .hero-lead {
    font-size: 0.82rem;
  }

  h2 {
    font-size: 1.35rem;
  }
  .section-subtitle {
    font-size: 0.65rem;
  }
  .badge-premium {
    font-size: 0.55rem;
    padding: 0.25rem 0.6rem;
  }

  .search-panel-container {
    padding: 0.75rem;
  }
  .search-tab {
    font-size: 0.65rem;
    padding: 0.3rem 0.5rem;
  }
  .search-input-group select {
    height: 40px;
    font-size: 0.78rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .property-grid {
    gap: 1.25rem;
  }
  .card-details {
    padding: 1.25rem;
  }
  .card-specs {
    gap: 1rem;
    font-size: 0.78rem;
  }

  .guide-card {
    height: 180px;
  }

  .contact-row-item {
    gap: 0.75rem;
  }
  .icon-circle {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  /* Properties filter → single column on very small screens */
  .filter-row, .filter-row-5 {
    grid-template-columns: 1fr;
  }

  /* Calculators */
  .results-value {
    font-size: 1.75rem;
  }
  .results-card {
    padding: 1.25rem;
  }

  /* Team */
  .agents-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 100%;
  }
  .agent-photo-wrapper {
    width: 100px;
    height: 100px;
  }
  .agent-name {
    font-size: 1.1rem;
  }
  .agent-title {
    font-size: 0.75rem;
  }
  .agent-card {
    padding: 1.5rem;
  }

  /* Appraisal */
  .wizard-container {
    padding: 1.25rem;
  }

  /* Drawer */
  .drawer-panel {
    padding: 1.25rem;
  }
  .drawer-meta-title {
    font-size: 1.15rem;
  }
  .drawer-price {
    font-size: 1.2rem;
  }
  .drawer-image-box {
    height: 160px;
  }

  /* Mobile nav */
  .mobile-link {
    font-size: 1.5rem;
  }
  .mobile-nav-overlay ul {
    gap: 2rem;
  }
}

/* WhatsApp & Call Custom Buttons */
.btn-whatsapp-icon {
  width: 32px;
  height: 32px;
  background-color: #25D366;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-speed);
}

.btn-whatsapp-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
  background-color: #20ba5a;
}

.btn-call-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue-dark) !important;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px var(--primary-gold-glow);
  transition: all var(--transition-speed);
}

.btn-call-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px var(--primary-gold-glow);
  background-color: var(--primary-gold-hover);
}

.btn-whatsapp-small {
  background: #25D366;
  color: white;
  border: none;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.2);
  transition: all var(--transition-speed);
}

.btn-whatsapp-small:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-glow {
  background: linear-gradient(135deg, #25D366, #20ba5a);
  color: white !important;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-speed);
}

.btn-whatsapp-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  filter: brightness(1.05);
}

/* Category & Status Badges */
.badge-category {
  font-size: 0.65rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--dark-surface-border);
  color: var(--text-secondary);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-type.sold {
  background: var(--text-muted);
  color: white;
}

.badge-type.offer {
  background: #f39c12;
  color: white;
}

/* Portfolio Hover list inside agent drawer */
.agent-portfolio-item {
  transition: background var(--transition-speed), border-color var(--transition-speed);
  border: 1px solid transparent;
}

.agent-portfolio-item:hover {
  background: rgba(212, 175, 55, 0.04) !important;
  border-color: var(--primary-gold-glow);
}

/* Floating WhatsApp Widget Styles */
.whatsapp-widget-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Plus Jakarta Sans', sans-serif;
  pointer-events: none;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  outline: none;
  animation: wa-pulse 2s infinite;
  pointer-events: auto;
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-btn:active {
  transform: scale(0.95);
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-chat-window {
  width: 320px;
  max-width: calc(100vw - 48px);
  background: rgba(18, 22, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2), visibility 0.3s;
}

.whatsapp-chat-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
  visibility: visible;
}

.whatsapp-chat-header {
  background: linear-gradient(135deg, #128C7E, #25D366);
  padding: 1rem 1.25rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whatsapp-chat-header h3 {
  font-size: 1.05rem;
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
}

.whatsapp-chat-header p {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.9;
}

.whatsapp-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.whatsapp-close-btn:hover {
  opacity: 1;
}

.whatsapp-agents-list {
  padding: 0.75rem;
  max-height: 280px;
  overflow-y: auto;
}

/* Custom scrollbar for agent list */
.whatsapp-agents-list::-webkit-scrollbar {
  width: 4px;
}
.whatsapp-agents-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.whatsapp-agent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-decoration: none !important;
  transition: all var(--transition-speed);
}

.whatsapp-agent-item:hover {
  background: rgba(37, 211, 102, 0.05);
  border-color: rgba(37, 211, 102, 0.3);
  transform: translateY(-1px);
}

.whatsapp-agent-avatar {
  position: relative;
  width: 40px;
  height: 40px;
}

.whatsapp-agent-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--primary-gold);
}

.whatsapp-status-indicator {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #25D366;
  border: 1.5px solid #121612;
  border-radius: 50%;
}

.whatsapp-agent-info {
  flex-grow: 1;
  margin-left: 0.75rem;
  display: flex;
  flex-direction: column;
}

.whatsapp-agent-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.whatsapp-agent-title {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.whatsapp-chat-bubble-btn {
  background-color: #25D366;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all var(--transition-speed);
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.2);
}

.whatsapp-agent-item:hover .whatsapp-chat-bubble-btn {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .qr-scan-only {
    display: none !important;
  }
}

/* DRAWER TABS */
.drawer-tabs {
  display: flex;
  border-bottom: 1px solid var(--dark-surface-border);
  margin-bottom: 1.5rem;
  overflow-x: auto;
  gap: 0.5rem;
  scrollbar-width: none; /* Firefox */
}
.drawer-tabs::-webkit-scrollbar {
  display: none; /* Safari/Chrome */
}

.drawer-tab-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-speed);
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.drawer-tab-btn:hover {
  color: var(--text-primary);
}

.drawer-tab-btn.active {
  color: var(--primary-gold);
  border-bottom-color: var(--primary-gold);
}

.drawer-tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.drawer-tab-pane.active {
  display: block;
}

/* MAP EMBED */
.drawer-map-wrapper {
  width: 100%;
  height: 250px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--dark-surface-border);
  margin-bottom: 1rem;
}

.drawer-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* DOCUMENTS */
.doc-buttons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-doc-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition-speed);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dark-surface-border);
  color: var(--text-primary);
  cursor: pointer;
}

.btn-doc-download:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

/* SHARE GRID */
.share-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.8rem;
}

.btn-share-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--dark-surface-border);
  color: var(--text-secondary);
  transition: all var(--transition-speed);
  cursor: pointer;
}

.btn-share-item:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted);
}

.btn-share-item.share-fb:hover {
  background: rgba(24, 119, 242, 0.1);
  border-color: #1877f2;
  color: #1877f2;
}

.btn-share-item.share-x:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn-share-item.share-wa:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25d366;
  color: #25d366;
}

.btn-share-item.share-copylink:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.toast-msg {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark-surface-solid);
  border: 1px solid var(--primary-gold);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
}

/* ADMIN DASHBOARD LAYOUT */
.admin-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - var(--header-height));
  background: var(--dark-bg);
}

.admin-sidebar {
  background: var(--dark-surface-solid);
  border-right: 1px solid var(--dark-surface-border);
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-sidebar-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-speed);
  text-align: left;
}

.admin-sidebar-btn:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
}

.admin-sidebar-btn.active {
  background: rgba(212, 175, 55, 0.08);
  color: var(--primary-gold);
  border-left: 3px solid var(--primary-gold);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  padding-left: calc(1.25rem - 3px);
}

.admin-content {
  padding: 2.5rem;
  overflow-y: auto;
}

.admin-section {
  display: none;
  animation: fadeIn 0.3s ease;
}

.admin-section.active {
  display: block;
}

/* TABLES & FORMS */
.admin-table-container {
  background: var(--dark-surface);
  border: 1px solid var(--dark-surface-border);
  border-radius: var(--border-radius-md);
  overflow-x: auto;
  margin-top: 1.5rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.admin-table th, .admin-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--dark-surface-border);
}

.admin-table th {
  background: rgba(255, 255, 255, 0.01);
  color: var(--primary-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.admin-table tr:hover td {
  background: rgba(255,255,255,0.01);
}

.admin-action-btn {
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.admin-action-edit {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  margin-right: 0.5rem;
}

.admin-action-edit:hover {
  background: var(--primary-gold);
  color: #000;
}

.admin-action-delete {
  background: rgba(231, 76, 60, 0.1);
  border-color: #e74c3c;
  color: #e74c3c;
}

.admin-action-delete:hover {
  background: #e74c3c;
  color: #fff;
}

/* MODAL STYLES */
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.admin-modal.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.admin-modal-content {
  background: var(--dark-surface-solid);
  border: 1px solid var(--dark-surface-border);
  border-radius: var(--border-radius-md);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--dark-surface-border);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-sm);
  font-family: inherit;
  font-size: 0.85rem;
  transition: border-color var(--transition-speed);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
}

/* ROSTER CARD PANEL */
.roster-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.roster-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-surface-border);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.roster-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-gold);
  margin-bottom: 1rem;
}

/* EXPORTER TEXTAREA */
.json-exporter-box {
  width: 100%;
  height: 300px;
  background: #0d1117;
  color: #c9d1d9;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--dark-surface-border);
  resize: vertical;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .admin-container {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    flex-direction: row;
    overflow-x: auto;
    padding: 1rem;
  }
}

/* ==========================================================================
   Mobile & Usability Fixes
   ========================================================================== */

/* Custom Slider Thumb Styles */
.slider-input-group input[type="range"] {
  height: 8px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  outline: none;
}

.slider-input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-gold);
  cursor: pointer;
  border: 2px solid var(--primary-blue-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: transform 0.1s ease;
}

.slider-input-group input[type="range"]::-webkit-slider-thumb:active {
  transform: scale(1.2);
}

.slider-input-group input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-gold);
  cursor: pointer;
  border: 2px solid var(--primary-blue-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: transform 0.1s ease;
}

.slider-input-group input[type="range"]::-moz-range-thumb:active {
  transform: scale(1.2);
}

/* Drawer Image Carousel */
.drawer-image-carousel {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
}

.carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slide {
  width: 33.333%;
  height: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-speed);
  z-index: 2;
}

.carousel-arrow:hover {
  background: var(--primary-gold);
  color: var(--primary-blue-dark);
}

.carousel-arrow.prev {
  left: 12px;
}

.carousel-arrow.next {
  right: 12px;
}

.carousel-indicators {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-speed);
}

.carousel-indicator.active {
  background: var(--primary-gold);
  transform: scale(1.2);
}

/* Floating WhatsApp Dismiss Trigger */
.whatsapp-dismiss-btn {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 20px;
  height: 20px;
  background-color: #333;
  color: #ccc;
  border: 1px solid #555;
  border-radius: 50%;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0;
  outline: none;
  pointer-events: auto;
}

.whatsapp-widget-container:hover .whatsapp-dismiss-btn {
  opacity: 1;
}

@media (max-width: 768px) {
  .whatsapp-dismiss-btn {
    opacity: 0.8;
  }
}

/* Mobile Nav Menu CTA Button */
.mobile-contact-cta {
  display: inline-block;
  font-size: 1.1rem !important;
  padding: 0.75rem 2.25rem !important;
  border-radius: var(--border-radius-sm);
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
  color: var(--primary-blue-dark) !important;
  font-weight: 700 !important;
  text-decoration: none;
  box-shadow: 0 4px 15px var(--primary-gold-glow);
  transition: all var(--transition-speed);
  margin-top: 1rem;
}

.mobile-contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-gold-glow);
}

/* Form Fields Touch Sizing & Spacing Enhancements */
.form-group input, 
.form-group select, 
.form-group textarea,
.form-control {
  min-height: 46px; /* Guaranteed touch height */
  font-size: 0.95rem;
}

/* Make search tabs pill buttons on mobile view */
@media (max-width: 768px) {
  .search-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .search-tab {
    font-size: 0.8rem !important;
    padding: 0.6rem 1.1rem !important;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .search-tab.active {
    background: var(--primary-gold);
    color: var(--primary-blue-dark) !important;
    border-color: var(--primary-gold);
  }
  .search-tab.active::after {
    display: none; /* Hide bottom line bar on active pill */
  }
}



