/* ===================================
   Recruiter Page Specific Styles
   =================================== */

/* Hero Section */
.recruiter-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.recruiter-hero .hero-title {
    font-size: 48px;
    font-weight: var(--font-weight-extrabold);
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.recruiter-hero .hero-title .brand-highlight {
    color: var(--primary-color);
    font-weight: var(--font-weight-extrabold);
}

.recruiter-hero .hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
}

.hero-feature i {
    color: var(--primary-color);
    font-size: 20px;
}

.recruiter-hero .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 16px;
}

/* Requirements Section */
.requirements-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.requirement-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.requirement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.requirement-icon i {
    font-size: 36px;
    color: var(--bg-white);
}

.requirement-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.requirement-list {
    list-style: none;
    margin-bottom: 24px;
}

.requirement-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

.requirement-preferred {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 16px;
}

.requirement-preferred strong {
    display: block;
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 8px;
}

.requirement-preferred p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.requirements-note {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 24px 32px;
    margin-top: 40px;
}

.requirements-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-primary);
}

.requirements-note p:first-child {
    margin-bottom: 8px;
}

.requirements-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Benefits Section */
.benefits-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.benefit-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

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

.benefit-number {
    position: absolute;
    top: -16px;
    left: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 20px;
}

.benefit-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 16px;
}

.benefit-description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Support Section */
.support-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.support-card {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.support-card:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.support-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.support-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Compensation Section */
.compensation-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.compensation-subtitle {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px;
}

.compensation-subtitle p {
    font-size: 22px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin: 0;
}

.compensation-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.compensation-benefit-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.compensation-benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.benefit-icon i {
    font-size: 36px;
    color: var(--bg-white);
}

.benefit-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Legacy styles for backwards compatibility */
.compensation-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.compensation-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.compensation-card h3 {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.compensation-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.compensation-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.compensation-item h4 {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.compensation-range {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin-bottom: 12px;
}

.compensation-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.compensation-benefits {
    list-style: none;
}

.compensation-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.compensation-benefits li:last-child {
    border-bottom: none;
}

.compensation-benefits i {
    color: var(--primary-color);
    font-size: 16px;
}

.compensation-note {
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 40px;
}

.compensation-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.compensation-note i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* Flow Section */
.flow-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.flow-steps {
    max-width: 800px;
    margin: 60px auto 0;
}

.flow-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.flow-step:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.flow-step-number {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--bg-white);
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.flow-step-content {
    flex: 1;
}

.flow-step-content h3 {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.flow-step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.flow-duration {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    padding: 4px 12px;
    border-radius: 12px;
    margin-top: 12px;
}

.flow-arrow {
    text-align: center;
    padding: 16px 0;
}

.flow-arrow i {
    font-size: 24px;
    color: var(--primary-color);
}

.flow-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    border-radius: 16px;
}

.flow-cta-text {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 24px;
}

/* Registration Section */
.registration-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.registration-cta-wrapper {
    max-width: 700px;
    margin: 60px auto 0;
}

.registration-cta-card {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 60px 48px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

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

.registration-icon i {
    font-size: 48px;
    color: var(--bg-white);
}

.registration-cta-title {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.registration-cta-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.registration-cta-card .btn {
    min-width: 350px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.registration-note {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.registration-note i {
    color: var(--primary-color);
    margin-right: 6px;
}

.registration-form-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

.registration-form {
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-sm);
}

.form-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 2px solid var(--border-color);
}

.form-section:last-of-type {
    margin-bottom: 32px;
    padding-bottom: 0;
    border-bottom: none;
}

.form-section-title {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

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

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

.form-label {
    display: block;
    font-size: 15px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.required {
    color: var(--accent-color);
    font-size: 13px;
    margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

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

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-primary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
}

.form-privacy {
    margin-bottom: 32px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.form-privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    min-width: 300px;
    margin-bottom: 16px;
}

.form-note {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

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

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

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

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

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

    .compensation-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .recruiter-hero {
        padding: 100px 0 60px;
    }

    .recruiter-hero .hero-title {
        font-size: 36px;
    }

    .recruiter-hero .hero-subtitle {
        font-size: 16px;
    }

    .recruiter-hero .hero-cta {
        flex-direction: column;
    }

    .recruiter-hero .hero-cta .btn {
        width: 100%;
    }

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

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

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

    .compensation-subtitle p {
        font-size: 18px;
    }

    .compensation-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .compensation-benefit-card {
        padding: 32px 24px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
    }

    .benefit-icon i {
        font-size: 32px;
    }

    .benefit-title {
        font-size: 17px;
        min-height: auto;
    }

    .flow-step {
        flex-direction: column;
        gap: 16px;
    }

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

    .registration-cta-card {
        padding: 40px 32px;
    }

    .registration-cta-card .btn {
        width: 100%;
        min-width: auto;
    }

    .registration-form {
        padding: 32px 24px;
    }

    .form-submit .btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .recruiter-hero .hero-title {
        font-size: 28px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 15px;
    }

    .requirement-card,
    .benefit-card,
    .support-card {
        padding: 32px 24px;
    }
}
