/* Careers Page Styles */

/* Hero Section */

.hero-section-careers {
    position: relative;
    background-image: url('https://quimbaya-tours.com/wp-content/uploads/2024/03/CULTURE-TRADITIONS-AU-COEUR-DES-ANDES.webp');
    background-size: cover;
    background-position: center;
    min-height: 546px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://quimbaya-tours.com/wp-content/uploads/2024/03/CULTURE-TRADITIONS-AU-COEUR-DES-ANDES.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Benefits Section */
.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 35px;
    font-weight: 700;
    font-style: normal;
    color: #484848;
}

.section-subtitle {
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.benefits-section {
    background-color: #ffffff;
}

.benefit-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    line-height: 33px;
    color: #000;
}

.benefit-card p {
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

/* Jobs Section */
.jobs-section {
    background-color: #f8f9fa;
}

.category-header {
    margin-bottom: 30px;
}

.category-header h3 {
    color: #41a1ce;
    white-space: nowrap;
    padding-right: 20px;
}

.category-header hr {
    border-color: #41a1ce;
    opacity: 0.3;
}

.position-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.position-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.position-card h4 {
    color: #333;
    margin-bottom: 15px;
}

.position-card p {
    color: #666;
    flex-grow: 1;
    margin-bottom: 20px;
}

.position-card .btn {
    align-self: flex-start;
}

/* Team Section */
.team-section {
    background: white;
}

.team-section .section-title {
    font-size: 22px;
}

.team-section-text {
    gap: 20px
}

.team-section p {
    text-align: left;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.team-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
}

/* Responsive Design */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: white;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #41a1ce;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341a1ce'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341a1ce'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 25px;
    background-color: #fafafa;
}

.position-details h5 {
    color: #41a1ce;
    margin-bottom: 20px;
}

.position-details h6 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.position-details ul {
    padding-left: 20px;
}

.position-details li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
}
@media (max-width: 991px) {
    .category-header {
        flex-wrap: wrap;
    }

    .category-header h3 {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        min-height: 0;
        padding-top: 60px;
        padding-bottom: 115px;
    }

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

    .benefit-icon i {
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 20px;
    }

    .hero-wave svg {
        height: 80px;
    }
}

@media (max-width: 575px) {
    .benefit-card h3 {
        font-size: 0.9rem;
    }

    .position-card {
        padding: 20px;
    }
}

/* Accordion Styles */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: white;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #41a1ce;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341a1ce'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2341a1ce'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 25px;
    background-color: #fafafa;
}

.position-details h5 {
    color: #41a1ce;
    margin-bottom: 20px;
}

.position-details h6 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.position-details ul {
    padding-left: 20px;
}

.position-details li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #666;
}
