/* UniFi Nerds Career Portal - Clean & Responsive */

:root {
    --primary: #003366;
    --primary-dark: #121C27;
    --primary-light: #004488;
    --accent: #49566a;
    --accent-hover: #3a4555;
    --accent-light: #5d6b80;
    --text-primary: #4B535D;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8fafc;
    --bg-white: #FFFFFF;
    --border-light: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.2s ease;
    --radius: 12px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--primary-light);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== HEADER ==================== */
.header {
    background: var(--primary-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo img {
    height: 40px;
}

.logo-text {
    font-family: 'Roboto Slab', serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

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

.nav a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: #fff;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-light);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* ==================== HERO ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero .accent-text {
    background: linear-gradient(90deg, #8899aa, #aabbcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 12px;
    color: var(--primary);
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-light);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* 4-column features grid */
.features-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Company Highlights Banner */
.company-highlights {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid var(--border-light);
}

.highlight-banner {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.highlight-item-large {
    text-align: center;
    padding: 20px 30px;
}

.highlight-number {
    display: block;
    font-size: clamp(42px, 6vw, 56px);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.highlight-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .features-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid-4 {
        grid-template-columns: 1fr;
    }

    .highlight-banner {
        gap: 30px;
    }

    .highlight-item-large {
        padding: 15px 20px;
    }

    .highlight-number {
        font-size: 36px;
    }
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 13px;
    color: var(--text-primary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== CAREERS SECTION ==================== */
.careers-section {
    padding: 80px 0;
    background: #fff;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.career-level {
    background: var(--bg-light);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: var(--transition);
}

.career-level:hover {
    border-color: var(--primary);
}

.career-level.featured {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
}

.career-level.featured h3,
.career-level.featured p,
.career-level.featured li {
    color: #fff;
}

.career-level.featured .level-badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.level-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.career-level h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.career-level > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.career-level ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.career-level li {
    font-size: 14px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-primary);
}

.career-level li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.career-level.featured li::before {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 900px) {
    .careers-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== BENEFITS SECTION ==================== */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 16px;
    color: var(--primary);
}

.benefits-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.benefit-item svg {
    width: 24px;
    height: 24px;
    fill: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.benefit-item span {
    font-size: 13px;
    color: var(--text-light);
}

.benefits-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    fill: rgba(255,255,255,0.3);
    margin-bottom: 16px;
}

.image-placeholder span {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .benefits-content {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .benefits-image {
        order: -1;
    }

    .image-placeholder {
        height: 250px;
    }
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
    padding: 80px 0;
    background: #fff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* ==================== JOBS SECTION ==================== */
.jobs-section {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Location Selector */
.location-selector {
    max-width: 600px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.selector-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-light);
}

.selector-tab {
    flex: 1;
    padding: 16px 24px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.selector-tab:hover {
    color: var(--primary);
    background: var(--bg-light);
}

.selector-tab.active {
    color: var(--primary);
    background: #fff;
}

.selector-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}

.selector-content {
    padding: 24px;
}

.selector-panel {
    display: none;
}

.selector-panel.active {
    display: block;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 16px 48px 16px 20px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
    appearance: none;
    transition: var(--transition);
}

.select-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    fill: var(--text-light);
    pointer-events: none;
}

/* Location Prompt */
.location-prompt {
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin: 0 auto;
}

.prompt-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.prompt-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--accent);
}

.location-prompt h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.location-prompt p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.location-highlights {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.highlight-item {
    color: var(--text-light);
    font-size: 14px;
}

.highlight-item strong {
    display: block;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 4px;
}

/* Jobs Results */
.jobs-results {
    max-width: 800px;
    margin: 0 auto;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.results-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: var(--primary);
}

.results-header h3 svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}

.results-count {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.job-card-content {
    flex: 1;
    min-width: 0;
}

.job-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.job-type-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.job-type-badge.full-time {
    background: #dbeafe;
    color: #1e40af;
}

.job-type-badge.contract {
    background: #f3e8ff;
    color: #7c3aed;
}

.job-department {
    font-size: 13px;
    color: var(--text-light);
}

.job-title {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.job-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
}

.job-location svg {
    width: 16px;
    height: 16px;
    fill: var(--accent);
}

.job-card-action {
    flex-shrink: 0;
}

.results-footer {
    text-align: center;
    margin-top: 32px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin: 0 auto;
}

.no-results svg {
    width: 60px;
    height: 60px;
    fill: var(--border-light);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(26px, 4vw, 32px);
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 36px;
}

.footer-logo span {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-links h4 {
    font-size: 14px;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ==================== JOB DETAIL PAGE ==================== */
.job-detail {
    padding: 40px 0 80px;
    background: var(--bg-light);
}

.job-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

.job-content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.job-content h1 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.job-content .job-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.job-content .job-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-light);
}

.job-content .job-meta span svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
    flex-shrink: 0;
}

.job-content h2 {
    font-size: 20px;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.job-content p {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.job-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.job-content li {
    margin-bottom: 8px;
}

.job-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 17px;
    margin-bottom: 20px;
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.sidebar-info-item svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
    flex-shrink: 0;
}

/* ==================== FORMS ==================== */
.apply-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-container h2 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 8px;
}

.form-container .subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group .required {
    color: #dc2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

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

.file-upload {
    border: 2px dashed var(--border-light);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.file-upload:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.file-upload svg {
    width: 40px;
    height: 40px;
    fill: var(--text-light);
    margin-bottom: 12px;
}

.file-upload p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.file-upload .file-types {
    font-size: 12px;
    color: var(--text-light);
}

.file-upload input {
    display: none;
}

.form-submit {
    text-align: center;
    margin-top: 32px;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 15px;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* ==================== STATUS BADGES ==================== */
.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-new { background: #dbeafe; color: #1e40af; }
.status-reviewing { background: #fef3c7; color: #92400e; }
.status-interviewed { background: #e0e7ff; color: #3730a3; }
.status-offered { background: #fae8ff; color: #86198f; }
.status-hired { background: #dcfce7; color: #166534; }
.status-rejected { background: #fee2e2; color: #991b1b; }

/* ==================== ADMIN STYLES ==================== */
.admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--primary-dark);
    padding: 24px 0;
}

.admin-logo {
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
}

.admin-logo a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.admin-nav {
    list-style: none;
}

.admin-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.admin-nav li a:hover,
.admin-nav li a.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.admin-nav li a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.admin-main {
    background: var(--bg-light);
    padding: 32px;
}

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

.admin-header h1 {
    font-size: 26px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.stat-card h3 {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.stat-card .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-card .stat-change {
    font-size: 13px;
    color: var(--accent);
    margin-top: 6px;
}

.admin-table-container {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 20px;
    text-align: left;
}

.admin-table th {
    background: var(--bg-light);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.admin-table tr {
    border-bottom: 1px solid var(--border-light);
}

.admin-table tr:last-child {
    border-bottom: none;
}

.admin-table tr:hover {
    background: var(--bg-light);
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.admin-actions a {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.admin-actions .view { background: var(--bg-light); color: var(--primary); }
.admin-actions .edit { background: #dbeafe; color: #1e40af; }
.admin-actions .delete { background: #fee2e2; color: #991b1b; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .job-detail-grid {
        grid-template-columns: 1fr;
    }

    .job-sidebar {
        position: static;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-inner {
        height: 60px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 16px;
        gap: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .about-section,
    .jobs-section {
        padding: 60px 0;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .job-card-action {
        width: 100%;
    }

    .job-card-action .btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .form-container {
        padding: 28px 20px;
    }

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

    .location-highlights {
        flex-direction: column;
        gap: 16px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
