/* ===================================
   Recruit Page Specific Styles
   =================================== */

/* Recruit Hero Section */
.recruit-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.recruit-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d5f8d 100%);
}

.recruit-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.recruit-hero-title {
    font-family: var(--font-primary);
    margin-bottom: 24px;
}

.recruit-hero-title .title-line {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.recruit-hero-title .title-subtitle {
    display: block;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 400;
    margin-top: 16px;
    opacity: 0.9;
}

.recruit-hero-text {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Message Section */
.recruit-message {
    background: var(--color-bg-alt);
}

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

.message-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 48px;
    color: var(--color-primary);
}

.message-text {
    font-size: 18px;
    line-height: 2;
}

.message-text .lead {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--color-primary);
}

/* Job Positions Section */
.job-positions {
    background: white;
}

#job-listings {
    display: grid;
    gap: 40px;
}

.job-card {
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.job-card:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    background: var(--color-bg-alt);
    border-bottom: 2px solid var(--color-border);
}

.job-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-primary);
}

.job-badge {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: var(--color-secondary);
    color: white;
    border-radius: 20px;
}

.job-body {
    padding: 40px;
}

.job-section {
    margin-bottom: 32px;
}

.job-section h4 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--color-primary);
    text-transform: uppercase;
}

.job-section p {
    line-height: 1.8;
    color: var(--color-text);
}

.job-section ul {
    list-style: none;
    padding-left: 0;
}

.job-section ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
}

.job-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

.job-details {
    display: grid;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.job-detail-item {
    display: flex;
    gap: 20px;
}

.detail-label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-width: 100px;
    color: var(--color-text-light);
}

.detail-value {
    color: var(--color-primary);
    font-weight: 500;
}

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

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

.benefit-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.benefit-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Application Flow Section */
.application-flow {
    background: white;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 32px 24px;
    background: var(--color-bg-alt);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.flow-step:hover {
    background: white;
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 16px;
    opacity: 0.3;
}

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

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

.flow-arrow {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 300;
    color: var(--color-secondary);
    opacity: 0.5;
}

/* Application Form Section */
.application-form {
    background: var(--color-bg-alt);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.form-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 48px;
    color: var(--color-text);
}

.form-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 24px 0;
}

.form-note p {
    font-size: 14px;
    color: #856404;
    margin: 0;
}

/* Recruit Contact Section */
.recruit-contact {
    background: white;
    text-align: center;
}

.recruit-contact h3 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.recruit-contact > p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--color-text-light);
}

.contact-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-method {
    text-align: center;
}

.contact-method h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.contact-method p {
    margin: 8px 0;
    color: var(--color-text);
}

.contact-method a {
    color: var(--color-secondary);
    font-weight: 600;
}

.contact-method a:hover {
    color: var(--color-accent);
}

.contact-link {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    background: var(--color-secondary);
    padding: 16px 32px;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.contact-link:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Responsive Design for Recruit Page */
@media (max-width: 768px) {
    .recruit-hero {
        height: 50vh;
        min-height: 400px;
        margin-top: 60px;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px 24px;
    }
    
    .job-body {
        padding: 24px;
    }
    
    .flow-steps {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    
    .form-container {
        padding: 40px 24px;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .message-text {
        font-size: 16px;
    }
    
    .job-title {
        font-size: 22px;
    }
    
    .detail-label {
        min-width: auto;
    }
    
    .job-detail-item {
        flex-direction: column;
        gap: 8px;
    }
}
