/* JOBS HERO WRAPPER - Jobs specific */
.header-wrapper {
    background: url("/ASSETS/jorge-ramirez-_zrJMDHVUxc-unsplash.jpg") no-repeat center center/cover;
    color: white;
    position: relative;
    height: 110%;
    width: 100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

/* HERO SECTION */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 90vh;
    padding: 50px;
    position: relative;
    z-index: 5;
}

.hero-texts {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-section hr {
    width: 1px;
    height: 150px;
    margin-left: 50px;
    background: rgb(255, 255, 255);
    border: none;
}

.hero-texts p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-left: 70px;
    position: relative;
    bottom: 180px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-left: 70px;
    position: relative;
    bottom: 180px;
}

.hero-buttons button {
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.hero-buttons button:first-child {
    background: white;
    color: black;
}

.hero-buttons button:first-child:hover {
    background: #333;
    color: white;
}

.hero-buttons button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero-buttons button.secondary:hover {
    background: white;
    color: black;
}

/* Sticky Job Navigation Bar */
.sticky-job-nav {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 100;
    padding: 15px 0;
}

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

.search-section {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 250px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #003366;
}

.filter-dropdown {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    background: white;
    font-size: 1rem;
    min-width: 150px;
}

.search-btn {
    padding: 12px 25px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.search-btn:hover {
    background: #1a4d80;
}

/* Main Jobs Layout */
.jobs-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Jobs Sidebar */
.jobs-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sidebar-section h3 {
    color: #003366;
    margin-bottom: 20px;
    font-size: 1.3rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #003366;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: #003366;
    color: white;
    transform: translateX(5px);
}

.sidebar-link i {
    color: #003366;
    transition: color 0.3s ease;
}

.sidebar-link:hover i {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #003366;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1a4d80;
    transform: translateY(-3px);
}

.help-btn {
    width: 100%;
    padding: 15px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
}

.help-btn:hover {
    background: #1a4d80;
}

/* Jobs Content */
.jobs-content {
    animation: fadeIn 1s ease;
}

.content-section {
    margin-bottom: 80px;
}

.section-title {
    color: #003366;
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #003366;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Job Categories */
.job-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-header {
    padding: 25px 30px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.category-header:hover {
    background: #e9ecef;
}

.category-header h3 {
    color: #003366;
    margin: 0;
    font-size: 1.3rem;
}

.category-header i {
    color: #003366;
    transition: transform 0.3s ease;
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.category-content.active {
    max-height: 1000px;
}

.job-role {
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.job-role:hover {
    background: #f8f9fa;
}

.job-role:last-child {
    border-bottom: none;
}

.job-role h4 {
    color: #003366;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.job-role p {
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.role-link {
    color: #003366;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.role-link:hover {
    color: #1a4d80;
}

/* Featured Careers */
.featured-strip {
    background: linear-gradient(135deg, #003366 0%, #1a4d80 100%);
    border-radius: 15px;
    padding: 40px;
    color: white;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.featured-btn {
    padding: 12px 30px;
    background: white;
    color: #003366;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

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

.featured-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.featured-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

/* Application Form */
.application-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

.form-group label {
    color: #003366;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #003366;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #1a4d80;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .jobs-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .jobs-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .jobs-sidebar {
        position: static;
        order: 2;
    }
    
    .jobs-content {
        order: 1;
    }
    
    .featured-strip {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .search-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-input,
    .filter-dropdown,
    .search-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px;
        text-align: center;
    }
    
    .hero-texts {
        align-items: center;
    }
    
    .hero-section hr {
        height: 80px;
        margin: 20px auto;
    }
    
    .hero-texts p,
    .hero-buttons {
        margin-left: 0;
        position: static;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .application-form {
        padding: 30px 20px;
    }
    
    .category-header {
        padding: 20px;
    }
    
    .job-role {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .featured-strip {
        padding: 30px 20px;
    }
    
    .featured-content h3 {
        font-size: 1.5rem;
    }
    
    .category-header h3 {
        font-size: 1.1rem;
    }
}