/* ============================================
   中核集团招聘网站 - 样式表
   ============================================ */

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS变量 */
:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --secondary: #3182ce;
    --accent: #d69e2e;
    --accent-light: #ecc94b;
    --text: #2d3748;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --bg: #f7fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   Header & Navigation
   ============================================ */
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

header.scrolled {
    padding: 0;
    background: rgba(26, 54, 93, 0.97);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #234876 50%, var(--primary-light) 100%);
    color: white;
    padding: 8rem 1.5rem 5rem;
    text-align: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
    color: var(--accent-light);
}

.hero-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.85;
    line-height: 1.7;
}

.hero-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.tag {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(214, 158, 46, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 158, 46, 0.5);
    background: var(--accent-light);
}

/* ============================================
   Sections General
   ============================================ */
section {
    padding: 4rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
}

.bg-white {
    background: var(--bg-white);
}

/* ============================================
   About Section
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-item {
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.about-image {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: var(--radius-xl);
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.about-image-overlay {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 2rem;
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.about-image-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.about-sub {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 0.5rem;
}

/* ============================================
   Prospect Section
   ============================================ */
.prospect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.prospect-card {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.prospect-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.prospect-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.prospect-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.prospect-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   Jobs Section
   ============================================ */
.jobs-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    color: var(--text);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.job-card {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.job-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #c53030;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.job-badge-blue {
    background: var(--secondary);
}

.job-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.job-subtitle {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.job-detail-row {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.job-detail-label {
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.job-detail-value {
    color: var(--text);
}

/* Employers */
.employers-section {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.employers-section h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.employers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.employer-item {
    text-align: center;
    padding: 0.75rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.employer-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.employer-desc {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.employers-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   Salary Section
   ============================================ */
.salary-overview {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    color: white;
}

.salary-levels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.salary-level {
    text-align: center;
    padding: 1.25rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.15);
    min-width: 160px;
}

.salary-highlight {
    background: var(--accent);
    border-color: var(--accent-light);
    transform: scale(1.05);
}

.salary-phase {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.salary-amount {
    font-size: 1.75rem;
    font-weight: 800;
}

.salary-amount span {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
}

.salary-period {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.salary-arrow {
    font-size: 1.5rem;
    opacity: 0.6;
}

.salary-note {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.benefit-card h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   Career Section
   ============================================ */
.career-image-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.career-image {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.image-caption {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.75rem;
}

.career-paths {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.career-path {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.career-path h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.career-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}

.career-step {
    background: var(--bg);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border);
    white-space: nowrap;
}

.career-arrow {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}

/* ============================================
   Locations Section
   ============================================ */
.location-image-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.location-image {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 1.5rem;
}

.location-region {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.location-region h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.location-province {
    background: var(--primary);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.location-projects {
    font-size: 0.85rem;
    color: var(--text);
    line-height: 1.5;
}

.locations-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ============================================
   Training Section
   ============================================ */
.training-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.training-img-wrapper {
    text-align: center;
}

.training-img-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.training-img-wrapper img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.training-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.training-info-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.training-info-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.training-info-card h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.training-info-card ul {
    list-style: none;
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.7;
}

.training-info-card li {
    margin-bottom: 0.4rem;
}

.training-info-card li strong {
    color: var(--primary);
}

/* ============================================
   Process Section
   ============================================ */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    min-width: 150px;
    max-width: 180px;
    flex: 1;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.step h3 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    align-self: center;
    padding-top: 1rem;
}

.process-note {
    background: #fffbeb;
    border: 1px solid #fbd38d;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
    text-align: center;
}

.process-note p {
    color: #975a16;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-container {
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    user-select: none;
}

.faq-question:hover {
    background: var(--bg);
}

.faq-q {
    background: var(--accent);
    color: var(--primary);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-toggle {
    margin-left: auto;
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem 3.5rem;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--primary);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    color: var(--text);
    background: var(--bg-white);
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.submit-button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-info h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.1rem;
}

.contact-value {
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.contact-value a {
    color: var(--secondary);
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

.contact-requirements ul {
    list-style: none;
}

.contact-requirements li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.contact-requirements li:last-child {
    border-bottom: none;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--primary);
    color: white;
    padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .prospect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .training-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .locations-grid {
        grid-template-columns: 1fr 1fr;
    }
    .employers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 1rem;
        gap: 0.25rem;
        box-shadow: var(--shadow-lg);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    section {
        padding: 2.5rem 1rem;
    }
    section h2 {
        font-size: 1.5rem;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-image {
        height: 280px;
    }
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    .prospect-grid {
        grid-template-columns: 1fr;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .career-paths {
        grid-template-columns: 1fr;
    }
    .career-steps {
        gap: 0.3rem;
    }
    .career-step {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .training-gallery {
        grid-template-columns: 1fr;
    }
    .training-info-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    .step {
        max-width: 100%;
        width: 100%;
    }
    .step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }
    .employers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .salary-levels {
        flex-direction: column;
    }
    .salary-arrow {
        transform: rotate(90deg);
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    .hero-tags {
        gap: 0.5rem;
    }
    .tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    .employers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* Selection */
::selection {
    background: var(--accent-light);
    color: var(--primary);
}
