/* ── Reaxis Brand Styles ───────────────────────────── */

:root {
  --brand-yellow: #ffc107;
  --brand-dark: #212529;
  --brand-gray: #f8f9fa;
  --brand-text: #495057;
}

/* ── General ─────────────────────────────────────────── */
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--brand-text);
}

a { text-decoration: none; }

/* ── Navbar ──────────────────────────────────────────── */
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  padding: 12px 0;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: var(--brand-yellow);
}

.nav-link {
  font-weight: 500;
  padding: 8px 14px !important;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--brand-yellow) !important; }

/* ── Hero Section ────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,193,7,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-badge {
  background: rgba(255,193,7,0.15);
  border: 1px solid rgba(255,193,7,0.3);
  color: var(--brand-yellow);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.hero-title span { color: var(--brand-yellow); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ── Search Box ──────────────────────────────────────── */
.search-box {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.search-box .nav-pills .nav-link {
  color: var(--brand-text);
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 20px !important;
}

.search-box .nav-pills .nav-link.active {
  background: var(--brand-dark);
  color: #fff;
}

/* ── Stats Bar ───────────────────────────────────────── */
.stats-bar {
  background: var(--brand-yellow);
  padding: 20px 0;
}

.stat-item h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  color: var(--brand-dark);
}

.stat-item p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.6);
  font-weight: 500;
}

/* ── Section Titles ──────────────────────────────────── */
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.section-subtitle {
  color: var(--brand-text);
  font-size: 1rem;
}

.section-label {
  color: var(--brand-yellow);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Property Cards ──────────────────────────────────── */
.property-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12) !important;
}

.property-card-img {
  transition: transform 0.3s;
}

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

/* ── How It Works ────────────────────────────────────── */
.step-number {
  width: 52px;
  height: 52px;
  background: var(--brand-yellow);
  color: var(--brand-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

/* ── Feature Cards ───────────────────────────────────── */
.feature-card {
  border: none;
  border-radius: 12px;
  padding: 28px 24px;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* ── CTA Section ─────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: #111;
  color: rgba(255,255,255,0.7);
}

.footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer a {
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer a:hover { color: var(--brand-yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  margin-top: 40px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ── Verified Badge ──────────────────────────────────── */
.verified-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-brand {
  background: var(--brand-yellow);
  color: var(--brand-dark);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  transition: all 0.2s;
}

.btn-brand:hover {
  background: #e0a800;
  color: var(--brand-dark);
  transform: translateY(-1px);
}

/* ── Forms ───────────────────────────────────────────── */
.form-control:focus, .form-select:focus {
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255,193,7,0.25);
}

/* ── Auth Pages ──────────────────────────────────────── */
.auth-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ── Dashboard ───────────────────────────────────────── */
.dashboard-stat-card {
  border: none;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* ── Utility ─────────────────────────────────────────── */
.text-brand { color: var(--brand-yellow) !important; }
.bg-brand { background: var(--brand-yellow) !important; }
.rounded-lg { border-radius: 12px !important; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-section { min-height: auto; padding: 60px 0; }
}