:root {
    --primary: #5B35E5;
    --secondary: #8B2CF5;
    --deep-blue: #4338CA;
    --light-purple: #F5F2FF;
    --soft-bg: #FAFAFC;
    --text-dark: #111827;
    --text-gray: #64748B;
    --success: #16A34A;
    --danger: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;
    --gradient-primary: linear-gradient(135deg, #5B35E5 0%, #8B2CF5 100%);
    --gradient-hero: linear-gradient(135deg, #5B35E5 0%, #4338CA 50%, #8B2CF5 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 12px rgba(91,53,229,0.08);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    --glass-bg: rgba(255,255,255,0.65);
    --glass-border: rgba(255,255,255,0.45);
    --glass-shadow: 0 8px 32px rgba(91,53,229,0.10);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==============================
   GLASSMORPHISM UTILITIES
   ============================== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(91,53,229,0.08);
}

/* ==============================
   BUTTONS
   ============================== */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.35s;
}
.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(91,53,229,0.35);
    color: #fff;
}
.btn-premium:hover::before { opacity: 1; }

.btn-outline-premium {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline-premium:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(91,53,229,0.3);
}

/* Legacy gradient-btn kept for backward compat */
.gradient-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.gradient-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(91,53,229,0.35);
    color: #fff;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

/* ==============================
   SECTION HEADERS
   ============================== */
.section-header-premium {
    text-align: center;
    margin-bottom: 3rem;
}
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    background: var(--light-purple);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}
.section-header-premium h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.section-header-premium p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Legacy section-title kept */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: var(--light-purple);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.section-title p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Section spacing */
.py-section-premium { padding: 80px 0; }
.py-section { padding: 80px 0; }
.bg-soft { background: var(--soft-bg); }

/* ==============================
   HEADER
   ============================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.navbar { padding: 12px 0; }
.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}
.brand-accent { color: var(--primary); }
.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
    background: var(--light-purple);
}

/* ==============================
   HERO EXACT - Match img1.png
   ============================== */
.hero-exact {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}
.hero-exact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-exact-row {
    min-height: 520px;
    position: relative;
    z-index: 1;
    align-items: flex-end !important;
}
.hero-exact-content {
    padding: 3rem 0;
}
.hero-exact-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero-exact-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}
.hero-exact-sub {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
}

/* White Search Bar - matching img1.png */
.hero-exact-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 24px;
    box-shadow: 0 8px 32px rgba(91,53,229,0.12);
    max-width: 600px;
}
.hes-field {
    flex: 1;
    min-width: 0;
}
.hes-input {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text-dark);
    width: 100%;
    padding: 12px 0;
    outline: none;
    font-family: inherit;
}
.hes-input::placeholder { color: #9ca3af; }
.hes-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 24px;
}
.hes-divider {
    width: 1px;
    height: 28px;
    background: #e5e7eb;
    margin: 0 16px;
    flex-shrink: 0;
}
.hes-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}
.hes-btn:hover {
    background: var(--secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(91,53,229,0.3);
}

/* Hero Student - real image */
.hero-exact-student {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 0;
    margin-bottom: 0;
    position: relative;
}
.hero-student-real {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(91,53,229,0.12));
    object-position: bottom;
    object-fit: contain;
    display: block;
}

/* ==============================
   RECRUITER EXACT - Match img1.png bottom
   ============================== */
.recruiter-exact {
    padding: 30px 0 40px;
    background: #fff;
}
.recruiter-exact-inner {
    text-align: center;
}
.recruiter-exact-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}
.recruiter-exact-track-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.recruiter-exact-track-wrapper::before,
.recruiter-exact-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.recruiter-exact-track-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}
.recruiter-exact-track-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, #fff 0%, transparent 100%);
}
.recruiter-exact-track {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
}
.recruiter-exact-track:hover {
    animation-play-state: paused;
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.recruiter-exact-slide {
    flex-shrink: 0;
}
.recruiter-exact-slide img {
    height: 44px;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(30%);
    transition: all 0.3s;
}
.recruiter-exact-slide:hover img {
    opacity: 1;
    filter: grayscale(0);
}

/* ==============================
   RECRUITER LOGOS - AUTO SCROLL
   ============================== */
.recruiter-premium {
    padding: 50px 0 40px;
    text-align: center;
    overflow: hidden;
}
.recruiter-header { margin-bottom: 1.5rem; }
.recruiter-label {
    color: var(--text-gray);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
}
.recruiter-track-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.recruiter-track-wrapper::before,
.recruiter-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.recruiter-track-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}
.recruiter-track-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, #fff 0%, transparent 100%);
}
.recruiter-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
}
.recruiter-track:hover {
    animation-play-state: paused;
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.recruiter-slide {
    flex-shrink: 0;
}
.recruiter-logo-card {
    height: 48px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #f0f0f5;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}
.recruiter-logo-card img {
    height: 32px;
    max-width: 100px;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.35s;
}
.recruiter-logo-card:hover img {
    opacity: 1;
    filter: grayscale(0);
}
.recruiter-logo-card:hover {
    border-color: rgba(91,53,229,0.2);
    box-shadow: 0 4px 16px rgba(91,53,229,0.08);
}

/* ==============================
   LATEST JOBS EXACT - Match latest jobs.png
   ============================== */
.latest-jobs-exact {
    padding: 60px 0;
    background: var(--soft-bg);
    position: relative;
    overflow: hidden;
}
.latest-jobs-heading {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}
.latest-jobs-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 20px 0;
    scroll-behavior: smooth;
}
.latest-jobs-scroll-wrapper::-webkit-scrollbar { display: none; }
.latest-jobs-scroll-track {
    display: flex;
    gap: 24px;
    padding: 10px 40px;
    width: max-content;
}

/* Latest Job Card - matching latest jobs.png */
.latest-job-card {
    width: 420px;
    flex-shrink: 0;
    display: flex;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #f0f0f5;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.latest-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(91,53,229,0.10);
    border-color: rgba(91,53,229,0.15);
}
.ljc-poster {
    width: 140px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-purple) 0%, #ede9fe 100%);
}
.ljc-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ljc-poster-overlay {
    position: absolute;
    bottom: 8px;
    left: 8px;
}
.ljc-type-badge {
    padding: 4px 10px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
}
.ljc-details {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}
.ljc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}
.ljc-company {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}
.ljc-info-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 0.85rem;
    color: var(--text-gray);
}
.ljc-info-row i {
    color: var(--primary);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.ljc-skills-row {
    margin-bottom: 12px;
}
.ljc-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
}
.ljc-apply-btn {
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
.ljc-apply-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(91,53,229,0.3);
    color: #fff;
}
.ljc-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
}
.ljc-phone {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}
.ljc-phone:hover {
    background: #2e7d32;
    color: #fff;
    border-color: #2e7d32;
}
.ljc-whatsapp {
    background: #e8f5e9;
    color: #25d366;
    border: 1px solid #c8e6c9;
}
.ljc-whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}
.view-recent-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 36px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.35s;
}
.view-recent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91,53,229,0.3);
    color: #fff;
}

/* ==============================
   JOBS GRID PREMIUM
   ============================== */
.jobs-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.job-card-glass {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(240,240,245,0.8);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.job-card-glass:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(91,53,229,0.10);
    border-color: rgba(91,53,229,0.15);
}
.job-card-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1rem;
}
.job-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: var(--light-purple);
    padding: 4px;
    flex-shrink: 0;
}
.job-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-dark);
}
.job-company {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}
.job-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}
.job-meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.job-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1rem;
}
.jtag {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}
.jtag-type { background: rgba(91,53,229,0.1); color: var(--primary); }
.jtag-mode { background: rgba(59,130,246,0.1); color: var(--info); }
.jtag-urgent { background: rgba(239,68,68,0.1); color: var(--danger); }
.jtag-featured { background: rgba(245,158,11,0.1); color: var(--warning); }
.job-card-bottom {
    margin-top: auto;
    display: flex;
    gap: 8px;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f5;
}
.btn-glass-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-glass-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(91,53,229,0.25);
    color: #fff;
}
.btn-glass-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: var(--radius-sm);
    color: var(--text-gray);
    transition: all 0.3s;
    cursor: pointer;
}
.btn-glass-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--light-purple);
}

/* Legacy job-card kept for other pages */
.job-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid #f0f0f5;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(91,53,229,0.15);
}
.job-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1rem;
}
.job-card-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: var(--light-purple);
    padding: 4px;
}
.job-card-info h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.job-card-info p { color: var(--text-gray); font-size: 0.9rem; margin: 0; }
.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}
.job-card-meta span { display: inline-flex; align-items: center; gap: 5px; }
.job-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }
.job-tag { padding: 4px 12px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; }
.job-tag.type { background: rgba(91,53,229,0.1); color: var(--primary); }
.job-tag.mode { background: rgba(59,130,246,0.1); color: var(--info); }
.job-tag.urgent { background: rgba(239,68,68,0.1); color: var(--danger); }
.job-tag.featured { background: rgba(245,158,11,0.1); color: var(--warning); }
.job-card-footer {
    margin-top: auto;
    display: flex;
    gap: 8px;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f5;
}
.job-card-footer .btn { flex: 1; padding: 10px; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 600; }
.btn-save { border: 1px solid #e5e7eb; background: #fff; color: var(--text-gray); }
.btn-save:hover { border-color: var(--primary); color: var(--primary); background: var(--light-purple); }
.btn-apply { background: var(--gradient-primary); border: none; color: #fff; }

/* ==============================
   CATEGORIES - HORIZONTAL SCROLL
   ============================== */
.categories-premium {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--soft-bg) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.categories-premium::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,53,229,0.05) 0%, transparent 70%);
}
.categories-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 0 10px 0;
    scroll-behavior: smooth;
}
.categories-scroll-wrapper::-webkit-scrollbar { display: none; }
.categories-scroll-track {
    display: flex;
    gap: 20px;
    padding: 10px 40px;
    width: max-content;
}
.cat-card-scroll {
    width: 180px;
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    border: 1px solid #f0f0f5;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
.cat-card-scroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cat-color);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: center;
}
.cat-card-scroll:hover::before { transform: scaleX(1); }
.cat-card-scroll:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: transparent;
}
.cat-icon-scroll {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}
.cat-icon-bg-scroll {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--cat-color);
    opacity: 0.08;
    transition: all 0.35s ease;
}
.cat-card-scroll:hover .cat-icon-bg-scroll {
    opacity: 0.15;
    transform: scale(1.12);
}
.cat-icon-scroll i {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cat-color);
    transition: all 0.35s ease;
}
.cat-card-scroll:hover .cat-icon-scroll i { transform: scale(1.1); }
.cat-card-scroll h5 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    line-height: 1.3;
    transition: color 0.3s;
}
.cat-card-scroll:hover h5 { color: var(--cat-color); }
.cat-count-scroll {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.count-num-scroll {
    font-size: 1rem;
    font-weight: 800;
    color: var(--cat-color);
}
.count-label-scroll {
    font-size: 0.78rem;
    color: var(--text-gray);
}

/* Legacy categories grid kept for about/other pages */
.categories-section {
    background: linear-gradient(180deg, var(--soft-bg) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.category-card-v2 {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    border: 1px solid #f0f0f5;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
.category-card-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--cat-color);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: center;
}
.category-card-v2:hover::before { transform: scaleX(1); }
.category-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: transparent;
}
.cat-icon-wrap {
    position: relative;
    width: 68px; height: 68px;
    margin-bottom: 1.25rem;
}
.cat-icon-bg {
    position: absolute; inset: 0;
    border-radius: 50%;
    background: var(--cat-color);
    opacity: 0.08;
    transition: all 0.35s ease;
}
.category-card-v2:hover .cat-icon-bg { opacity: 0.15; transform: scale(1.12); }
.cat-icon-wrap i {
    position: relative; z-index: 1;
    width: 68px; height: 68px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--cat-color);
    transition: all 0.35s ease;
}
.category-card-v2:hover .cat-icon-wrap i { transform: scale(1.1); }
.category-card-v2 h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); line-height: 1.3; transition: color 0.3s; }
.category-card-v2:hover h5 { color: var(--cat-color); }
.cat-count { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0.75rem; }
.cat-count .count-num { font-size: 1.1rem; font-weight: 800; color: var(--cat-color); }
.cat-count .count-label { font-size: 0.8rem; color: var(--text-gray); }
.cat-arrow { width: 36px; height: 36px; border-radius: 50%; background: var(--soft-bg); display: flex; align-items: center; justify-content: center; color: var(--text-gray); font-size: 0.85rem; transition: all 0.35s ease; }
.category-card-v2:hover .cat-arrow { background: var(--cat-color); color: #fff; transform: translateX(3px); }

/* ==============================
   POST JOB PREMIUM
   ============================== */
.post-job-premium { position: relative; overflow: hidden; }
.premium-heading {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
}
.premium-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}
.stats-row {
    display: flex;
    gap: 24px;
}
.stat-item-premium { text-align: center; }
.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat-txt {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 6px;
}

.glass-form-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(91,53,229,0.08);
}
.glass-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}
.glass-input-field {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    background: rgba(255,255,255,0.6);
    transition: all 0.3s;
    outline: none;
}
.glass-input-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(91,53,229,0.1);
    background: #fff;
}
textarea.glass-input-field { resize: vertical; }
select.glass-input-field { cursor: pointer; }

/* Legacy post-job kept */
.post-job-section { position: relative; overflow: hidden; }
.post-job-form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(91,53,229,0.08);
}
.post-job-form-card .form-label { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.post-job-form-card .form-control,
.post-job-form-card .form-select { border: 1px solid #e5e7eb; border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.95rem; }
.post-job-form-card .form-control:focus,
.post-job-form-card .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(91,53,229,0.1); }

/* ==============================
   MAP CARD
   ============================== */
.map-card {
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid #f0f0f5;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}
.map-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
}
.map-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fdf2f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec4899;
    font-size: 1rem;
    flex-shrink: 0;
}
.map-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.map-card-subtitle {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin: 0;
}
.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f5;
    margin: 0 16px;
}
.map-wrapper iframe {
    display: block;
}
.map-view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 32px);
    margin: 16px;
    padding: 14px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}
.map-view-btn:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(91,53,229,0.3);
}

/* ==============================
   EMPLOYER IMAGE
   ============================== */
.employer-img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* ==============================
   ABOUT EXACT - Match about.png
   ============================== */
.about-exact-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.about-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-purple);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.about-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}
.about-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}
.about-stats-row {
    display: flex;
    gap: 32px;
    margin-bottom: 2rem;
}
.about-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.about-stat-text {
    display: flex;
    flex-direction: column;
}
.about-stat-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}
.about-stat-text span {
    font-size: 0.85rem;
    color: var(--text-gray);
}
.about-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-explore-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(91,53,229,0.35);
    color: #fff;
}
.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.about-section .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==============================
   PLACEMENTS - SCROLLABLE
   ============================== */
.placements-premium {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, var(--light-purple) 100%);
    position: relative;
    overflow: hidden;
}
.placements-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 20px 0;
    scroll-behavior: smooth;
}
.placements-scroll-wrapper::-webkit-scrollbar { display: none; }
.placements-scroll-track {
    display: flex;
    gap: 24px;
    padding: 10px 40px;
    width: max-content;
}
.placement-card-scroll {
    width: 300px;
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #f0f0f5;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.placement-card-scroll:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(91,53,229,0.12);
    border-color: rgba(91,53,229,0.15);
}
.placement-photo-scroll {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-purple) 0%, #ede9fe 100%);
}
.placement-photo-scroll img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.placement-card-scroll:hover .placement-photo-scroll img {
    transform: scale(1.05);
}
.placement-lpa-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(91,53,229,0.3);
}
.placement-body-scroll {
    padding: 1.25rem 1.5rem 1.5rem;
}
.placement-body-scroll h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.placement-role-scroll {
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}
.placement-company-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.placement-company-scroll img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #f0f0f5;
}
.placement-company-scroll span {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}
.placement-quote {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid #f0f0f5;
}

/* Legacy placements kept */
.placements-section {
    background: linear-gradient(180deg, #fff 0%, var(--light-purple) 100%);
    position: relative;
    overflow: hidden;
}
.placements-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.placement-card-v2 {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #f0f0f5;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.placement-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(91,53,229,0.12);
    border-color: rgba(91,53,229,0.15);
}
.placement-photo-wrap {
    position: relative;
    width: 100%;
    padding-top: 85%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-purple) 0%, #ede9fe 100%);
}
.placement-photo-v2 {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.placement-card-v2:hover .placement-photo-v2 { transform: scale(1.05); }
.placement-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(91,53,229,0.3);
}
.placement-info { padding: 1.25rem 1.5rem 1.5rem; }
.placement-info h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.placement-role { font-size: 0.88rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.placement-company { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.company-logo-v2 { width: 28px; height: 28px; border-radius: 6px; object-fit: cover; border: 1px solid #f0f0f5; }
.placement-company span { font-size: 0.85rem; color: var(--text-gray); font-weight: 500; }
.placement-msg { font-size: 0.8rem; color: var(--text-gray); font-style: italic; line-height: 1.5; margin: 0; padding-top: 10px; border-top: 1px solid #f0f0f5; }

/* ==============================
   CONTACT PREMIUM
   ============================== */
.contact-premium { position: relative; overflow: hidden; }
.contact-type-glass {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border: 2px solid #f0f0f5;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s;
}
.contact-type-glass:hover,
.contact-type-glass.active {
    border-color: var(--primary);
    background: rgba(245,242,255,0.7);
    box-shadow: 0 4px 20px rgba(91,53,229,0.1);
}
.contact-type-glass i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}
.contact-type-glass h6 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.contact-type-glass small {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.glass-info-box {
    background: rgba(59,130,246,0.08);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.glass-info-box i { color: var(--info); flex-shrink: 0; margin-top: 2px; }

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.glass-check {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Legacy contact-card */
.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 2px solid #f0f0f5;
    transition: all 0.3s;
    cursor: pointer;
}
.contact-card:hover, .contact-card.active { border-color: var(--primary); box-shadow: var(--shadow-card); }
.contact-card.active { background: var(--light-purple); }

/* ==============================
   NEWSLETTER EXACT - Match newslatter.png
   ============================== */
.newsletter-exact {
    padding: 70px 0;
    background: linear-gradient(135deg, #f5f2ff 0%, #ede9fe 50%, #e8e0ff 100%);
    position: relative;
    overflow: hidden;
}
.newsletter-exact-row {
    align-items: center;
}
.newsletter-exact-content {
    position: relative;
    z-index: 1;
}
.newsletter-exact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #fff;
    border: 1px solid rgba(91,53,229,0.15);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 8px rgba(91,53,229,0.06);
}
.neb-icon {
    font-size: 1rem;
}
.newsletter-exact-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.newsletter-exact-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.newsletter-exact-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 480px;
}

/* Email Input - matching newslatter.png */
.newsletter-exact-form {
    margin-bottom: 1.25rem;
}
.nef-input-group {
    display: flex;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 6px;
    box-shadow: 0 4px 20px rgba(91,53,229,0.08);
    max-width: 480px;
}
.nef-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    font-family: inherit;
}
.nef-input::placeholder { color: #9ca3af; }
.nef-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.nef-btn:hover {
    background: var(--secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(91,53,229,0.25);
}

/* Features */
.newsletter-exact-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.newsletter-exact-features span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nef-emoji {
    font-size: 0.95rem;
}

/* Visual Card - matching newslatter.png right side */
.newsletter-exact-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.ne-visual-card {
    position: relative;
    width: 260px;
    height: 200px;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 40px rgba(91,53,229,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ne-visual-inner {
    width: 180px;
    height: 120px;
    border: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.ne-visual-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}
.ne-visual-bell {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(91,53,229,0.3);
}
.ne-visual-bell i {
    font-size: 1.3rem;
    color: #fff;
}

/* Legacy newsletter */
.newsletter-premium {
    padding: 80px 0;
    background: var(--gradient-hero);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.newsletter-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.n-orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.n-orb-1 { width: 300px; height: 300px; top: -100px; right: -100px; }
.n-orb-2 { width: 200px; height: 200px; bottom: -80px; left: -60px; }
.n-orb-3 { width: 150px; height: 150px; top: 50%; left: 40%; }

.newsletter-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.newsletter-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.newsletter-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.newsletter-features span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.newsletter-form-glass {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    padding: 8px;
}
.newsletter-input-group {
    display: flex;
    gap: 4px;
}
.newsletter-input {
    flex: 1;
    border: none;
    background: rgba(255,255,255,0.9);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    color: var(--text-dark);
}
.newsletter-input::placeholder { color: #9ca3af; }
.newsletter-btn {
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 16px 36px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.newsletter-btn:hover {
    background: var(--light-purple);
    transform: translateY(-1px);
}

/* Legacy newsletter */
.newsletter-section {
    background: var(--gradient-hero);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.newsletter-section .form-control { border: none; padding: 14px 20px; border-radius: var(--radius-md); }
.newsletter-section .btn-subscribe { background: #fff; color: var(--primary); border: none; padding: 14px 32px; border-radius: var(--radius-md); font-weight: 700; }
.newsletter-section .btn-subscribe:hover { background: var(--light-purple); }

/* ==============================
   FAQ PREMIUM
   ============================== */
.faq-premium { position: relative; }
.faq-glass-item {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid #f0f0f5;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-glass-item:hover {
    border-color: rgba(91,53,229,0.15);
    box-shadow: 0 4px 16px rgba(91,53,229,0.06);
}
.faq-glass-item .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    color: var(--text-dark);
    box-shadow: none;
}
.faq-glass-item .accordion-button:not(.collapsed) {
    background: var(--light-purple);
    color: var(--primary);
}
.faq-glass-item .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-gray);
}

/* Legacy FAQ */
.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid #f0f0f5;
    overflow: hidden;
}
.faq-item .accordion-button { font-weight: 600; font-size: 1rem; padding: 1.25rem 1.5rem; color: var(--text-dark); box-shadow: none; }
.faq-item .accordion-button:not(.collapsed) { background: var(--light-purple); color: var(--primary); }
.faq-item .accordion-body { padding: 0 1.5rem 1.25rem; color: var(--text-gray); }

/* ==============================
   EMPTY STATES
   ============================== */
.empty-state-glass {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}
.empty-state-glass i {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    display: block;
}
.empty-state-glass h5 { color: var(--text-gray); margin-bottom: 0.5rem; }
.empty-state-glass p { color: #9ca3af; font-size: 0.9rem; }

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}
.empty-state i { font-size: 4rem; color: #d1d5db; margin-bottom: 1rem; }
.empty-state h5 { color: var(--text-gray); margin-bottom: 0.5rem; }
.empty-state p { color: #9ca3af; font-size: 0.9rem; }

/* ==============================
   FOOTER
   ============================== */
.site-footer { background: var(--text-dark); color: #fff; }
.footer-top { padding: 60px 0 40px; }
.footer-brand .brand-text { font-size: 1.8rem; color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); }
.social-links { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s; }
.social-link:hover { background: var(--primary); transform: translateY(-2px); }
.footer-title { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-contact i { color: var(--primary); margin-top: 4px; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-left: 20px; }
.footer-bottom-links a:hover { color: #fff; }

/* ==============================
   DASHBOARD
   ============================== */
.dashboard-layout { display: flex; min-height: 100vh; padding-top: 70px; }
.dashboard-sidebar { width: 260px; background: #fff; border-right: 1px solid #f0f0f5; padding: 2rem 0; position: fixed; top: 70px; bottom: 0; left: 0; overflow-y: auto; z-index: 1040; }
.sidebar-nav { list-style: none; padding: 0; }
.sidebar-nav li a { display: flex; align-items: center; gap: 12px; padding: 12px 24px; color: var(--text-gray); font-weight: 500; font-size: 0.95rem; transition: all 0.2s; }
.sidebar-nav li a:hover { background: var(--light-purple); color: var(--primary); }
.sidebar-nav li a.active { background: var(--light-purple); color: var(--primary); font-weight: 600; border-right: 3px solid var(--primary); }
.sidebar-nav li a i { font-size: 1.1rem; width: 24px; text-align: center; }
.dashboard-content { flex: 1; margin-left: 260px; padding: 2rem; background: var(--soft-bg); min-height: calc(100vh - 70px); }

/* Stat Cards */
.stat-card { background: #fff; border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid #f0f0f5; transition: all 0.3s; }
.stat-card:hover { box-shadow: var(--shadow-card); }
.stat-card .stat-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.stat-card .stat-number { font-size: 1.8rem; font-weight: 800; }
.stat-card .stat-label { color: var(--text-gray); font-size: 0.9rem; }

/* Auth Forms */
.auth-section { min-height: 100vh; display: flex; align-items: center; padding: 100px 0 60px; background: var(--light-purple); }
.auth-card { background: #fff; border-radius: var(--radius-xl); padding: 3rem; box-shadow: var(--shadow-lg); max-width: 480px; margin: 0 auto; }
.auth-card h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.auth-card p { color: var(--text-gray); margin-bottom: 2rem; }

/* ==============================
   TABLES
   ============================== */
.table-custom { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid #f0f0f5; }
.table-custom thead { background: var(--soft-bg); }
.table-custom th { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-gray); border-bottom: 1px solid #f0f0f5; padding: 14px 16px; }
.table-custom td { padding: 14px 16px; vertical-align: middle; border-bottom: 1px solid #f0f0f5; }

/* Badges */
.badge-status { padding: 5px 12px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; }
.badge-pending { background: rgba(245,158,11,0.1); color: var(--warning); }
.badge-published { background: rgba(22,163,74,0.1); color: var(--success); }
.badge-rejected { background: rgba(239,68,68,0.1); color: var(--danger); }
.badge-draft { background: rgba(100,116,139,0.1); color: var(--text-gray); }
.badge-closed { background: rgba(100,116,139,0.1); color: var(--text-gray); }

/* Profile Completion */
.progress-custom { height: 10px; border-radius: var(--radius-full); background: #f0f0f5; overflow: hidden; }
.progress-custom .progress-bar { background: var(--gradient-primary); border-radius: var(--radius-full); }

/* ==============================
   JOBS PAGE PREMIUM
   ============================== */
.jobs-hero {
    padding: 130px 0 40px;
    background: linear-gradient(180deg, var(--light-purple) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.jobs-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,53,229,0.06) 0%, transparent 70%);
}
.jobs-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.jobs-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.jobs-hero-sub {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

.jobs-main-section {
    padding: 40px 0 80px;
}

/* Glass Filter Bar */
.glass-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-xl);
    padding: 8px;
    box-shadow: 0 8px 40px rgba(91,53,229,0.08), inset 0 1px 0 rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}
.filter-fields {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 4px;
    flex-wrap: wrap;
}
.filter-field {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    flex: 1;
    min-width: 160px;
}
.filter-field i {
    color: var(--primary);
    font-size: 1rem;
    opacity: 0.7;
    flex-shrink: 0;
}
.filter-input {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text-dark);
    width: 100%;
    outline: none;
    font-family: inherit;
}
.filter-input::placeholder { color: #9ca3af; }
.filter-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.filter-divider {
    width: 1px;
    height: 32px;
    background: rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.filter-btn-search {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}
.filter-btn-search:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(91,53,229,0.3);
}

/* Active Filters */
.active-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.active-filters-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
}
.active-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--light-purple);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}
.active-filter-chip a {
    color: var(--primary);
    opacity: 0.6;
    transition: opacity 0.2s;
}
.active-filter-chip a:hover { opacity: 1; }
.clear-all-filters {
    font-size: 0.85rem;
    color: var(--danger);
    font-weight: 600;
    margin-left: auto;
}
.clear-all-filters:hover { text-decoration: underline; }

/* Results Bar */
.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f5;
}
.results-count {
    font-size: 0.95rem;
    color: var(--text-gray);
}
.results-num {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.1rem;
}
.results-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sort-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}
.sort-select {
    padding: 8px 16px;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
}
.sort-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(91,53,229,0.1); }

/* Jobs List Grid */
.jobs-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Job List Card */
.job-list-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid #f0f0f5;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
}
.job-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(91,53,229,0.10);
    border-color: rgba(91,53,229,0.15);
    color: inherit;
}
.job-list-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1rem;
}
.job-list-logo {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: var(--light-purple);
    padding: 4px;
    flex-shrink: 0;
}
.job-list-info { flex: 1; min-width: 0; }
.job-list-info h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-dark);
    line-height: 1.3;
}
.job-list-company {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}
.job-list-actions { flex-shrink: 0; }
.job-list-save {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.job-list-save:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--light-purple);
}

.job-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-gray);
}
.job-list-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.job-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1rem;
}
.job-list-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f5;
}
.job-list-date {
    font-size: 0.82rem;
    color: var(--text-gray);
}
.job-list-view-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s;
}
.job-list-card:hover .job-list-view-btn {
    transform: translateX(4px);
}

/* Jobs Pagination */
.jobs-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}
.jobs-pagination .pagination {
    gap: 6px;
}
.jobs-pagination .page-link {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s;
}
.jobs-pagination .page-link:hover {
    background: var(--light-purple);
    border-color: var(--primary);
    color: var(--primary);
}
.jobs-pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: #fff;
}

/* ==============================
   JOB DETAIL PAGE PREMIUM
   ============================== */
.job-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.job-breadcrumb a {
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.2s;
}
.job-breadcrumb a:hover { color: var(--primary); }
.job-breadcrumb i { font-size: 0.7rem; color: #d1d5db; }
.job-breadcrumb span { color: var(--text-dark); font-weight: 600; }

/* Job Detail Header */
.job-detail-header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid #f0f0f5;
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.job-detail-top {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 1.5rem;
}
.job-detail-logo {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    background: var(--light-purple);
    padding: 4px;
    flex-shrink: 0;
}
.job-detail-title-area { flex: 1; }
.job-detail-title-area h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
}
.job-detail-company {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 12px;
}
.job-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Job Detail Stats */
.job-detail-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f5;
}
.jds-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--soft-bg);
    border-radius: var(--radius-md);
}
.jds-item i {
    color: var(--primary);
    font-size: 1.1rem;
    opacity: 0.8;
}
.jds-item small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 2px;
}
.jds-item strong {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Job Detail Sections */
.job-detail-section {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid #f0f0f5;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.jds-heading {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f5;
}
.jds-heading i { color: var(--primary); }
.jds-body {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
}
.jds-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.skill-chip {
    padding: 8px 18px;
    background: var(--light-purple);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s;
}
.skill-chip:hover {
    background: var(--primary);
    color: #fff;
}

/* Company Section */
.company-section .company-info-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1rem;
}
.company-info-logo {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: var(--light-purple);
    padding: 4px;
}
.company-info-row h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.company-meta {
    font-size: 0.88rem;
    color: var(--text-gray);
    margin-bottom: 4px;
}
.company-website {
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 600;
}
.company-website:hover { text-decoration: underline; }
.company-about {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f5;
}

/* Sidebar Cards */
.job-sidebar-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid #f0f0f5;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.sidebar-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.sidebar-card-title i { color: var(--primary); }

/* Apply Card */
.apply-card-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.btn-apply-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 24px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.35s;
    text-decoration: none;
}
.btn-apply-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(91,53,229,0.3);
    color: #fff;
}
.btn-applied {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 24px;
    background: var(--success);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    opacity: 0.8;
}
.btn-save-job-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}
.btn-save-job-sidebar:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--light-purple);
}
.btn-save-job-sidebar.saved {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--light-purple);
}
.apply-card-divider {
    height: 1px;
    background: #f0f0f5;
    margin: 1.25rem 0;
}

/* Sidebar Detail List */
.sidebar-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f5;
}
.sidebar-detail-list li:last-child { border-bottom: none; }
.sdl-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--light-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.sdl-icon i { font-size: 0.9rem; }
.sidebar-detail-list small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 1px;
}
.sidebar-detail-list strong {
    font-size: 0.88rem;
    color: var(--text-dark);
}

/* Similar Jobs */
.similar-job-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f5;
    transition: all 0.2s;
    text-decoration: none;
}
.similar-job-item:last-child { border-bottom: none; }
.similar-job-item:hover { padding-left: 6px; }
.similar-job-logo {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--light-purple);
    padding: 2px;
    flex-shrink: 0;
}
.similar-job-item h6 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-dark);
}
.similar-job-item p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin: 0;
}

/* Glass Modal */
.glass-modal {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(91,53,229,0.15);
}
.glass-modal .modal-header {
    border-bottom: 1px solid #f0f0f5;
    padding: 1.25rem 1.5rem;
}
.glass-modal .modal-title {
    font-weight: 700;
}
.glass-modal .modal-footer {
    border-top: 1px solid #f0f0f5;
    padding: 1rem 1.5rem;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1199.98px) {
    .jobs-grid-premium { grid-template-columns: repeat(3, 1fr); }
    .jobs-list-grid { grid-template-columns: repeat(2, 1fr); }
    .job-detail-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
    .hero-title { font-size: 2.8rem; }
    .hero-premium { min-height: auto; padding: 120px 0 80px; }
    .min-vh-hero { min-height: auto; }
    .glass-search-inner { flex-direction: column; }
    .glass-divider { display: none; }
    .glass-field { width: 100%; }
    .glass-btn-search { width: 100%; justify-content: center; }
    .jobs-grid-premium { grid-template-columns: repeat(2, 1fr); }
    .jobs-list-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .placements-track { grid-template-columns: repeat(2, 1fr); }
    .dashboard-sidebar { transform: translateX(-100%); transition: transform 0.3s; }
    .dashboard-sidebar.show { transform: translateX(0); }
    .dashboard-content { margin-left: 0; }
    .glass-filter-bar { flex-direction: column; }
    .filter-fields { width: 100%; }
    .filter-field { min-width: 0; }
    .filter-divider { display: none; }
    .filter-btn-search { width: 100%; justify-content: center; }
    .job-detail-top { flex-direction: column; align-items: center; text-align: center; }
    .job-detail-tags { justify-content: center; }
    .hero-exact-title { font-size: 2.8rem; }
    .hero-exact-search { flex-direction: column; border-radius: var(--radius-lg); padding: 16px; gap: 12px; }
    .hes-divider { display: none; }
    .hes-field { width: 100%; }
    .hes-btn { width: 100%; text-align: center; }
    .latest-job-card { width: 360px; }
    .newsletter-exact-title { font-size: 2.2rem; }
    .nef-input-group { flex-direction: column; }
    .nef-btn { width: 100%; text-align: center; }
}
@media (max-width: 767.98px) {
    .hero-title { font-size: 2.2rem; }
    .hero-tags { display: none; }
    .jobs-grid-premium { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .jobs-list-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .section-header-premium h2 { font-size: 1.8rem; }
    .premium-heading { font-size: 1.7rem; }
    .stats-row { gap: 16px; }
    .glass-form-card { padding: 1.5rem; }
    .newsletter-input-group { flex-direction: column; }
    .newsletter-btn { width: 100%; }
    .newsletter-features { gap: 16px; }
    .jobs-hero-title { font-size: 2rem; }
    .job-detail-title-area h1 { font-size: 1.4rem; }
    .job-detail-stats { grid-template-columns: repeat(2, 1fr); }
    .results-bar { flex-direction: column; gap: 12px; align-items: flex-start; }
    .hero-exact-title { font-size: 2.2rem; }
    .hero-exact-student { display: none !important; }
    .latest-job-card { width: 320px; flex-direction: column; }
    .ljc-poster { width: 100%; height: 160px; }
    .newsletter-exact { padding: 50px 0; }
    .newsletter-exact-title { font-size: 1.8rem; }
    .newsletter-exact-features { gap: 16px; }
}
@media (max-width: 575.98px) {
    .hero-title { font-size: 1.9rem; }
    .hero-student-wrap { display: none !important; }
    .hero-premium { padding: 100px 0 60px; }
    .section-header-premium h2 { font-size: 1.6rem; }
    .py-section-premium { padding: 50px 0; }
    .placements-track { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .jobs-hero { padding: 110px 0 30px; }
    .jobs-hero-title { font-size: 1.7rem; }
    .job-detail-header { padding: 1.25rem; }
    .job-detail-section { padding: 1.25rem; }
    .job-detail-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .jds-item { flex-direction: column; text-align: center; gap: 6px; }
}

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f5 25%, #e8e8ef 50%, #f0f0f5 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
