/* ============================================
   AOM VACANCY PORTAL — STYLESHEET
   Workday-inspired Job Application Portal
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --aom-red: #D32F2F;
    --aom-red-dark: #B71C1C;
    --aom-red-light: #FF5252;
    --aom-black: #0A0A0A;
    --aom-dark: #141414;
    --aom-darker: #1A1A1A;
    --aom-gray: #2A2A2A;
    --aom-gray-light: #888;
    --aom-gray-border: #333;
    --aom-white: #FAFAFA;
    --aom-off-white: #E0E0E0;
    --aom-green: #4CAF50;
    --aom-blue: #2196F3;
    --aom-orange: #FF9800;
    --aom-yellow: #FFC107;
    --font-primary: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 10px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--aom-black);
    color: var(--aom-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Portal Header ---- */
.portal-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
}

.portal-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portal-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.portal-logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
}

.portal-logo-text span {
    color: var(--aom-red);
    font-size: 1.8rem;
}

.portal-logo-divider {
    width: 1px;
    height: 28px;
    background: var(--aom-gray-border);
}

.portal-logo-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aom-red);
}

.portal-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.portal-nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--aom-gray-light);
    padding: 8px 0;
    position: relative;
}

.portal-nav-link:hover,
.portal-nav-link.active {
    color: var(--aom-white);
}

.portal-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--aom-red);
}

.portal-back {
    font-size: 0.85rem;
    color: var(--aom-gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.portal-back:hover {
    color: var(--aom-red);
}

/* ---- Hero Banner (Vacancy) ---- */
.vacancy-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--aom-dark) 0%, var(--aom-black) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.vacancy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.vacancy-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.vacancy-hero h1 .highlight {
    color: var(--aom-red);
}

.vacancy-hero p {
    color: var(--aom-gray-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 32px;
}

/* Search Bar */
.search-bar {
    display: flex;
    gap: 12px;
    max-width: 700px;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--aom-white);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.search-input::placeholder {
    color: var(--aom-gray-light);
}

.search-input:focus {
    outline: none;
    border-color: var(--aom-red);
    background: rgba(211, 47, 47, 0.05);
}

.search-btn {
    padding: 14px 28px;
    background: var(--aom-red);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--aom-red-dark);
    transform: translateY(-2px);
}

/* ---- Job Listings ---- */
.vacancy-content {
    padding: 48px 0;
}

.vacancy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

/* Sidebar Filters */
.filters-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 28px;
}

.filter-group h3 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--aom-gray-light);
    margin-bottom: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--aom-off-white);
    cursor: pointer;
    transition: var(--transition);
}

.filter-option:hover {
    color: var(--aom-red);
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid var(--aom-gray-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.filter-option.active .filter-checkbox {
    background: var(--aom-red);
    border-color: var(--aom-red);
}

.filter-option.active .filter-checkbox::after {
    content: '✓';
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Job Cards */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.jobs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.jobs-count {
    font-size: 0.9rem;
    color: var(--aom-gray-light);
}

.jobs-count strong {
    color: var(--aom-white);
}

.job-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.job-card:hover {
    border-color: rgba(211, 47, 47, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.job-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.job-card-company {
    font-size: 0.85rem;
    color: var(--aom-red);
    font-weight: 500;
}

.job-card-badge {
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    background: rgba(211, 47, 47, 0.1);
    color: var(--aom-red);
    white-space: nowrap;
}

.job-card-badge.new {
    background: rgba(76, 175, 80, 0.1);
    color: var(--aom-green);
}

.job-card-badge.urgent {
    background: rgba(255, 152, 0, 0.1);
    color: var(--aom-orange);
}

.job-card-desc {
    font-size: 0.9rem;
    color: var(--aom-gray-light);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.job-card-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--aom-gray-light);
}

.job-card-meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--aom-red);
}

.job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.job-card-date {
    font-size: 0.8rem;
    color: var(--aom-gray-light);
}

.job-apply-btn {
    padding: 10px 24px;
    background: var(--aom-red);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.job-apply-btn:hover {
    background: var(--aom-red-dark);
    transform: translateY(-2px);
}

/* ---- APPLICATION FORM PAGE ---- */
.apply-page {
    padding: 48px 0;
    max-width: 800px;
    margin: 0 auto;
}

/* Progress Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    position: relative;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.stepper-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--aom-gray);
    border: 2px solid var(--aom-gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-bottom: 8px;
}

.stepper-step.active .stepper-circle {
    background: var(--aom-red);
    border-color: var(--aom-red);
    box-shadow: 0 0 20px rgba(211, 47, 47, 0.4);
}

.stepper-step.completed .stepper-circle {
    background: var(--aom-green);
    border-color: var(--aom-green);
}

.stepper-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--aom-gray-light);
    text-align: center;
}

.stepper-step.active .stepper-label {
    color: var(--aom-white);
}

.stepper-line {
    flex: 1;
    height: 2px;
    background: var(--aom-gray-border);
    margin: 0 -16px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.stepper-line.completed {
    background: var(--aom-green);
}

/* Form Cards */
.form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 24px;
}

.form-card h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-card-desc {
    font-size: 0.9rem;
    color: var(--aom-gray-light);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--aom-off-white);
}

.form-label .required {
    color: var(--aom-red);
    margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--aom-white);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--aom-red);
    background: rgba(211, 47, 47, 0.04);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #666;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--aom-dark);
    color: var(--aom-white);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* File Upload */
.file-upload {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload:hover {
    border-color: var(--aom-red);
    background: rgba(211, 47, 47, 0.03);
}

.file-upload-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.file-upload p {
    font-size: 0.9rem;
    color: var(--aom-gray-light);
    margin-bottom: 4px;
}

.file-upload .file-types {
    font-size: 0.75rem;
    color: #666;
}

.file-upload input[type="file"] {
    display: none;
}

/* LinkedIn Connect Button */
.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #0077B5;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.linkedin-btn:hover {
    background: #005E93;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 119, 181, 0.3);
}

.linkedin-btn svg {
    width: 20px;
    height: 20px;
}

.or-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: #666;
    font-size: 0.8rem;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* Form Buttons */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    gap: 16px;
}

.btn-back {
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--aom-white);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-back:hover {
    border-color: var(--aom-red);
    color: var(--aom-red);
}

.btn-next {
    padding: 14px 32px;
    background: var(--aom-red);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-next:hover {
    background: var(--aom-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.3);
}

/* ---- DASHBOARD PAGE ---- */
.dashboard-page {
    padding: 48px 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
}

/* Profile Sidebar */
.profile-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.profile-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aom-red), var(--aom-red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.profile-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.profile-email {
    font-size: 0.85rem;
    color: var(--aom-gray-light);
    margin-bottom: 20px;
}

.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.profile-stat {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.profile-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aom-red);
}

.profile-stat-label {
    font-size: 0.7rem;
    color: var(--aom-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-menu {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 0.9rem;
    color: var(--aom-off-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
    cursor: pointer;
}

.profile-menu-item:last-child {
    border-bottom: none;
}

.profile-menu-item:hover,
.profile-menu-item.active {
    background: rgba(211, 47, 47, 0.08);
    color: var(--aom-red);
}

/* Application Status Tracker */
.status-tracker {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.status-tracker h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.status-pipeline {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
}

.status-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.status-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--aom-gray);
    border: 2px solid var(--aom-gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.status-step.completed .status-dot {
    background: var(--aom-green);
    border-color: var(--aom-green);
}

.status-step.current .status-dot {
    background: var(--aom-red);
    border-color: var(--aom-red);
    box-shadow: 0 0 16px rgba(211, 47, 47, 0.4);
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {

    0%,
    100% {
        box-shadow: 0 0 16px rgba(211, 47, 47, 0.4);
    }

    50% {
        box-shadow: 0 0 24px rgba(211, 47, 47, 0.6);
    }
}

.status-step.rejected .status-dot {
    background: #F44336;
    border-color: #F44336;
}

.status-step-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--aom-gray-light);
    letter-spacing: 0.5px;
}

.status-step.completed .status-step-label,
.status-step.current .status-step-label {
    color: var(--aom-white);
}

.status-connector {
    flex: 0.5;
    height: 2px;
    background: var(--aom-gray-border);
    margin-bottom: 30px;
}

.status-connector.completed {
    background: var(--aom-green);
}

/* Application Cards in Dashboard */
.application-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.application-card:hover {
    border-color: rgba(211, 47, 47, 0.2);
}

.application-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.application-info p {
    font-size: 0.85rem;
    color: var(--aom-gray-light);
}

.application-status {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.application-status.screening {
    background: rgba(33, 150, 243, 0.1);
    color: var(--aom-blue);
}

.application-status.interview {
    background: rgba(255, 152, 0, 0.1);
    color: var(--aom-orange);
}

.application-status.offered {
    background: rgba(76, 175, 80, 0.1);
    color: var(--aom-green);
}

.application-status.applied {
    background: rgba(255, 255, 255, 0.05);
    color: var(--aom-gray-light);
}

.application-status.rejected {
    background: rgba(244, 67, 54, 0.1);
    color: #F44336;
}

/* ---- Portal Footer ---- */
.portal-footer {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    margin-top: 80px;
}

.portal-footer p {
    font-size: 0.8rem;
    color: var(--aom-gray-light);
}

.portal-footer a {
    color: var(--aom-red);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .vacancy-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .filter-group {
        flex: 1;
        min-width: 200px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .search-bar {
        flex-direction: column;
    }

    .status-pipeline {
        flex-direction: column;
        gap: 12px;
    }

    .status-connector {
        width: 2px;
        height: 20px;
        margin: 0;
    }

    .application-card {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .stepper {
        flex-wrap: wrap;
        gap: 8px;
    }

    .stepper-line {
        display: none;
    }

    .form-card {
        padding: 24px;
    }
}

/* ============================================
   THEME TOGGLE BUTTON (Base Styles for Vacancy)
   Vacancy pages don't load styles.css, so include here
   ============================================ */

.theme-toggle {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--aom-red);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.4);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(211, 47, 47, 0.5);
}

.theme-toggle .theme-icon {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============================================
   LIGHT MODE OVERRIDES (Vacancy Portal)
   Vacancy is dark by default; [data-theme="light"] inverts to white
   ============================================ */

/* Toggle button override for vacancy (default dark) */
.theme-toggle .sun {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.theme-toggle .moon {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

[data-theme="light"] .theme-toggle .sun {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

[data-theme="light"] .theme-toggle .moon {
    opacity: 1;
    transform: scale(1) rotate(0);
}

[data-theme="light"] body {
    background: #fafafa;
    color: #1a1a1a;
}

/* Header */
[data-theme="light"] .portal-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .portal-logo-text {
    color: #1a1a1a;
}

[data-theme="light"] .portal-logo-divider {
    background: #ddd;
}

[data-theme="light"] .portal-nav-link {
    color: #666;
}

[data-theme="light"] .portal-nav-link:hover,
[data-theme="light"] .portal-nav-link.active {
    color: #1a1a1a;
}

[data-theme="light"] .portal-back {
    color: #666;
}

[data-theme="light"] .portal-back:hover {
    color: var(--aom-red);
}

/* Hero */
[data-theme="light"] .vacancy-hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .vacancy-hero::before {
    background: radial-gradient(circle, rgba(211, 47, 47, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .vacancy-hero h1 {
    color: #1a1a1a;
}

[data-theme="light"] .vacancy-hero p {
    color: #666;
}

/* Search */
[data-theme="light"] .search-input {
    background: #fff;
    border-color: #ddd;
    color: #1a1a1a;
}

[data-theme="light"] .search-input::placeholder {
    color: #999;
}

[data-theme="light"] .search-input:focus {
    border-color: var(--aom-red);
    background: #fff;
}

/* Filters */
[data-theme="light"] .filter-group h3 {
    color: #666;
}

[data-theme="light"] .filter-option {
    color: #333;
}

[data-theme="light"] .filter-checkbox {
    border-color: #ddd;
}

/* Job Cards */
[data-theme="light"] .job-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .job-card:hover {
    border-color: rgba(211, 47, 47, 0.3);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .job-card-title {
    color: #1a1a1a;
}

[data-theme="light"] .job-card-desc {
    color: #666;
}

[data-theme="light"] .job-card-meta-item {
    color: #888;
}

[data-theme="light"] .job-card-footer {
    border-top-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .job-card-date {
    color: #999;
}

[data-theme="light"] .jobs-count {
    color: #666;
}

[data-theme="light"] .jobs-count strong {
    color: #1a1a1a;
}

/* Form Cards */
[data-theme="light"] .form-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .form-card h2 {
    color: #1a1a1a;
}

[data-theme="light"] .form-card-desc {
    color: #666;
}

[data-theme="light"] .form-label {
    color: #333;
}

[data-theme="light"] .form-input,
[data-theme="light"] .form-select,
[data-theme="light"] .form-textarea {
    background: #f5f5f5;
    border-color: #ddd;
    color: #1a1a1a;
}

[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-select:focus,
[data-theme="light"] .form-textarea:focus {
    background: #fff;
    border-color: var(--aom-red);
}

[data-theme="light"] .form-input::placeholder,
[data-theme="light"] .form-textarea::placeholder {
    color: #999;
}

[data-theme="light"] .form-select option {
    background: #fff;
    color: #1a1a1a;
}

/* File upload */
[data-theme="light"] .file-upload {
    border-color: #ddd;
}

[data-theme="light"] .file-upload:hover {
    border-color: var(--aom-red);
    background: rgba(211, 47, 47, 0.02);
}

[data-theme="light"] .file-upload p {
    color: #666;
}

/* Or divider */
[data-theme="light"] .or-divider {
    color: #aaa;
}

[data-theme="light"] .or-divider::before,
[data-theme="light"] .or-divider::after {
    background: #ddd;
}

/* Buttons */
[data-theme="light"] .btn-back {
    border-color: #ddd;
    color: #333;
}

[data-theme="light"] .btn-back:hover {
    border-color: var(--aom-red);
    color: var(--aom-red);
}

/* Stepper */
[data-theme="light"] .stepper-circle {
    background: #e0e0e0;
    border-color: #ccc;
    color: #666;
}

[data-theme="light"] .stepper-label {
    color: #666;
}

[data-theme="light"] .stepper-step.active .stepper-label {
    color: #1a1a1a;
}

[data-theme="light"] .stepper-line {
    background: #ddd;
}

/* Dashboard */
[data-theme="light"] .profile-card,
[data-theme="light"] .application-card,
[data-theme="light"] .stat-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .profile-name {
    color: #1a1a1a;
}

[data-theme="light"] .profile-email {
    color: #666;
}

[data-theme="light"] .stat-card .stat-number {
    color: #1a1a1a;
}

[data-theme="light"] .stat-card .stat-label {
    color: #666;
}

/* Footer */
[data-theme="light"] .portal-footer {
    background: #f0f0f0;
    color: #666;
}

[data-theme="light"] .portal-footer a {
    color: var(--aom-red);
}