/* Hero */
.hero-section {
    padding: 6rem 1rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(42, 58, 145, 0.06) 0%, transparent 65%);
    z-index: 0;
    pointer-events: none;
}

.hero-section>* {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

/* Search Bar */
.search-bar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.3s ease;
}

.icon-wrapper {
    width: 72px;
    height: 72px;
    background: #eaff6e; /* Neon yellow */
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.25rem;
    color: var(--brand-dark);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.card-hover:hover .icon-wrapper {
    background: #d4e65a;
    color: var(--brand-dark);
    transform: scale(1.05);
}

/* --- Job Type Badge --- */
.badge-brand {
    background: rgba(var(--brand-primary-rgb), 0.08);
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

/* --- Job Status Tag (Yellow) --- */
.job-tag-neon {
    background: #eaff6e;
    color: var(--brand-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.search-bar:hover {
    box-shadow: var(--shadow-hover);
}

.search-bar .form-control {
    border: none;
    background: transparent;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.75rem 0;
}

.search-bar .form-control:focus {
    box-shadow: none;
}

.search-bar .form-control::placeholder {
    color: #94a3b8;
}

.search-bar .input-icon {
    color: var(--brand-primary);
    font-size: 1.25rem;
}

.search-divider {
    width: 1px;
    background-color: #e2e8f0;
    margin: 0.5rem 0;
}

/* Section Styles */
.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.75px;
}

.view-all-link {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.2s ease;
}

.view-all-link:hover {
    gap: 0.5rem;
    text-decoration: underline;
    color: var(--brand-hover);
}

/* Category Cards */
.category-card {
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    border: none;
}

.category-card h5 {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.category-card p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Job Cards */
.job-card {
    border-radius: 16px;
    padding: 2rem;
    border: none;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.job-company {
    color: #514a4a;
    font-weight: 600;
    font-size: 1rem;
}

.job-meta {
    color: #6b7280;
    font-size: 0.9rem;
}

.job-tag {
    background: var(--brand-light);
    color: #6b7280;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    display: inline-block;
}

.job-salary {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--brand-dark);
}

.job-salary span {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .search-bar {
        border-radius: 16px;
        padding: 1rem;
    }

    .search-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
}