/* Recruitment Page Styles */


/* Scope all styles to main content only */
main {
    --primary-color: #ff6b00;
    --secondary-color: #ff8533;
    --accent-color: #ff944d;
    --light-background: #fff5eb;
    --border-color: #ffe4cc;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease;
}

/* Hero Section */
.recruitment-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background);
    overflow: hidden;
    margin-top: -75px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.recruitment-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.recruitment-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.recruitment-intro {
    padding: 5rem 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.recruitment-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 133, 51, 0.05));
    z-index: 0;
}

.recruitment-intro .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.recruitment-intro h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.recruitment-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--background);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.intro-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.intro-content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--primary-color);
}

.intro-content p::before {
    content: '"';
    position: absolute;
    top: 0;
    left: -1rem;
    font-size: 3rem;
    color: var(--border-color);
    font-family: serif;
    line-height: 1;
}

.intro-content p:last-child::after {
    content: '"';
    position: absolute;
    bottom: 0;
    right: -1rem;
    font-size: 3rem;
    color: var(--border-color);
    font-family: serif;
    line-height: 1;
}

/* Campus Recruitment Section */
.campus-recruitment {
    padding: 5rem 0;
    background: var(--light-background);
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: var(--background);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.process-card:hover .process-icon img {
    transform: scale(1.05);
}

.process-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--background);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(255, 107, 0, 0.2);
}

.process-card h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--light-text);
    line-height: 1.5;
}

/* Off-Campus Section */
.off-campus {
    padding: 5rem 0;
    background: var(--background);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--light-background);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon img {
    transform: scale(1.05);
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--light-text);
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background: var(--light-background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--background);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .feature-icon img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.5;
}

/* CTA Section */
.recruitment-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background);
    text-align: center;
}

.recruitment-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.recruitment-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--background);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--background);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: transparent;
    color: var(--background);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .recruitment-hero h1 {
        font-size: 3.5rem;
    }

    .recruitment-hero .hero-subtitle {
        font-size: 1.3rem;
    }

    .process-grid {
        gap: 30px;
    }

    .process-card {
        padding: 30px 25px;
    }

    .process-card .icon {
        width: 70px;
        height: 70px;
    }

    .process-card .icon i {
        font-size: 2rem;
    }

    .benefits-grid {
        gap: 30px;
    }

    .benefit-card {
        padding: 30px 25px;
    }
}

@media (max-width: 992px) {
    .recruitment-hero {
        min-height: 40vh;
    }

    .recruitment-hero h1 {
        font-size: 3rem;
    }

    .recruitment-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .process-card {
        padding: 25px 20px;
    }

    .process-card .icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .process-card .icon i {
        font-size: 1.8rem;
    }

    .process-card h3 {
        font-size: 1.3rem;
    }

    .process-card p {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .benefit-card {
        padding: 25px 20px;
    }

    .benefit-card .icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .benefit-card .icon i {
        font-size: 1.8rem;
    }

    .benefit-card h3 {
        font-size: 1.3rem;
    }

    .benefit-card p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-card .icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .feature-card .icon i {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .recruitment-hero {
        min-height: 35vh;
    }

    .recruitment-hero h1 {
        font-size: 2.5rem;
    }

    .recruitment-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-card {
        padding: 20px 15px;
    }

    .process-card .icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .process-card .icon i {
        font-size: 1.5rem;
    }

    .process-card h3 {
        font-size: 1.2rem;
    }

    .process-card p {
        font-size: 0.9rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 20px 15px;
    }

    .benefit-card .icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .benefit-card .icon i {
        font-size: 1.5rem;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-card .icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .feature-card .icon i {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .recruitment-cta {
        padding: 60px 0;
    }

    .recruitment-cta h2 {
        font-size: 2.5rem;
    }

    .recruitment-cta p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .recruitment-cta .cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .recruitment-hero {
        min-height: 30vh;
    }

    .recruitment-hero h1 {
        font-size: 2rem;
    }

    .recruitment-hero .hero-subtitle {
        font-size: 1rem;
    }

    .process-card {
        padding: 15px 12px;
    }

    .process-card .icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .process-card .icon i {
        font-size: 1.3rem;
    }

    .process-card h3 {
        font-size: 1.1rem;
    }

    .process-card p {
        font-size: 0.85rem;
    }

    .benefit-card {
        padding: 15px 12px;
    }

    .benefit-card .icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .benefit-card .icon i {
        font-size: 1.3rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.85rem;
    }

    .feature-card {
        padding: 15px 12px;
    }

    .feature-card .icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .feature-card .icon i {
        font-size: 1.3rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .recruitment-cta {
        padding: 40px 0;
    }

    .recruitment-cta h2 {
        font-size: 2rem;
    }

    .recruitment-cta p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .recruitment-cta .cta-button {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
} 