/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --danger: #ef4444;
    --dark: #1f2937;
    --light: #f8fafc;
    --gray: #6b7280;
    --success: #10b981;
    --white: #ffffff;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== BASE STYLES ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.logo span {
    color: var(--secondary);
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-img {
        width: 35px;
        height: 35px;
    }

    .logo-img.rectangular {
        width: 100px;
        height: 35px;
    }

    .logo {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 30px;
        height: 30px;
    }

    .logo-img.rectangular {
        width: 90px;
        height: 30px;
    }

    .logo {
        font-size: 1.4rem;
        gap: 0.25rem;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 0.5rem 0;
    top: 100%;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background: #f1f5f9;
    color: var(--primary);
}

.cta-button {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.hero-stats .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero-stats .label {
    font-size: 0.875rem;
    opacity: 0.9;
    color: var(--white);
}

/* Trusted By Section */
.trusted-by {
    background: var(--light);
    padding: 3rem 0;
    text-align: center;
}

.trusted-by p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.companies {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.companies span {
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 8px;
    font-weight: 500;
    color: var(--dark);
    box-shadow: var(--shadow);
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
}

.feature-list li i {
    color: var(--success);
}

/* ===== ENHANCED HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(37, 99, 235, 0.02)" points="0,1000 1000,0 1000,1000"/></svg>');
}

.how-it-works .section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.how-it-works .section-title h2 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works .section-title p {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Steps Grid */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

/* Connecting Line Animation */
.steps::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary) 20%,
        var(--primary) 80%,
        transparent 100%);
    z-index: 0;
    opacity: 0.3;
}

/* Enhanced Step Cards */
.step {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.05),
        0 5px 10px rgba(0, 0, 0, 0.02);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    z-index: 1;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent);
    transition: left 0.6s ease;
}

.step:hover::before {
    left: 100%;
}

.step:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(37, 99, 235, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.step:nth-child(1):hover {
    border-left: 4px solid var(--primary);
}

.step:nth-child(2):hover {
    border-left: 4px solid var(--success);
}

.step:nth-child(3):hover {
    border-left: 4px solid var(--secondary);
}

.step:nth-child(4):hover {
    border-left: 4px solid #8b5cf6;
}

/* Enhanced Step Numbers */
.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow:
        0 10px 20px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 15px 30px rgba(37, 99, 235, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

/* Step-specific number colors */
.step:nth-child(1) .step-number {
    background: linear-gradient(135deg, var(--primary), #3b82f6);
}

.step:nth-child(2) .step-number {
    background: linear-gradient(135deg, var(--success), #34d399);
}

.step:nth-child(3) .step-number {
    background: linear-gradient(135deg, var(--secondary), #f59e0b);
}

.step:nth-child(4) .step-number {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

/* Enhanced Step Content */
.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 1rem;
}

.step h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.step:hover h3::after {
    width: 80px;
}

.step p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
}

/* Step Icons */
.step::after {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease;
}

.step:hover::after {
    opacity: 0.1;
    transform: scale(1);
}

/* Step Progress Indicators */
.step-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--success));
    transition: width 0.8s ease;
    border-radius: 0 0 20px 20px;
}

.step:hover .step-progress {
    width: 100%;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.step {
    animation: float 6s ease-in-out infinite;
}

.step:nth-child(2) {
    animation-delay: 0.5s;
}

.step:nth-child(3) {
    animation-delay: 1s;
}

.step:nth-child(4) {
    animation-delay: 1.5s;
}

/* Step Counter */
.step-counter {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.step:hover .step-counter {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Mobile Experience */
@media (max-width: 1024px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .how-it-works {
        padding: 80px 0;
    }

    .how-it-works .section-title h2 {
        font-size: 2.5rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .step {
        padding: 2.5rem 1.5rem;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .how-it-works .section-title h2 {
        font-size: 2rem;
    }

    .how-it-works .section-title p {
        font-size: 1.125rem;
    }

    .step {
        padding: 2rem 1.25rem;
    }

    .step h3 {
        font-size: 1.375rem;
    }

    .step p {
        font-size: 1rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .how-it-works {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    }

    .step {
        background: #1e293b;
        border-color: #334155;
    }

    .step h3 {
        color: #f8fafc;
    }

    .step p {
        color: #cbd5e1;
    }
}

/* Print Styles */
@media print {
    .how-it-works {
        background: white !important;
        padding: 50px 0 !important;
    }

    .step {
        box-shadow: none !important;
        border: 1px solid #e5e7eb !important;
        break-inside: avoid;
    }

    .step:hover {
        transform: none !important;
    }
}
/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.author-info p {
    color: var(--gray);
    font-size: 0.875rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ===== POST JOBS PAGE STYLES ===== */

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="%23f8fafc"/></svg>');
    background-size: cover;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(37, 99, 235, 0.05),
        transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}


.stat-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(37, 99, 235, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary);
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    padding: 1.5rem;
    border-radius: 16px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--dark), var(--gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    color: var(--gray);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 500;
}



/* Job Posting Section */
.job-posting-section {
    padding: 80px 0;
    background: var(--light);
}

.posting-header {
    text-align: center;
    margin-bottom: 3rem;
}

.posting-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.posting-header p {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Posting Wizard */
.posting-wizard {
    background: var(--white);
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.wizard-progress {
    padding: 2rem 2rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.progress-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    opacity: 0.5;
    transition: var(--transition);
}

.progress-step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray);
    border: 3px solid transparent;
    transition: var(--transition);
}

.progress-step.active .step-number {
    background: var(--primary);
    color: var(--white);
    border-color: #dbeafe;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
}

.progress-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Job Form */
.job-form {
    padding: 3rem;
}

.form-step {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.form-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.step-header h3 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.step-header p {
    color: var(--gray);
    font-size: 1.125rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group label i {
    color: var(--primary);
    width: 18px;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.input-tip {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.25rem;
    font-style: italic;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.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(37, 99, 235, 0.1);
}

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

/* Salary Inputs */
.salary-inputs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.salary-inputs input {
    flex: 1;
    text-align: center;
}

.salary-separator {
    color: var(--gray);
    font-weight: 500;
}

.salary-period {
    min-width: 120px;
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Skills Input */
.skills-input-container {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    background: var(--white);
}

.skills-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    min-height: 42px;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.tag-remove {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.125rem;
}

.tag-remove:hover {
    background: rgba(255,255,255,0.2);
}

.skills-input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.skills-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
}

.skills-add-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.skills-add-btn:hover {
    background: var(--primary-dark);
}

.skills-suggestions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.suggestion-tag {
    padding: 0.5rem 1rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.suggestion-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-option:hover {
    border-color: var(--primary);
}

.checkbox-option input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.checkbox-option input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-option input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: bold;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

/* Review Section */
.review-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.review-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.review-card h4 {
    margin-bottom: 1.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
}

.review-card h4 i {
    color: var(--primary);
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.review-item:last-child {
    border-bottom: none;
}

.review-item strong {
    min-width: 140px;
    color: var(--dark);
    font-weight: 600;
}

.skills-review {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.skill-preview {
    padding: 0.5rem 1rem;
    background: #dbeafe;
    color: var(--primary);
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Pricing Options */
.pricing-options {
    margin-bottom: 3rem;
}

.pricing-options h4 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark);
    font-size: 1.5rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-header h5 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--dark);
}

.pricing-features li i {
    width: 16px;
}

.pricing-features li i.fa-check {
    color: var(--success);
}

.pricing-features li i.fa-times {
    color: #ef4444;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefit-metric {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.metric-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: var(--light);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 2rem;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.story-content {
    flex: 1;
}

.story-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.story-text p {
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.story-author strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.story-author span {
    color: var(--gray);
    font-size: 0.875rem;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 120px;
}

.story-stat {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* CTA Section */
.profile-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.feature i {
    color: var(--secondary);
    font-size: 1.125rem;
}

/* Button Styles */
.btn-success {
    background: var(--success);
    color: var(--white);
    border: none;
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

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

    .story-card {
        flex-direction: column;
        text-align: center;
    }

    .story-stats {
        flex-direction: row;
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .job-form {
        padding: 2rem 1.5rem;
    }

    .posting-header h2 {
        font-size: 2rem;
    }

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

    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .progress-steps {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .progress-step {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    .step-label {
        font-size: 1rem;
    }

    .salary-inputs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .salary-period {
        min-width: auto;
        width: 100%;
    }

    .skills-input-wrapper {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .form-actions .btn {
        width: 100%;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .job-form {
        padding: 11.5rem 1rem;
    }

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

    .review-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .review-item strong {
        min-width: auto;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

/* ===== SKILL TRAINING PAGE STYLES ===== */

/* Training Benefits Section */
.training-benefits {
    padding: 80px 0;
    background: var(--light);
}

.earnings-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.earnings-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.earnings-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.earnings-card.certified {
    border-color: var(--success);
    position: relative;
}

.earnings-header {
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.earnings-header.uncertified {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.earnings-header.certified {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

.earnings-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hourly-rate {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.earnings-features {
    padding: 2rem;
    list-style: none;
}

.earnings-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.earnings-features li:last-child {
    border-bottom: none;
}

.earnings-features li.negative {
    color: #ef4444;
}

.earnings-features li.positive {
    color: var(--success);
}

.earnings-features li i {
    font-size: 1.125rem;
    width: 20px;
}

.increase-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--success);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Skill Assessment Section */
.skill-assessment-section {
    padding: 80px 0;
    background: var(--white);
}

.assessment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.assessment-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.assessment-header p {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.assessment-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    border: 1px solid #f1f5f9;
}

.assessment-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.progress-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.circle-bg {
    width: 100%;
    height: 100%;
    border: 8px solid #f1f5f9;
    border-radius: 50%;
}

.circle-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 8px solid var(--primary);
    border-radius: 50%;
    clip-path: inset(0 0 0 50%);
    transform: rotate(0deg);
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-percent {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.progress-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.progress-details h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.progress-details p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.skill-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metric-label {
    min-width: 120px;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.875rem;
}

.metric-bar {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 4px;
    transition: width 1s ease;
}

.metric-value {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.875rem;
}

.assessment-recommendations h4 {
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-size: 1.25rem;
}

.recommendation-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.rec-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.rec-details {
    flex: 1;
}

.rec-details h5 {
    margin-bottom: 0.25rem;
    color: var(--dark);
    font-size: 1rem;
}

.rec-details p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.rec-duration {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.assessment-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Training Programs Section */
.training-programs-section {
    padding: 80px 0;
    background: var(--light);
}

.program-filters {
    margin-bottom: 3rem;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    color: var(--gray);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 2rem;
    position: relative;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-badge.popular {
    background: var(--secondary);
    color: var(--dark);
}

.program-badge.new {
    background: var(--primary);
    color: var(--white);
}

.program-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.program-info {
    flex: 1;
}

.program-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 1.25rem;
}

.program-provider {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.program-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--secondary);
}

.rating-text {
    font-size: 0.875rem;
    color: var(--gray);
}

.program-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--dark);
}

.program-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--dark);
}

.detail-item i {
    color: var(--primary);
    width: 16px;
}

.program-outcomes {
    margin-bottom: 2rem;
}

.program-outcomes h4 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1rem;
}

.program-outcomes ul {
    list-style: none;
    padding-left: 0;
}

.program-outcomes li {
    padding: 0.25rem 0;
    color: var(--gray);
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.program-outcomes li:before {
    content: '✓';
    color: var(--success);
    font-weight: 600;
    flex-shrink: 0;
}

.program-actions {
    display: flex;
    gap: 0.5rem;
}

/* Financing Section */
.financing-section {
    padding: 80px 0;
    background: var(--white);
}

.financing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.financing-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.financing-text p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.financing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.financing-option {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.financing-option i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.financing-option h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.financing-option p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0;
}

.financing-cta {
    position: sticky;
    top: 2rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.cta-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive Design for Training Page */
@media (max-width: 1024px) {
    .assessment-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .financing-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .financing-cta {
        position: static;
    }
}

@media (max-width: 768px) {
    .earnings-comparison {
        grid-template-columns: 1fr;
    }

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

    .program-details {
        grid-template-columns: 1fr;
    }

    .program-actions {
        flex-direction: column;
    }

    .assessment-progress {
        text-align: center;
    }

    .skill-metric {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .metric-label {
        min-width: auto;
    }

    .recommendation-item {
        flex-direction: column;
        text-align: center;
    }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .program-header {
        flex-direction: column;
        text-align: center;
    }

    .program-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .assessment-card {
        padding: 1.5rem;
    }

    .progress-circle {
        width: 150px;
        height: 150px;
    }

    .progress-percent {
        font-size: 2rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }
}

/* ===== ABOUT PAGE ENHANCEMENTS ===== */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--gray);
}

.about-stats {
    display: grid;
    gap: 1rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.mv-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.mv-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--gray);
    line-height: 1.6;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: var(--light);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.impact-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.impact-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.impact-card p {
    color: var(--gray);
}

/* ===== ADMIN DASHBOARD STYLES ===== */
.admin-dashboard {
    padding: 80px 0;
    background: var(--light);
    min-height: 100vh;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    color: var(--gray);
    font-size: 0.875rem;
}

.stat-trend {
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.stat-trend.up {
    background: #dcfce7;
    color: #166534;
}

.stat-trend.down {
    background: #fee2e2;
    color: #dc2626;
}

/* Dashboard Tabs */
.dashboard-tabs {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.tab-header {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.tab-button {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    position: relative;
}

.tab-button.active {
    color: var(--primary);
    background: var(--white);
    border-bottom: 2px solid var(--primary);
}

.tab-button:hover {
    color: var(--primary);
}

.badge {
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.tab-content {
    display: none;
    padding: 2rem;
}

.tab-content.active {
    display: block;
}

/* Table Styles */
.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.table-actions {
    display: flex;
    gap: 0.5rem;
}

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

.data-table th {
    background: #f8fafc;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid #e5e7eb;
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.worker-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.worker-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
}

.worker-name {
    font-weight: 600;
    color: var(--dark);
}

.worker-contact {
    font-size: 0.875rem;
    color: var(--gray);
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.active {
    background: #dcfce7;
    color: #166534;
}

.performance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--secondary);
}

.rating {
    font-size: 0.875rem;
    color: var(--gray);
}

.action-buttons {
    display: flex;
    gap: 0.25rem;
}

.btn-action {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-action.view {
    background: #dbeafe;
    color: var(--primary);
}

.btn-action.message {
    background: #f0fdf4;
    color: var(--success);
}

.btn-action.edit {
    background: #fef3c7;
    color: var(--secondary);
}

.btn-action.complete {
    background: #dcfce7;
    color: #166534;
}

.btn-action:hover {
    transform: translateY(-1px);
}

/* Pending Actions */
.pending-actions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pending-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.pending-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.pending-details {
    flex: 1;
}

.pending-details h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.pending-details p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.pending-time {
    font-size: 0.875rem;
    color: var(--gray);
}

.pending-actions {
    display: flex;
    gap: 0.5rem;
}

/* Analytics */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.analytics-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 2px dashed #e5e7eb;
}

.analytics-card h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.chart-placeholder {
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.chart-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stats .number {
        font-size: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .tab-header {
        flex-direction: column;
    }

    .table-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .table-actions {
        justify-content: center;
    }

    .data-table {
        display: block;
        overflow-x: auto;
    }

    .pending-item {
        flex-direction: column;
        text-align: center;
    }

    .pending-actions {
        justify-content: center;
    }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-primary:hover {
    background: #eab308;
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--gray);
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    opacity: 0.9;
    font-size: 1.125rem;
}

/* ===== BLOG STYLES ===== */
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-post {
    transition: var(--transition);
}

.featured-post:hover {
    transform: translateY(-2px);
}

.newsletter input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

/* Blog categories */
.category-tag {
    background: #f1f5f9;
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

/* Responsive blog grid */
@media (max-width: 768px) {
    .featured-post > div > div {
        grid-template-columns: 1fr;
    }

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

    .newsletter > div {
        flex-direction: column;
    }
}

/* ===== ENHANCED CONTACT PAGE STYLES ===== */

/* Support Options Section */
.support-options {
    padding: 80px 0;
    background: var(--white);
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid #f1f5f9;
    position: relative;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.support-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.support-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.support-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.support-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-size: 1.5rem;
}

.support-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
    font-size: 0.875rem;
}

.feature i {
    color: var(--success);
    width: 16px;
}

.agent-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}

.status-indicator.online {
    background: var(--success);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Enhanced Contact Section */
.contact-enhanced {
    padding: 80px 0;
    background: var(--light);
}

.contact-grid-enhanced {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-enhanced {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-header p {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.contact-method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-content {
    flex: 1;
}

.method-content h4 {
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-size: 1.25rem;
}

.method-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 1rem;
}

.contact-details strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.contact-details span {
    color: var(--gray);
    font-size: 0.875rem;
    line-height: 1.4;
}

.business-hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.business-hours i {
    color: var(--primary);
}

/* Social Contact */
.social-contact {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
}

.social-contact h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.social-contact p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
    font-weight: 500;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* Enhanced Contact Form */
.contact-form-enhanced {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid #f1f5f9;
    position: sticky;
    top: 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.form-header h3 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-header p {
    color: var(--gray);
    font-size: 1rem;
}

.enhanced-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.enhanced-form .form-group {
    margin-bottom: 0;
}

.enhanced-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enhanced-form .form-group label i {
    color: var(--primary);
    width: 16px;
    font-size: 0.875rem;
}

.enhanced-form input,
.enhanced-form select,
.enhanced-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: var(--white);
}

.enhanced-form input:focus,
.enhanced-form select:focus,
.enhanced-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #fafbfc;
}

.enhanced-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

/* Audience Selector */
.audience-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.audience-option {
    cursor: pointer;
}

.audience-option input {
    display: none;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
}

.audience-option input:checked + .option-content {
    background: #dbeafe;
    border-color: var(--primary);
    color: var(--primary);
}

.audience-option:hover .option-content {
    border-color: var(--primary);
}

.option-content i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.option-content span {
    font-weight: 600;
    font-size: 0.875rem;
}

/* ===== ENHANCED URGENCY SELECTOR ===== */
.urgency-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

.urgency-option {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.urgency-option input[type="radio"] {
    display: none;
}

.urgency-option input[type="radio"]:checked + .option-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.urgency-option input[type="radio"]:checked + .option-content::after {
    content: '✓';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.urgency-option .option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.urgency-option .option-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.urgency-option:hover .option-content::before {
    left: 100%;
}

.urgency-option:hover .option-content {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.urgency-option input:checked + .option-content {
    border-color: var(--primary);
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

/* Urgency Dot with Animation */
.urgency-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.urgency-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    opacity: 0.8;
}

.urgency-dot.low {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.urgency-dot.medium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.urgency-dot.high {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    animation: pulse-high 2s infinite;
}

@keyframes pulse-high {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
}

.urgency-option input:checked + .option-content .urgency-dot {
    transform: scale(1.2);
}

.urgency-option input:checked + .option-content .urgency-dot.low {
    animation: pulse-low 3s infinite;
}

.urgency-option input:checked + .option-content .urgency-dot.medium {
    animation: pulse-medium 2.5s infinite;
}

@keyframes pulse-low {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 2px 16px rgba(16, 185, 129, 0.6);
    }
}

@keyframes pulse-medium {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 2px 16px rgba(245, 158, 11, 0.6);
    }
}

/* Urgency Label Styling */
.urgency-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.urgency-label span:first-child {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.urgency-label small {
    font-size: 0.75rem;
    color: var(--gray);
    transition: color 0.3s ease;
}

.urgency-option input:checked + .option-content .urgency-label span:first-child {
    color: var(--primary);
}

.urgency-option input:checked + .option-content .urgency-label small {
    color: #6b7280;
    font-weight: 500;
}

/* Selected State Icon */
.urgency-option input:checked + .option-content::after {
    content: '✓';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .urgency-selector {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .urgency-option .option-content {
        flex-direction: row;
        padding: 1.25rem;
        gap: 1rem;
        text-align: left;
    }

    .urgency-label {
        align-items: flex-start;
        flex: 1;
    }

    .urgency-label span:first-child {
        font-size: 1.125rem;
    }

    .urgency-label small {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .urgency-selector {
        gap: 0.5rem;
    }

    .urgency-option .option-content {
        padding: 1rem;
    }

    .urgency-dot {
        width: 14px;
        height: 14px;
    }

    .urgency-dot::after {
        width: 6px;
        height: 6px;
    }
}

/* File Upload */
.file-upload-label {
    display: block;
    padding: 2rem;
    border: 2px dashed #e5e7eb;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: #fafbfc;
}

.file-upload-label:hover {
    border-color: var(--primary);
    background: #f8fafc;
}

.file-upload-label input {
    display: none;
}

.file-upload-text {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.file-types {
    font-size: 0.875rem;
    color: var(--gray);
}

.file-preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.875rem;
}

.file-item i {
    color: var(--primary);
}

.file-remove {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: auto;
    border-radius: 4px;
    transition: var(--transition);
}

.file-remove:hover {
    background: #fee2e2;
}

/* Form Footer */
.form-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--success);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.faq-category h3 {
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-category h3 i {
    color: var(--primary);
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8fafc;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question span {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: var(--white);
    border-top: 1px solid #e5e7eb;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.faq-cta p {
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 1.125rem;
}

/* Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 350px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.live-chat-widget.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px 12px 0 0;
}

.chat-agent {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-info strong {
    display: block;
    font-size: 0.875rem;
}

.agent-info .status {
    font-size: 0.75rem;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: var(--transition);
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-messages {
    height: 300px;
    padding: 1.25rem;
    overflow-y: auto;
    background: #f8fafc;
}

.message {
    margin-bottom: 1rem;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 80%;
}

.agent-message .message-content {
    background: var(--white);
    border: 1px solid #e5e7eb;
}

.message-time {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.chat-input {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    background: var(--white);
}

.chat-input input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 0.875rem;
}

.send-btn {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-enhanced {
        position: static;
    }

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

    .audience-selector,
    .urgency-selector {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 768px) {
    .support-cards {
        grid-template-columns: 1fr;
    }

    .support-card.featured {
        transform: none;
    }

    .support-card.featured:hover {
        transform: translateY(-5px);
    }

    .contact-method-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .method-icon {
        align-self: center;
    }

    .social-links {
        grid-template-columns: 1fr 1fr;
    }

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

    .live-chat-widget {
        width: calc(100vw - 2rem);
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-enhanced {
        padding: 2rem 1.5rem;
    }

    .contact-method-card {
        padding: 1.5rem;
    }

    .audience-selector,
    .urgency-selector {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-answer {
        padding: 1.25rem;
    }
}

/* ===== ENHANCED WORKER PAGES STYLES ===== */

/* Job Search Section */
.job-search-section {
    padding: 80px 0;
    background: var(--light);
}

.search-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.search-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.search-header h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-input, .filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-input:focus, .filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.advanced-filters {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.filter-row {
    margin-bottom: 1.5rem;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.filter-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

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

.chip input[type="checkbox"]:checked + .chip-label {
    background: var(--primary);
    color: var(--white);
}

.search-actions {
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

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

/* Categories Section */
.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.category-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.job-count {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.avg-pay {
    color: var(--success);
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-skills {
    list-style: none;
    margin-bottom: 1.5rem;
}

.category-skills li {
    padding: 0.25rem 0;
    color: var(--gray);
    font-size: 0.875rem;
}

.category-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Job Listings */
.job-listings-section {
    padding: 80px 0;
    background: var(--light);
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.listings-controls {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: var(--white);
}

.view-controls {
    display: flex;
    gap: 0.25rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    background: var(--white);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.view-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.job-listings-grid {
    display: grid;
    gap: 1.5rem;
}

.job-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 2rem;
    position: relative;
    border: 1px solid #f1f5f9;
    transition: var(--transition);
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.job-card.featured {
    border-left: 4px solid var(--secondary);
}

.job-card.urgent {
    border-left: 4px solid #ef4444;
}

.job-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 0.25rem 0.75rem;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    white-space: nowrap;
}

.urgent-badge {
    background: #ef4444;
    color: var(--white);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 120px;
    min-height: 80px;
}

.company-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.25rem;
}

.job-details {
    flex: 1;
}

.job-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.company-name {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gray);
    font-size: 0.875rem;
}

.job-salary {
    text-align: right;
    position: relative;
    z-index: 1;
    margin-left: auto;
    padding-left: 1rem;
}

.salary {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
    display: block;
    line-height: 1.2;
}

.benefits {
    font-size: 0.875rem;
    color: var(--gray);
    display: block;
    margin-top: 0.25rem;
}

.job-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--dark);
}

.job-requirements h4 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.requirements-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.requirement {
    padding: 0.25rem 0.75rem;
    background: #f1f5f9;
    border-radius: 15px;
    font-size: 0.875rem;
    color: var(--dark);
}

.job-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-apply, .btn-save, .btn-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-tertiary {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: var(--gray);
    padding: 0.75rem;
}

.load-more-section {
    text-align: center;
    margin-top: 3rem;
}

.showing-text {
    margin-top: 1rem;
    color: var(--gray);
}

/* Job Alerts */
.job-alerts-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.alerts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.alerts-text h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.alerts-form .form-group {
    display: flex;
    gap: 0.5rem;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.form-note {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Profile Builder Styles */
.profile-builder-section {
    padding: 80px 0;
}

.builder-header {
    text-align: center;
    margin-bottom: 3rem;
}

.progress-tracker {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.tracker-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tracker-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: #f8fafc;
    transition: var(--transition);
}

.tracker-step.active {
    background: var(--primary);
    color: var(--white);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.tracker-step.active .step-number {
    background: var(--white);
    color: var(--primary);
}

.step-info {
    flex: 1;
}

.step-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.progress-bar {
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray);
}

.profile-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.profile-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
}

.section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.section-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.skills-input-container {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
}

.skills-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.skill-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
}

.skills-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.skills-suggestions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.suggestion {
    padding: 0.25rem 0.75rem;
    background: #f1f5f9;
    border-radius: 15px;
    font-size: 0.875rem;
    color: var(--gray);
    cursor: pointer;
}

.certifications-list {
    margin-bottom: 1rem;
}

.certification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.cert-info h4 {
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.cert-info p {
    font-size: 0.875rem;
    color: var(--gray);
}

.cert-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-edit, .btn-remove {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-edit {
    background: #dbeafe;
    color: var(--primary);
}

.btn-remove {
    background: #fee2e2;
    color: #ef4444;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}

.tool-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 6px;
    cursor: pointer;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

/* ===== ENHANCED PROFILE BUILDER STYLES ===== */

/* Stats Banner */
.stats-banner {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary);
    background: #dbeafe;
    padding: 1rem;
    border-radius: 12px;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.stat-item p {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Benefits Section Enhancements */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefit-metric {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: var(--light);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
}

.story-content {
    flex: 1;
}

.story-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.story-text p {
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-author strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.story-author span {
    color: var(--gray);
    font-size: 0.875rem;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-stat {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Enhanced Progress Tracker */
.progress-tracker {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    border: 1px solid #f1f5f9;
}

.tracker-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.tracker-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: var(--transition);
    position: relative;
}

.tracker-step.completed {
    background: #dcfce7;
    border: 1px solid #bbf7d0;
}

.tracker-step.active {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.tracker-step.completed .step-number {
    background: var(--success);
    color: var(--white);
}

.tracker-step.active .step-number {
    background: var(--white);
    color: var(--primary);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-info {
    flex: 1;
}

.step-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.progress-bar {
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 4px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.progress-text strong {
    color: var(--primary);
    font-size: 1rem;
}

.completion-reward {
    color: var(--success);
    font-weight: 500;
}

/* Enhanced Form Styles */
.section-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 1.5rem;
}

.section-header p {
    color: var(--gray);
    line-height: 1.6;
}

.form-label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--dark);
}

.label-tip {
    display: block;
    font-weight: 400;
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Enhanced Skills Input */
.skills-input-container {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    background: var(--white);
}

.skills-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.tag-remove {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.tag-remove:hover {
    background: rgba(255,255,255,0.2);
}

.skills-input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.skills-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
}

.skills-add-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.skills-add-btn:hover {
    background: var(--primary-dark);
}

.skills-suggestions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.suggestion-tag {
    padding: 0.5rem 1rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.suggestion-tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Experience Levels */
.experience-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.experience-option {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.experience-option.selected {
    border-color: var(--primary);
    background: #dbeafe;
}

.experience-option input {
    display: none;
}

.option-title {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.option-desc {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Enhanced Certifications */
.certification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
}

.certification-item.verified {
    border-color: var(--success);
    background: #f0fdf4;
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cert-info {
    flex: 1;
}

.cert-info h4 {
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.cert-info p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.cert-status {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cert-status.verified {
    background: #dcfce7;
    color: #166534;
}

.cert-status.pending {
    background: #fef3c7;
    color: #92400e;
}

.cert-actions {
    display: flex;
    gap: 0.5rem;
}

/* Enhanced Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tool-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.tool-checkbox:hover {
    border-color: var(--primary);
}

.tool-checkbox input:checked + .checkmark + .tool-label {
    color: var(--primary);
    font-weight: 600;
}

.tool-checkbox input:checked ~ .tool-label {
    color: var(--primary);
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    position: relative;
}

.tool-checkbox input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.tool-checkbox input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: bold;
}

.tool-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
}

/* Specializations */
.specializations {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.specialization-chip {
    padding: 0.75rem 1.5rem;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

.specialization-chip:hover {
    border-color: var(--primary);
}

.specialization-chip input:checked + span {
    color: var(--primary);
    font-weight: 600;
}

.specialization-chip input {
    display: none;
}

/* Enhanced Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.action-group {
    display: flex;
    gap: 1rem;
}

/* Enhanced Profile Preview */
.preview-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 2rem;
    border: 1px solid #f1f5f9;
    margin-bottom: 2rem;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.preview-avatar {
    position: relative;
}

.avatar-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
    position: relative;
}

.online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: var(--success);
    border: 2px solid var(--white);
    border-radius: 50%;
}

.preview-basic h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.preview-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.preview-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

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

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-skills, .preview-certifications, .preview-availability {
    margin-bottom: 1.5rem;
}

.preview-skills h4, .preview-certifications h4, .preview-availability h4 {
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-size: 1rem;
}

.skills-preview {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.skill-preview {
    padding: 0.5rem 1rem;
    background: #dbeafe;
    color: var(--primary);
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

.skill-preview-more {
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    color: var(--gray);
    border-radius: 15px;
    font-size: 0.875rem;
}

.certs-preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cert-preview {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.875rem;
}

.cert-preview.verified {
    background: #f0fdf4;
    color: #166534;
}

.cert-preview.pending {
    background: #fef3c7;
    color: #92400e;
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f0fdf4;
    color: #166534;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
}

.availability-status.available i {
    color: var(--success);
}

.preview-completion {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.completion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.completion-percent {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.125rem;
}

.completion-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.completion-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.completion-tips p {
    font-size: 0.875rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preview-actions {
    display: flex;
    gap: 0.5rem;
}

/* Preview Tips */
.preview-tips {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    border: 1px solid #f1f5f9;
}

.preview-tips h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.tip-item:last-child {
    border-bottom: none;
}

.tip-item i {
    color: var(--success);
    font-size: 0.875rem;
}

.tip-item span {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Enhanced Verification Section */
.verification-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: var(--white);
}

.verification-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.verification-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.verification-text p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.verification-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.verification-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.verification-benefits li:last-child {
    border-bottom: none;
}

.verification-benefits li i {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.verification-benefits strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.verification-benefits span {
    opacity: 0.8;
    font-size: 0.875rem;
}

.verification-cta {
    text-align: center;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

.verification-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.badge-card.verified {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
}

.badge-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1rem;
}

.badge-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.badge-desc {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Profile CTA Section */
.profile-cta {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.feature i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .profile-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .verification-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .story-card {
        flex-direction: column;
    }

    .story-stats {
        flex-direction: row;
        justify-content: space-around;
    }

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

    .experience-levels {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .action-group {
        width: 100%;
        justify-content: space-between;
    }

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

    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
}



/* Training Programs Styles */
.training-benefits {
    padding: 80px 0;
}

.earnings-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.earnings-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.earnings-card.certified {
    position: relative;
    border: 2px solid var(--success);
}

.earnings-header {
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
}

.earnings-header.uncertified {
    background: var(--gray);
}

.earnings-header.certified {
    background: var(--success);
}

.hourly-rate {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.earnings-features {
    padding: 1.5rem;
    list-style: none;
}

.earnings-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.earnings-features li.negative {
    color: #ef4444;
}

.earnings-features li.positive {
    color: var(--success);
}

.increase-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--success);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Add more training-specific styles as needed */

/* Responsive Design */
@media (max-width: 768px) {
    .filter-grid {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
        gap: 1rem;
    }

    .job-salary {
        text-align: left;
    }

    .alerts-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .alerts-form .form-group {
        flex-direction: column;
    }

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

    .tracker-steps {
        grid-template-columns: 1fr;
    }

    .earnings-comparison {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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