:root {
  --bg-deep: #0a0a0a;
  --bg-card: #141414;
  --gold: #ffcc00;
  --gold-muted: rgba(255, 204, 0, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --border-dim: #2a2a2a;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

.text-gold { color: var(--gold) !important; }

/* Navigation */
.navbar {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(15px);
  padding: 20px 0;
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff !important;
}

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

/* Hero */
.hero-wrap {
  padding: 120px 0 80px;
}

.fw-extrabold { font-weight: 800; }

.badge-pill {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold-muted);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Stats */
.stat-box {
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-dim);
}

.stat-box h3 {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  text-transform: uppercase;
}

/* Sections */
.mb-100 { margin-bottom: 100px; }

.section-label {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Resources Grid */
.resource-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.r-item {
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  display: flex;
  justify-content: space-between;
  transition: 0.3s;
}

.r-item:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateX(10px);
}

/* Testimonial Cards */
.testimonial-card {
  padding: 30px;
  background: var(--bg-card);
  border-radius: 16px;
  border-left: 4px solid var(--gold);
  height: 100%;
}

.avatar-sm {
  width: 45px;
  height: 45px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}

/* Job Cards */
.job-card {
  padding: 40px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-dim);
  height: 100%;
  transition: 0.4s;
}

.job-card.featured {
  border: 1px solid var(--gold);
  position: relative;
}

.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.j-type {
  font-size: 0.7rem;
  font-weight: 800;
  background: #222;
  padding: 4px 10px;
  border-radius: 4px;
}

.j-salary {
  font-weight: 600;
  color: var(--gold);
}

.j-specs {
  list-style: none;
  padding: 0;
}

.j-specs li {
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.j-specs i {
  color: var(--gold);
  margin-right: 10px;
}

/* Buttons */
.btn-gold {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 24px;
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  border-radius: 8px;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #000;
}

/* Form Styles */
.custom-input {
  background: #1a1a1a !important;
  border: 1px solid var(--border-dim) !important;
  color: white !important;
  padding: 15px !important;
}

.border-gold {
  border: 1px solid var(--gold) !important;
}