/* ============================================
   Custom CSS - All Frontend Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
    --nav-primary: #1e3a5f;
    --nav-accent: #0d9488;
    --nav-accent-hover: #0f766e;
    --nav-text: #0f172a;
    --nav-text-muted: #64748b;
    --primary: #1e3a5f;
    --primary-dark: #0f2744;
    --accent: #0d9488;
    --accent-hover: #0f766e;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-section: #f1f5f9;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.25s ease;
}

/* ============================================
   Header / Navbar
   ============================================ */
.site-navbar {
    background: #ffffff !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    padding: 0.35rem 0;
    transition: box-shadow 0.25s ease;
}
.site-navbar .container-xl { max-width: 1320px; }
.site-navbar .navbar-brand { padding: 0.15rem 0; }
.site-navbar .navbar-brand img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}
@media (min-width: 992px) {
    .site-navbar .navbar-brand img { max-height: 44px; }
}
.site-navbar .navbar-toggler {
    border: 1px solid rgba(15, 58, 95, 0.2);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
}
.site-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.25);
}
.site-navbar .navbar-toggler-icon { width: 1.25rem; height: 1.25rem; }
.site-navbar .nav-link {
    color: var(--nav-text) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.site-navbar .nav-link:hover {
    color: var(--nav-accent) !important;
    background: rgba(13, 148, 136, 0.08);
}
.site-navbar .nav-link.active {
    color: var(--nav-accent) !important;
    background: rgba(13, 148, 136, 0.1);
}
.site-navbar .navbar-nav .nav-item { margin: 0 0.15rem; }
@media (max-width: 991px) {
    .site-navbar .navbar-collapse {
        padding: 1rem 0;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    .site-navbar .nav-link { padding: 0.6rem 0 !important; border-radius: 0; }
    .site-navbar .navbar-nav .nav-item { margin: 0; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
    .site-navbar .navbar-nav .nav-item:last-child { border-bottom: none; }
}
.site-navbar .nav-user-trigger {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
}
.nav-user-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--nav-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-user-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nav-user-initials { font-size: 0.95rem; font-weight: 600; color: #ffffff; }
.nav-user-name { font-weight: 500; }
@media (max-width: 991px) {
    .nav-user-name { display: none; }
    .site-navbar .nav-user-trigger { justify-content: center; }
}
.site-navbar .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    padding: 0.5rem;
    margin-top: 0.5rem;
}
.site-navbar .dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
}
.site-navbar .dropdown-item:hover {
    background: rgba(13, 148, 136, 0.08);
    color: var(--nav-accent);
}
.site-navbar .dropdown-divider { margin: 0.5rem 0; }
.site-navbar .btn-register {
    background: var(--nav-accent);
    border-color: var(--nav-accent);
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.site-navbar .btn-register:hover {
    background: var(--nav-accent-hover);
    border-color: var(--nav-accent-hover);
    color: #ffffff;
    transform: translateY(-1px);
}
.site-navbar .nav-signin { color: var(--nav-text) !important; }
.site-navbar .nav-signin:hover { color: var(--nav-accent) !important; }
@media (max-width: 991px) {
    .site-navbar .d-flex.mt-3.mt-lg-0 {
        margin-top: 1rem !important;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }
    .site-navbar .btn-register { width: 100%; text-align: center; }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-top: auto;
}
.site-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}
.site-footer a:hover { color: #ffffff; }
.footer-main { padding: 2.5rem 0 2rem; }
@media (min-width: 768px) { .footer-main { padding: 3rem 0 2.5rem; } }
.footer-brand { margin-bottom: 1.25rem; }
.footer-brand img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    opacity: 0.95;
}
.footer-section-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { display: inline-block; padding: 0.2rem 0; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item i {
    font-size: 1rem;
    color: #0d9488;
    margin-top: 0.2rem;
    min-width: 18px;
    text-align: center;
}
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: #0d9488; }
.footer-bottom {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom .container-xl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}
@media (min-width: 576px) {
    .footer-bottom .container-xl {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.footer-copyright { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }
.footer-copyright a { color: rgba(255, 255, 255, 0.8); }
.footer-copyright a:hover { color: #0d9488; }

/* ============================================
   Home Page
   ============================================ */
.home-page {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}
.hero-section {
    position: relative;
    margin-top: 56px;
    min-height: 320px;
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
}
@media (min-width: 576px) { .hero-section { min-height: 360px; } }
@media (min-width: 768px) { .hero-section { min-height: 420px; } }
@media (min-width: 992px) { .hero-section { min-height: 480px; } }
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: relative;
    z-index: 1;
    min-height: 320px;
    background: linear-gradient(90deg, rgba(15, 39, 68, 0.95) 0%, rgba(30, 58, 95, 0.85) 45%, rgba(30, 58, 95, 0.4) 70%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}
@media (min-width: 576px) { .hero-overlay { min-height: 360px; } }
@media (min-width: 768px) { .hero-overlay { min-height: 420px; } }
@media (min-width: 992px) { .hero-overlay { min-height: 480px; } }
@media (max-width: 767px) {
    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 39, 68, 0.92) 0%, rgba(15, 39, 68, 0.88) 100%);
    }
}
.hero-content { text-align: left; max-width: 100%; color: #ffffff; }
@media (min-width: 576px) { .hero-content { max-width: 420px; } }
@media (min-width: 768px) { .hero-content { max-width: 460px; } }
@media (min-width: 992px) { .hero-content { max-width: 500px; } }
@media (max-width: 767px) { .hero-content { text-align: center; max-width: 100%; } }
.hero-content .hero-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(13, 148, 136, 0.2);
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
    margin-bottom: 0.35rem;
}
@media (min-width: 576px) {
    .hero-content .hero-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
        margin-bottom: 0.45rem;
    }
}
.hero-content h1 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
}
@media (min-width: 576px) { .hero-content h1 { margin-bottom: 0.45rem; } }
.hero-content p {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    margin-bottom: 1rem;
    line-height: 1.45;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
}
.hero-search { width: 100%; max-width: 480px; margin-bottom: 1rem; }
.hero-search-inner {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.hero-search-inner i {
    padding: 0 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}
.hero-search-inner input {
    flex: 1;
    border: none;
    padding: 0.7rem 0;
    font-size: 0.9rem;
    outline: none;
}
.hero-search-inner input::placeholder { color: #94a3b8; }
.hero-search-inner .btn-hero-search {
    background: var(--accent);
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}
.hero-search-inner .btn-hero-search:hover {
    background: var(--accent-hover);
    color: #ffffff;
}
@media (max-width: 575px) {
    .hero-search-inner { flex-direction: column; align-items: stretch; }
    .hero-search-inner i { display: none; }
    .hero-search-inner input { padding: 0.75rem 1rem; }
    .hero-search-inner .btn-hero-search { padding: 0.65rem 1rem; }
}
@media (max-width: 767px) { .hero-search { margin-left: auto; margin-right: auto; } }
.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 767px) { .hero-cta { justify-content: center; } }
.hero-cta .btn {
    padding: 0.4rem 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 0.8rem;
}
@media (min-width: 576px) { .hero-cta .btn { padding: 0.45rem 1.1rem; font-size: 0.825rem; } }
@media (min-width: 768px) { .hero-cta .btn { padding: 0.5rem 1.25rem; font-size: 0.85rem; } }
.hero-cta .btn-primary { background: var(--accent); border-color: var(--accent); }
.hero-cta .btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
}
.hero-cta .btn-outline-light {
    border-width: 2px;
    background: transparent;
    color: #ffffff;
}
.hero-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-1px);
}
.working-section { padding: 3rem 0; background: var(--bg-section); }
@media (min-width: 768px) { .working-section { padding: 4rem 0; } }
.working-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
}
.working-card h2 {
    font-size: clamp(1.375rem, 2.5vw, 1.625rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    color: var(--primary);
}
.working-card .section-accent {
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 1rem;
}
.working-card p {
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.working-card .btn-light {
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 0.9rem;
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}
.working-card .btn-light:hover {
    background: var(--accent) !important;
    color: var(--white) !important;
    border-color: var(--accent) !important;
}
.jobs-section { padding: 2.5rem 0 4rem; background: var(--bg-section); }
.section-header { margin-bottom: 2rem; }
.section-header-top {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .section-header-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.section-header h3 {
    font-size: clamp(1.375rem, 2.2vw, 1.5rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid var(--accent);
    letter-spacing: -0.01em;
}
.section-header .view-all-btn {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary);
    transition: var(--transition);
}
.section-header .view-all-btn:hover { color: var(--accent); }
.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    padding-left: 1rem;
}
.job-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 576px) { .job-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) {
    .job-cards-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.job-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.job-card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-md);
}
.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.job-company-logo {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
    padding: 6px;
    border: 1px solid var(--border);
}
.job-company-logo img { width: 100%; height: 100%; object-fit: contain; }
.job-type-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--accent);
    background: rgba(13, 148, 136, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}
.job-card-body { flex: 1; margin-bottom: 1rem; }
.job-card-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.35;
    transition: var(--transition);
}
.job-card-body h4:hover { color: var(--primary); }
.job-card-body h4 a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.job-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.job-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.job-meta i { font-size: 0.8rem; color: var(--accent); opacity: 0.9; }
.job-deadline { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.job-deadline i { margin-right: 0.25rem; font-size: 0.75rem; }
.job-card-footer {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.job-card-footer .btn {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
}
.job-card-footer .btn-details {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border);
}
.job-card-footer .btn-details:hover {
    background: var(--border);
    color: var(--text-dark);
}
.job-card-footer .btn-apply {
    background: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
}
.job-card-footer .btn-apply:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
}
.job-card-footer .btn-applied {
    background: rgba(13, 148, 136, 0.15);
    color: var(--accent);
    border: 1px solid rgba(13, 148, 136, 0.3);
    cursor: default;
}
.jobs-section-footer { text-align: center; margin-top: 2.5rem; }
.btn-view-all {
    display: inline-block;
    padding: 0.65rem 1.75rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    transition: var(--transition);
}
.btn-view-all:hover { background: var(--primary); color: var(--white); }
.no-jobs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--text-muted);
    border: 1px dashed var(--border);
}
.no-jobs-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: var(--text-muted);
}
.no-jobs h5 { font-size: 1.125rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.no-jobs p { margin-bottom: 1.25rem; font-size: 0.95rem; }
.no-jobs .btn-apply {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    background: var(--accent);
    color: var(--white);
    border-radius: 6px;
    transition: var(--transition);
}
.no-jobs .btn-apply:hover { background: var(--accent-hover); color: var(--white); }

/* ============================================
   Job Details Page
   ============================================ */
.job-details-page {
    padding-top: 56px;
    min-height: 100vh;
    background: #f1f5f9;
}
.job-details-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    padding: 1.5rem 0;
}
.job-details-header .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}
.job-details-header .breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.job-details-header .breadcrumb-nav a:hover { color: #ffffff; }
.job-details-header .breadcrumb-nav span { color: rgba(255, 255, 255, 0.5); }
.job-details-main { padding: 2rem 0 3rem; }
.job-header-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 768px) {
    .job-header-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2rem;
    }
}
.job-header-left { display: flex; align-items: flex-start; gap: 1.25rem; }
.job-header-logo {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
    padding: 8px;
    border: 1px solid #e2e8f0;
}
.job-header-logo img { width: 100%; height: 100%; object-fit: contain; }
.job-header-info h1 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}
.job-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}
.job-header-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.job-header-meta i { color: #0d9488; font-size: 0.9rem; }
.job-header-right { flex-shrink: 0; }
@media (max-width: 767px) {
    .job-header-right {
        padding-top: 0.5rem;
        border-top: 1px solid #e2e8f0;
    }
}
.btn-apply-job {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    background: #0d9488;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    transition: all 0.25s ease;
}
.btn-apply-job:hover { background: #0f766e; color: #ffffff; }
.btn-apply-job:disabled { background: #94a3b8; cursor: not-allowed; }
.job-description-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.job-description-card .section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0d9488;
    display: inline-block;
}
.job-description-card .section-block { margin-bottom: 2rem; }
.job-description-card .section-block:last-child { margin-bottom: 0; }
.job-description-card .section-block h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.75rem;
}
.job-description-card .section-block p,
.job-description-card .section-block ul,
.job-description-card .section-block div {
    font-size: 0.95rem;
    font-weight: 400;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}
.job-description-card .section-block div p { margin-bottom: 0.75rem; }
.job-description-card .section-block div p:last-child { margin-bottom: 0; }
.job-description-card .section-block ul { padding-left: 1.25rem; }
.job-description-card .section-block ul li { margin-bottom: 0.5rem; }
.job-description-card .section-block ul li:last-child { margin-bottom: 0; }
.job-summary-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    position: sticky;
    top: 80px;
}
.job-summary-card .summary-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    padding: 1.25rem 1.5rem;
}
.job-summary-card .summary-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}
.job-summary-card .summary-content { padding: 1.5rem; }
.job-summary-card .summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.job-summary-card .summary-item:last-child { margin-bottom: 0; }
.job-summary-card .summary-item.summary-apply {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0.5rem;
}
.job-summary-card .summary-item .label { color: #64748b; font-weight: 500; }
.job-summary-card .summary-item .value {
    color: #0f172a;
    font-weight: 500;
    text-align: right;
}
.job-summary-card .summary-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1rem 0;
}
.job-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}
.job-back-link:hover { color: #0d9488; }

/* ============================================
   All Jobs Page
   ============================================ */
.all-jobs-page {
    padding-top: 56px;
    min-height: 100vh;
}
.all-jobs-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    padding: 1.75rem 0 2rem;
    margin-bottom: 0;
}
.all-jobs-header .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}
.all-jobs-header .breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s ease;
}
.all-jobs-header .breadcrumb-nav a:hover { color: #ffffff; }
.all-jobs-header .breadcrumb-nav .breadcrumb-sep {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}
.all-jobs-header .breadcrumb-nav .breadcrumb-current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
.all-jobs-header h1 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.35rem;
    letter-spacing: -0.02em;
}
.all-jobs-header .header-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}
.all-jobs-section { padding: 2rem 0 3rem; background: #f1f5f9; }
.all-jobs-section .section-header { margin-bottom: 1.5rem; }
.section-header-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
    .section-header-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.all-jobs-section .section-header h2 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid #0d9488;
}
.jobs-search-form { max-width: 320px; }
.jobs-search-inner {
    display: flex;
    gap: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}
.jobs-search-inner input {
    flex: 1;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    outline: none;
}
.jobs-search-inner .btn-search {
    background: #0d9488;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.25s ease;
}
.jobs-search-inner .btn-search:hover { background: #0f766e; color: #ffffff; }
.all-jobs-section .results-count {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 0.5rem;
    padding-left: 1rem;
}
.all-jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 576px) { .all-jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) {
    .all-jobs-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.all-jobs-page .job-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
}
.all-jobs-page .job-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.all-jobs-page .job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.all-jobs-page .job-company-logo {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    padding: 6px;
    border: 1px solid #e2e8f0;
}
.all-jobs-page .job-company-logo img { width: 100%; height: 100%; object-fit: contain; }
.all-jobs-page .job-type-badge {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}
.all-jobs-page .job-card-body { flex: 1; margin-bottom: 1rem; }
.all-jobs-page .job-card-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    transition: all 0.25s ease;
}
.all-jobs-page .job-card-body h4:hover { color: #1e3a5f; }
.all-jobs-page .job-card-body h4 a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.all-jobs-page .job-meta { font-size: 0.85rem; color: #64748b; margin-bottom: 0.5rem; }
.all-jobs-page .job-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.all-jobs-page .job-meta i { font-size: 0.8rem; color: #0d9488; opacity: 0.9; }
.all-jobs-page .job-deadline { font-size: 0.8rem; color: #64748b; margin: 0; }
.all-jobs-page .job-deadline i { margin-right: 0.25rem; font-size: 0.75rem; }
.all-jobs-page .job-card-footer {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}
.all-jobs-page .job-card-footer .btn {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    transition: all 0.25s ease;
}
.all-jobs-page .job-card-footer .btn-details {
    background: #f8fafc;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}
.all-jobs-page .job-card-footer .btn-details:hover {
    background: #e2e8f0;
    color: #0f172a;
}
.all-jobs-page .job-card-footer .btn-apply {
    background: #0d9488;
    color: #ffffff;
    border: 1px solid #0d9488;
}
.all-jobs-page .job-card-footer .btn-apply:hover {
    background: #0f766e;
    border-color: #0f766e;
    color: #ffffff;
}
.all-jobs-page .job-card-footer .btn-applied {
    background: rgba(13, 148, 136, 0.15);
    color: #0d9488;
    border: 1px solid rgba(13, 148, 136, 0.3);
    cursor: default;
}
.all-jobs-page .no-jobs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 8px;
    color: #64748b;
    border: 1px dashed #e2e8f0;
}
.all-jobs-page .no-jobs-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}
.all-jobs-page .no-jobs h5 { font-size: 1.125rem; color: #0f172a; margin-bottom: 0.5rem; }
.all-jobs-page .no-jobs p { margin-bottom: 1.25rem; font-size: 0.95rem; }
.all-jobs-page .no-jobs .btn-apply {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    background: #0d9488;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.all-jobs-page .no-jobs .btn-apply:hover { background: #0f766e; color: #ffffff; }
.all-jobs-pagination { margin-top: 2.5rem; display: flex; justify-content: center; }
.all-jobs-pagination .pagination { gap: 0.35rem; }
.all-jobs-pagination .page-link {
    color: #1e3a5f;
    border: 1px solid #e2e8f0;
    border-radius: 6px !important;
    padding: 0.5rem 0.9rem;
    font-weight: 500;
}
.all-jobs-pagination .page-link:hover {
    background: rgba(13, 148, 136, 0.08);
    border-color: #0d9488;
    color: #0d9488;
}
.all-jobs-pagination .page-item.active .page-link {
    background: #0d9488;
    border-color: #0d9488;
    color: #ffffff;
}

/* ============================================
   Profile Page
   ============================================ */
.profile-page {
    padding-top: 56px;
    min-height: 100vh;
    background: #f1f5f9;
}
.profile-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    padding: 1.75rem 0;
}
.profile-header h1 { font-size: 1.5rem; font-weight: 600; color: #ffffff; margin: 0; }
.profile-header .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
.profile-header .breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.profile-header .breadcrumb-nav a:hover { color: #ffffff; }
.profile-header .breadcrumb-nav span { color: rgba(255, 255, 255, 0.5); }
.profile-main { padding: 2rem 0 3rem; }
.profile-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    padding: 0.25rem;
    background: #ffffff;
    border-radius: 12px;
    width: fit-content;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.profile-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.profile-tab:hover { color: #0f172a; background: #f1f5f9; }
.profile-tab.active { color: #ffffff; background: #0d9488; }
.profile-tab i { margin-right: 0.5rem; opacity: 0.9; }
.profile-tab-content { display: none; }
.profile-tab-content.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.profile-panel {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.profile-form .form-group { margin-bottom: 1.25rem; }
.profile-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.profile-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #0f172a;
    transition: all 0.2s ease;
}
.profile-form .form-control::placeholder { color: #94a3b8; }
.profile-form .form-control:focus {
    border-color: #0d9488;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.profile-form textarea.form-control { min-height: 100px; resize: vertical; }
.profile-form select.form-control { appearance: auto; cursor: pointer; }
.profile-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 768px) { .profile-form-row { grid-template-columns: 1fr; } }
.profile-dynamic-section {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
}
.profile-edu-row,
.profile-dynamic-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr auto;
    gap: 1rem;
    align-items: end;
}
.profile-dynamic-row { grid-template-columns: 1fr 1fr 1fr auto; }
@media (max-width: 992px) {
    .profile-edu-row,
    .profile-dynamic-row { grid-template-columns: 1fr 1fr auto; }
}
@media (max-width: 576px) {
    .profile-edu-row,
    .profile-dynamic-row { grid-template-columns: 1fr; }
}
.profile-edu-row .form-group,
.profile-dynamic-row .form-group { margin-bottom: 0; }
.btn-remove {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #dc2626;
    border: 1px solid #fecaca;
    background: #fef2f2;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
}
.btn-remove:hover { background: #fee2e2; }
.profile-form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}
.btn-add-row {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
}
.btn-add-row:hover { background: #e2e8f0; color: #0f172a; }
.btn-update {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    background: #0d9488;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.btn-update:hover { background: #0f766e; }

/* ============================================
   Auth Pages (Login, Register, Reset)
   ============================================ */
.auth-page {
    padding-top: 56px;
    min-height: 100vh;
    background: #f1f5f9;
}
.auth-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    padding: 1.75rem 0;
}
.auth-header h1 { font-size: 1.5rem; font-weight: 600; color: #ffffff; margin: 0; }
.auth-header .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
.auth-header .breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.auth-header .breadcrumb-nav a:hover { color: #ffffff; }
.auth-header .breadcrumb-nav span { color: rgba(255, 255, 255, 0.5); }
.auth-main { padding: 2rem 0 3rem; }
.auth-card {
    max-width: 440px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.auth-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 1.5rem;
    text-align: center;
}
.auth-form .form-group { margin-bottom: 1.25rem; }
.auth-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.auth-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.auth-form .form-control:focus {
    border-color: #0d9488;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.auth-form .form-control.is-invalid { border-color: #dc2626; }
.auth-form .invalid-feedback {
    display: block;
    font-size: 0.85rem;
    color: #dc2626;
    margin-top: 0.35rem;
}
.auth-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #dc2626;
}
.auth-form .btn-submit {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: #0d9488;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.auth-form .btn-submit:hover { background: #0f766e; color: #ffffff; }
.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    color: #64748b;
}
.auth-link {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    color: #1e3a5f;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.auth-link:hover {
    background: #f1f5f9;
    color: #0d9488;
    border-color: #0d9488;
}
.auth-forgot {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: none;
}
.auth-forgot:hover { color: #0d9488; }
.auth-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 576px) { .auth-form-row { grid-template-columns: 1fr; } }
.auth-card.auth-card-wide { max-width: 520px; }

/* ============================================
   Job Apply Page
   ============================================ */
.job-apply-page {
    padding-top: 56px;
    min-height: 100vh;
    background: #f1f5f9;
}
.job-apply-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    padding: 1.5rem 0;
}
.job-apply-header .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}
.job-apply-header .breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.job-apply-header .breadcrumb-nav a:hover { color: #ffffff; }
.job-apply-header .breadcrumb-nav span { color: rgba(255, 255, 255, 0.5); }
.job-apply-main { padding: 2rem 0 3rem; }
.job-apply-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}
.job-apply-back:hover { color: #0d9488; }
.job-apply-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #0d9488;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.job-apply-info:hover {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    border-left-color: #1e3a5f;
}
@media (min-width: 768px) {
    .job-apply-info {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.job-apply-info-left { display: flex; align-items: center; gap: 1.25rem; }
.job-apply-info-logo {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
    padding: 8px;
    border: 1px solid #e2e8f0;
}
.job-apply-info-logo img { width: 100%; height: 100%; object-fit: contain; }
.job-apply-info-content { flex: 1; }
.job-apply-info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #0d9488;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.job-apply-info-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.35;
}
.job-apply-info-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}
.job-apply-info-meta span:first-child i {
    color: #0d9488;
    margin-right: 0.35rem;
}
.job-apply-info-type {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: #f0fdfa;
    color: #0d9488;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}
.job-apply-info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0d9488;
    white-space: nowrap;
}
.job-apply-info:hover .job-apply-info-link { color: #1e3a5f; }
.job-apply-info-link i { font-size: 0.75rem; transition: transform 0.2s ease; }
.job-apply-info:hover .job-apply-info-link i { transform: translateX(3px); }
.job-apply-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.job-apply-form-card .form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #0d9488;
}
.job-apply-form-card .form-group { margin-bottom: 1.25rem; }
.job-apply-form-card label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.job-apply-form-card .form-control {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: border-color 0.2s ease;
}
.job-apply-form-card .form-control:focus {
    border-color: #0d9488;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}
.job-apply-form-card textarea.form-control { min-height: 100px; resize: vertical; }
.job-apply-form-card .form-check-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.job-apply-form-card .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.job-apply-form-card .form-check-input {
    width: 1.1rem;
    height: 1.1rem;
    accent-color: #0d9488;
}
.job-apply-form-card .form-check-label { margin: 0; font-weight: 400; }
.job-apply-form-card .step-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1.5rem 0;
}
.job-apply-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}
.job-apply-form-actions .btn {
    padding: 0.65rem 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.25s ease;
}
.btn-prev {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}
.btn-prev:hover { background: #e2e8f0; color: #0f172a; }
.btn-submit {
    background: #0d9488;
    color: #ffffff;
    border: none;
}
.btn-submit:hover { background: #0f766e; color: #ffffff; }
.btn-next {
    background: #1e3a5f;
    color: #ffffff;
    border: none;
}
.btn-next:hover { background: #0f2744; color: #ffffff; }
.job-apply-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #dc2626;
    font-size: 0.9rem;
}
.job-apply-form-card .section-label {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 1.5rem 0 1rem;
}
.job-apply-form-card .section-label:first-child { margin-top: 0; }
.job-apply-file-hint {
    font-size: 0.85rem;
    color: #64748b;
    margin: -0.5rem 0 1rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-page {
    padding-top: 56px;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.contact-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    padding: 1.75rem 0;
}
.contact-header h1 { font-size: 1.5rem; font-weight: 600; color: #ffffff; margin: 0; }
.contact-header .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
.contact-header .breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.contact-header .breadcrumb-nav a:hover { color: #ffffff; }
.contact-header .breadcrumb-nav span { color: rgba(255, 255, 255, 0.5); }
.contact-main { padding: 2.5rem 0 4rem; }
.contact-form-wrapper { max-width: 560px; margin: 0 auto; }
.contact-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0d9488 0%, #1e3a5f 100%);
}
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 576px) { .contact-form-row { grid-template-columns: 1fr; } }
.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.contact-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s ease;
}
.contact-form .form-control:hover { border-color: #cbd5e1; }
.contact-form .form-control:focus {
    border-color: #0d9488;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.12);
}
.contact-form .form-control::placeholder { color: #94a3b8; }
.contact-form textarea.form-control { min-height: 160px; resize: vertical; }
.form-error {
    display: block;
    font-size: 0.85rem;
    color: #dc2626;
    margin-top: 0.35rem;
}
.contact-form-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}
.contact-form .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}
.contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
}
.contact-form .btn-submit:active { transform: translateY(0); }

/* ============================================
   Dashboard / My Applications
   ============================================ */
.dashboard-page {
    padding-top: 56px;
    min-height: 100vh;
    background: #f1f5f9;
}
.dashboard-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    padding: 1.75rem 0;
}
.dashboard-header h1 { font-size: 1.5rem; font-weight: 600; color: #ffffff; margin: 0; }
.dashboard-header .breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
.dashboard-header .breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}
.dashboard-header .breadcrumb-nav a:hover { color: #ffffff; }
.dashboard-header .breadcrumb-nav span { color: rgba(255, 255, 255, 0.5); }
.dashboard-main { padding: 2rem 0 3rem; }
.dashboard-welcome {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.dashboard-welcome h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.25rem;
}
.dashboard-welcome p { font-size: 0.9rem; color: #64748b; margin: 0; }
.dashboard-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 1.25rem;
    padding-left: 1rem;
    border-left: 3px solid #0d9488;
}
.application-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.2s ease;
}
.application-card:hover { box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08); }
@media (min-width: 768px) {
    .application-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.application-card-left { display: flex; align-items: center; gap: 1rem; }
.application-card-logo {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
    padding: 8px;
    border: 1px solid #e2e8f0;
}
.application-card-logo img { width: 100%; height: 100%; object-fit: contain; }
.application-card-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.35;
}
.application-card-content h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.application-card-content h4 a:hover { color: #0d9488; }
.application-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}
.application-card-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.application-card-meta i { color: #0d9488; font-size: 0.8rem; }
.application-card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
@media (min-width: 768px) {
    .application-card-right {
        align-items: flex-end;
        text-align: right;
    }
}
.application-date { font-size: 0.85rem; color: #64748b; }
.application-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
}
.application-status-pending { background: #fef3c7; color: #b45309; }
.btn-view-job {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    background: #0d9488;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-view-job:hover { background: #0f766e; color: #ffffff; }
.dashboard-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px dashed #e2e8f0;
}
.dashboard-empty-icon {
    font-size: 3rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}
.dashboard-empty h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.5rem;
}
.dashboard-empty p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0 0 1.5rem;
}
.dashboard-empty .btn-browse {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    background: #1e3a5f;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.dashboard-empty .btn-browse:hover { background: #0d9488; color: #ffffff; }
