/* Hero Section */
.careers-hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.orange-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background-color: rgba(255, 102, 0, 0.08);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: -1;
}

.enso-background {
    position: absolute;
    width: 800px;
    height: 800px;
    opacity: 0.1;
    bottom: -400px;
    left: -200px;
    z-index: -1;
}

.careers-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.careers-hero-text {
    flex: 1;
}

.hero-tagline {
    color: #ff6600;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #333;
}

.hero-title span {
    color: #ff6600;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
    max-width: 600px;
}

.careers-hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.careers-hero-image img {
    max-width: 100%;
    height: auto;
}

/* Why Join Us Section */
.why-join-us {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.why-join-us-container {
    max-width: 1200px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #ff6600;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.section-title span {
    color: #ff6600;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.benefit-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.benefit-card-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Culture Section */
.culture-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.culture-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.culture-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background-color: rgba(255, 102, 0, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.culture-enso {
    position: absolute;
    width: 700px;
    height: 700px;
    opacity: 0.08;
    bottom: -300px;
    left: -150px;
}

.culture-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.culture-content {
    flex: 1;
}

.culture-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.culture-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.culture-value h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.culture-value p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
}

.culture-cta {
    display: inline-block;
    background-color: #ff6600;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.culture-cta:hover {
    background-color: #e65c00;
}

.culture-image {
    flex: 1;
    position: relative;
}

.culture-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.culture-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 40px;
    left: 40px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 8px;
    z-index: 0;
}

/* Open Positions Section */
.open-positions {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.positions-container {
    max-width: 1200px;
}

.position-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: 2px solid #ddd;
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.position-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.position-card:hover {
    transform: translateY(-5px);
}

.position-details {
    margin-bottom: 20px;
}

.position-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.position-location,
.position-type {
    font-size: 15px;
    color: #666;
    margin-bottom: 5px;
}

.position-description {
    margin-bottom: 20px;
}

.position-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.position-requirements {
    padding-left: 20px;
    margin-bottom: 25px;
}

.position-requirements li {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 8px;
}

.position-link {
    align-self: flex-start;
    display: inline-block;
    color: #ff6600;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.position-link:hover {
    color: #e65c00;
    text-decoration: underline;
}

.positions-note {
    margin-top: 50px;
    text-align: center;
}

.positions-note p {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.positions-note-cta {
    display: inline-block;
    color: #ff6600;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.positions-note-cta:hover {
    color: #e65c00;
    text-decoration: underline;
}

/* Application Process Section */
.application-process {
    padding: 100px 0;
}

.process-container {
    max-width: 1000px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #ff6600;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.testimonials-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background-color: rgba(255, 102, 0, 0.05);
    border-radius: 50%;
    bottom: -300px;
    right: -200px;
}

.testimonials-enso {
    position: absolute;
    width: 700px;
    height: 700px;
    opacity: 0.08;
    top: -300px;
    left: -150px;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author-position,
.testimonial-author-tenure {
    font-size: 14px;
    color: #666;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.slider-prev,
.slider-next {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    color: #ff6600;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background-color: #ff6600;
}

/* Apply CTA Section */
.apply-cta {
    padding: 100px 0;
}

.apply-cta-container {
    position: relative;
    background-color: #ff6600;
    border-radius: 12px;
    padding: 60px;
    overflow: hidden;
}

.apply-cta-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.apply-cta-shape-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -50px;
}

.apply-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.apply-cta-text {
    flex: 1;
}

.apply-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.apply-cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.apply-cta-btn {
    display: inline-block;
    background-color: #fff;
    color: #ff6600;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.apply-cta-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .benefits-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }

    .careers-hero-content,
    .culture-container {
        flex-direction: column;
        gap: 40px;
    }

    .careers-hero-image,
    .culture-image {
        justify-content: center;
    }

    .culture-values {
        grid-template-columns: 1fr;
    }

    .apply-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .benefits-cards {
        grid-template-columns: 1fr;
    }

    .position-filters {
        flex-wrap: wrap;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        margin-bottom: 16px;
    }

    .apply-cta-container {
        padding: 40px 30px;
    }

    .apply-cta-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}

/* Career Form Section */
.career-form-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #ffffff;
}

.form-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.form-blob {
    position: absolute;
    width: 800px;
    height: 800px;
    background-color: rgba(255, 94, 21, 0.05);
    border-radius: 50%;
    top: -300px;
    right: -300px;
    transform: rotate(45deg);
}

.form-enso {
    position: absolute;
    width: 600px;
    height: 600px;
    bottom: -300px;
    left: -200px;
    opacity: 0.03;
    transform: rotate(-15deg);
}

.career-form-wrapper {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
}

.career-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4;
}

.form-submit {
    margin-top: 10px;
    text-align: center;
}

.submit-btn {
    background-color: #FF5E15;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #e65512;
    transform: translateY(-2px);
}

.form-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

/* Responsive styles */
@media (max-width: 992px) {
    .career-form-wrapper {
        padding: 40px 30px;
    }
}