/* Careers Page Styles */

/* Careers Introduction Section */
.careers-intro {
    padding: 5rem 0;
    background-color: #fff;
}

.careers-intro .title {
    margin-bottom: 2rem;
}

.careers-intro .description {
    font-size: 18px;
    line-height: 28px;
    max-width: 800px;
    margin: 0 auto;
}

/* Why Work With Us Section */
.why-work-with-us {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.why-work-content {
    padding-right: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(237, 41, 57, 0.15);
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ED2939 0%, #ff4757 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.benefit-content h4 {
    color: #161616;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #5D5D5D;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}

.why-work-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-work-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Current Openings Section */
.current-openings {
    padding: 5rem 0;
    background-color: #fff;
}

.section-header {
    margin-bottom: 3rem;
}

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

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #5D5D5D;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ED2939;
    border-color: #ED2939;
    color: #fff;
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.job-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.job-card:hover {
    border-color: #ED2939;
    box-shadow: 0 8px 30px rgba(237, 41, 57, 0.15);
    transform: translateY(-2px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.job-info h3 {
    color: #161616;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.job-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5D5D5D;
    font-size: 14px;
    font-weight: 500;
}

.job-meta i {
    color: #ED2939;
    font-size: 16px;
}

.apply-btn {
    background: linear-gradient(180deg, #ED2939 -37.25%, #c41e3a 100%);
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.apply-btn:hover {
    background: linear-gradient(180deg, #c41e3a -37.25%, #a01729 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 41, 57, 0.3);
}

.job-description p {
    color: #5D5D5D;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 1.5rem;
}

.job-requirements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-requirements li {
    position: relative;
    padding-inline-start: 1.5rem;
    color: #5D5D5D;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0.5rem;
}

.job-requirements li:before {
    content: "•";
    color: #ED2939;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Employee Benefits Section */
.employee-benefits {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: calc(100% - 1rem);
    /* margin-bottom: 2rem; */
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(237, 41, 57, 0.15);
}

.benefit-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ED2939 0%, #ff4757 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 32px;
}

.benefit-card h4 {
    color: #161616;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #5D5D5D;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

/* Application Process Section */
.application-process {
    padding: 5rem 0;
    background-color: #fff;
}

.process-step {
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ED2939 0%, #ff4757 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.step-number:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100px;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.process-step:last-child .step-number:after {
    display: none;
}

.step-content h4 {
    color: #161616;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #5D5D5D;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}

/* Career CTA Section */
.career-cta {
    padding: 5rem 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.00) -45.89%, rgba(27, 0, 0, 0.90) 90.76%), url("../../img/08465a53d0eb426999c45b2b23e03b38fd225916.png") lightgray 0px -524.757px / 100% 420.91% no-repeat;
    color: #fff;
}

.career-cta .title {
    color: #fff;
    margin-bottom: 1.5rem;
}

.career-cta .description {
    color: #E3E3E3;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 2rem;
}

/* Application Modal Styles */
.modal-content {
    border-radius: 12px;
    border: none;
    background: #fff;
}

.modal-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 12px 12px 0 0;
    padding: 1.5rem 2rem;
}

.modal-title {
    color: #161616;
    font-size: 24px;
    font-weight: 700;
}

.btn-close {
    background: transparent;
    border: none;
    color: #5D5D5D;
    font-size: 20px;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close:hover {
    color: #ED2939;
}

.modal-body {
    padding: 2rem;
}

.application-form .form-group {
    margin-bottom: 1.5rem;
}

.application-form label {
    color: #161616;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.application-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.application-form .form-control:focus {
    border-color: #ED2939;
    box-shadow: 0 0 0 0.2rem rgba(237, 41, 57, 0.15);
    outline: none;
}

.application-form .form-text {
    color: #5D5D5D;
    font-size: 12px;
    margin-top: 0.5rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-check-input {
    margin: 0;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-check-label {
    color: #5D5D5D;
    font-size: 14px;
    line-height: 20px;
}

.form-check-label a {
    color: #ED2939;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.modal-footer {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 12px 12px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn {
    border-radius: 40px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: #6C6C6C;
    color: #fff;
}

.btn-secondary:hover {
    background: #5a5a5a;
}

.btn-primary {
    background: linear-gradient(180deg, #ED2939 -37.25%, #c41e3a 100%);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(180deg, #c41e3a -37.25%, #a01729 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 41, 57, 0.3);
}

/* Filter Animation */
.job-card.hidden {
    display: none;
}

.job-card.visible {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .careers-intro,
    .why-work-with-us,
    .current-openings,
    .employee-benefits,
    .application-process,
    .career-cta {
        padding: 3rem 0;
    }
    
    .why-work-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .benefits-grid {
        margin-top: 2rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .job-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .job-meta {
        gap: 1rem;
    }
    
    .job-meta span {
        font-size: 12px;
    }
    
    .apply-btn {
        width: 100%;
        text-align: center;
    }
    
    .jobs-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .step-number:after {
        display: none;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .job-info h3 {
        font-size: 20px;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .step-content h4 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 12px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .job-meta span {
        font-size: 11px;
    }
} 