@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --primary-light: #6366f1;
    --primary-glow: rgba(79, 70, 229, 0.15);
    --secondary: #0f172a;
    --secondary-hover: #1e293b;
    --accent: #06b6d4;
    --accent-bg: #ecfeff;
    --accent-text: #0891b2;
    --violet: #7c3aed;
    --dark: #0f172a;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    --gradient-accent: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
    --gradient-btn: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    --gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 6px 18px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 16px 32px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
    --shadow-premium: 0 20px 35px -10px rgba(79, 70, 229, 0.16), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 0 25px rgba(79, 70, 229, 0.35);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
}

body {
    background-color: #f8fafc;
    color: var(--gray-700);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ---- NAVBAR ---- */
.gradient-bg {
    background: var(--dark);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 1240px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.navbar-brand img {
    max-height: 48px;
    width: auto;
}

.navbar-brand span {
    color: var(--gray-900);
    font-size: 1.45rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.navbar-nav a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    font-size: 0.92rem;
}

.navbar-nav a:hover {
    color: var(--primary);
    background: rgba(79, 70, 229, 0.08);
}

.navbar-nav a.active {
    color: var(--white) !important;
    background: var(--gradient-btn) !important;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.menu-toggle:hover {
    color: var(--primary);
    background: var(--gray-100);
}

/* ---- HERO SECTION ---- */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 110px 0 120px;
    color: var(--white);
    text-align: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, rgba(79, 70, 229, 0.1) 40%, rgba(15, 23, 42, 0) 70%);
    pointer-events: none;
    border-radius: 50%;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background: #f8fafc;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #a5b4fc;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-section h1 {
    font-size: 3.4rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1.2px;
    font-weight: 800;
}

.hero-section h1 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.2rem;
    color: rgba(226, 232, 240, 0.85);
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ---- PAGE HEADER ---- */
.page-header {
    background: var(--gradient-hero);
    padding: 70px 0 80px;
    color: var(--white);
    text-align: center;
    position: relative;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 30px;
    background: #f8fafc;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.page-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.page-header p {
    color: rgba(226, 232, 240, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

/* ---- SECTIONS ---- */
.content-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* ---- NEW HORIZONTAL JOB LISTING CARDS ---- */
.listings-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}

.job-listing-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.job-listing-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s;
}

.job-listing-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(79, 70, 229, 0.25);
}

.job-listing-item:hover::before {
    opacity: 1;
}

.listing-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(79, 70, 229, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    transition: all 0.3s;
}

.job-listing-item:hover .listing-avatar {
    background: var(--gradient-btn);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 6px 16px var(--primary-glow);
}

.listing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.listing-top-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.listing-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin: 0;
}

.badge-location {
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.listing-meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.88rem;
    color: var(--gray-600);
    flex-wrap: wrap;
}

.listing-meta-row .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.salary-chip {
    background: #ecfdf5;
    color: #047857;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    border: 1px solid #a7f3d0;
}

.listing-desc {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.btn-icon-share {
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-apply-now {
    padding: 12px 24px !important;
    border-radius: var(--radius-md);
    margin: 0 !important;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.btn-primary {
    background: var(--gradient-btn);
    color: var(--white) !important;
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
    color: var(--white) !important;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--primary-glow);
    transform: translateY(-2px);
}

.btn-apply {
    background: var(--gradient-btn);
    border: none;
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    font-weight: 700;
    font-size: 0.95rem;
}

.btn-apply:hover {
    background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
    color: var(--white);
    box-shadow: 0 6px 16px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-apply.applied {
    background-color: #ecfdf5 !important;
    color: #047857 !important;
    border: 1px solid #a7f3d0 !important;
    border-radius: var(--radius-md);
    cursor: default;
    transform: none !important;
    box-shadow: none !important;
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.btn-light {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-light:hover {
    background: var(--gray-200);
}

/* ---- FORM CONTROLS ---- */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: 0.1px;
}

.form-control, .form-select {
    padding: 13px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    width: 100%;
    outline: none;
    transition: all 0.2s;
    background: var(--white);
    color: var(--dark);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* ---- LOADER ---- */
.loader {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-500);
    font-style: italic;
    grid-column: 1/-1;
}

/* ---- PAGINATION ---- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    grid-column: 1/-1;
}

.pagination button {
    padding: 11px 20px;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s;
    color: var(--gray-700);
}

.pagination button:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ---- MODAL OVERLAY ---- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 95%;
    max-width: 760px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
    position: relative;
    transform: translateY(24px) scale(0.96);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-header h5 {
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.modal-job-title {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--dark);
    line-height: 1.3;
}

.modal-chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-200);
}

.meta-chip {
    background: rgba(79, 70, 229, 0.06);
    color: var(--gray-800);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(79, 70, 229, 0.12);
}

.modal-job-desc {
    font-size: 1.02rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 30px;
}

.modal-job-desc p {
    margin-bottom: 14px;
}

.modal-job-desc ul, .modal-job-desc ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.modal-job-desc li {
    margin-bottom: 6px;
}

.modal-action-bar {
    position: sticky;
    bottom: -30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    margin: 30px -30px -30px -30px;
    padding: 18px 30px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    z-index: 10;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    box-shadow: 0 -6px 20px rgba(15, 23, 42, 0.05);
    flex-wrap: wrap;
}

.apply-info-banner {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border: 1px solid rgba(79, 70, 229, 0.2);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apply-info-banner .title {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.apply-info-banner .name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
}

/* ---- FOOTER ---- */
.footer {
    background: var(--dark);
    color: rgba(226, 232, 240, 0.7);
    padding: 80px 0 35px;
    font-size: 0.92rem;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1.6fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
    color: var(--white);
}

.footer-col p,
.footer-col li,
.footer-col a {
    color: rgba(226, 232, 240, 0.75);
    text-decoration: none;
    line-height: 2;
    transition: color 0.2s;
}

.footer-col ul {
    list-style: none;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col .footer-logo {
    max-height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(226, 232, 240, 0.5);
    font-size: 0.88rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    transition: all 0.25s;
    background: rgba(255, 255, 255, 0.08);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px var(--primary-glow);
}

/* ---- CANDIDATE DASHBOARD ---- */
.dashboard-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    margin-top: 40px;
}

.dashboard-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.dashboard-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.history-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.history-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
}

.history-card:hover {
    border-color: rgba(79, 70, 229, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.history-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.history-job-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.history-job-meta {
    font-size: 0.85rem;
    color: var(--gray-500);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.status-badge {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: capitalize;
}

.status-badge.verified {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.status-badge.pending {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
}

.status-badge.rejected {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fca5a5;
}

.status-badge.default {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

/* ---- LOGIN CARD ---- */
.login-container {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.login-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    padding: 48px 40px;
    max-width: 460px;
    width: 100%;
    border: 1px solid var(--gray-200);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-header i {
    font-size: 3.2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
}

.login-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.login-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

/* ---- ABOUT PAGE ---- */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 1.05rem;
}

/* ---- CONTACT PAGE ---- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
}

.contact-card {
    border-left: 4px solid var(--primary);
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
    border-top: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.contact-card:hover {
    transform: translateX(6px);
    border-left-color: var(--violet);
    box-shadow: var(--shadow-md);
}

/* ---- RESPONSIVE MEDIA QUERIES ---- */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.6rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .about-wrapper, .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 868px) {
    .job-listing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }
    .listing-actions {
        width: 100%;
    }
    .btn-apply-now {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--gray-200);
        gap: 6px;
    }
    .navbar-nav.active {
        display: flex;
    }
    .navbar-nav a {
        width: 100%;
        padding: 12px 18px;
    }
    .hero-section {
        padding: 70px 0 80px;
    }
    .hero-section h1 {
        font-size: 2.1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hide-mobile {
        display: none;
    }
}
