:root {
  --brand-red: #E63946;
  --brand-red-hover: #D62839;
  --brand-yellow: #FFB703;
  --brand-yellow-hover: #E5A300;
  --brand-dark: #0F172A;
  --brand-card-bg: #FFFFFF;
  --brand-border: #E2E8F0;
  --brand-text: #1E293B;
  --brand-text-muted: #64748B;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--brand-text);
  background-color: #F8FAFC;
}

/* Navigation */
.navbar-custom {
  background-color: var(--brand-dark);
  padding: 16px 0;
  border-bottom: 2px solid var(--brand-yellow);
}

.brand-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--brand-red);
  color: var(--brand-yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

/* Hero Banner Area (Home) */
.hero-container {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 80px 0 120px 0;
  position: relative;
  overflow: hidden;
}

.hero-container::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.35) 0%, rgba(255, 183, 3, 0.1) 60%, rgba(0,0,0,0) 100%);
  border-radius: 50%;
  filter: blur(50px);
}

.hero-title {
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--brand-yellow);
  position: relative;
  display: inline-block;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-red);
  border-radius: 2px;
}

/* Simple Page Header Banner (About / Contact / Jobs) */
.hero-banner {
  background: var(--brand-dark);
  color: #FFFFFF;
  padding: 60px 0;
}

/* Unified Floating Search Bar */
.search-console {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  border: 2px solid var(--brand-yellow);
  margin-top: -55px;
  position: relative;
  z-index: 10;
}

.search-field {
  padding: 10px 18px;
}

.search-field label {
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brand-red);
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 2px;
}

.search-field input, .search-field select {
  border: none;
  padding: 0;
  font-weight: 600;
  color: var(--brand-dark);
  box-shadow: none !important;
  background: transparent;
}

.btn-search-action {
  background: var(--brand-red);
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 28px;
  border: none;
  transition: all 0.25s ease;
}

.btn-search-action:hover {
  background: var(--brand-red-hover);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
  transform: translateY(-1px);
}

/* Interactive Filter Tabs */
.filter-btn {
  border: 1px solid var(--brand-border);
  background: #FFFFFF;
  color: var(--brand-text-muted);
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--brand-dark);
  color: var(--brand-yellow);
  border-color: var(--brand-dark);
}

/* Job Cards */
.job-card {
  background: var(--brand-card-bg);
  border-radius: 16px;
  border: 1px solid var(--brand-border);
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.job-card:hover {
  border-color: var(--brand-red);
  box-shadow: 0 16px 32px rgba(230, 57, 70, 0.08);
  transform: translateY(-4px);
}

.company-logo-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--brand-dark);
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  overflow: hidden;
}

.company-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-salary {
  background: rgba(255, 183, 3, 0.15);
  color: #B28000;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
}

.badge-type {
  background: rgba(230, 57, 70, 0.1);
  color: var(--brand-red);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 20px;
}

.btn-apply-now {
  background-color: var(--brand-red);
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 10px;
  padding: 8px 20px;
  border: none;
  transition: all 0.2s;
}

.btn-apply-now:hover {
  background-color: var(--brand-red-hover);
  color: #FFFFFF;
}

.btn-brand-yellow {
  background: var(--brand-yellow);
  color: var(--brand-dark);
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 24px;
}

.btn-brand-yellow:hover {
  background: var(--brand-yellow-hover);
  color: var(--brand-dark);
}

/* Testimonials (Home) */
.testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid var(--brand-border);
  padding: 32px;
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--brand-yellow);
  opacity: 0.6;
}

/* Job Single Page */
.job-header {
  background: var(--brand-dark);
  color: #fff;
  padding: 60px 0 80px 0;
  position: relative;
}

.company-logo-large {
  width: 72px;
  height: 72px;
  background: #FFFFFF;
  color: var(--brand-dark);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  border: 3px solid var(--brand-yellow);
  overflow: hidden;
}

.company-logo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-sidebar-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--brand-border);
  padding: 24px;
  position: sticky;
  top: 90px;
}

.job-description-body :is(h1, h2, h3, h4) {
  font-weight: 700;
  margin-top: 1.5rem;
}

.job-description-body p {
  color: #475569;
}

/* About Page */
.stat-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--brand-border);
  border-top: 4px solid var(--brand-red);
}

/* Contact Page */
.contact-card {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--brand-border);
  padding: 32px;
}

.icon-box-red {
  width: 48px;
  height: 48px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--brand-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
