/* ========================
   Careers Page Styles
   ======================== */

/* Hero Section */
.careers-hero-section {
    background-color: #f6f6f6;
    padding: 140px 5vw 120px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.careers-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.careers-hero-heading {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 400;
    color: #2D3136;
    line-height: 1.1;
    margin: 0 0 60px 0;
}

.careers-green-word {
    color: #39B15B;
}

.careers-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2D3136;
    line-height: 1.6;
    opacity: 0.7;
    margin: 0;
    max-width: 560px;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .careers-hero-heading {
        font-size: 40px;
    }

    .careers-hero-section {
        padding: 100px 5vw 80px;
    }
}

/* Open Positions Section */
.positions-section {
    background-color: #ffffff;
    padding: 100px 5vw;
}

.positions-container {
    max-width: 1300px;
    margin: 0 auto;
}

.positions-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.positions-title-dark {
    color: #2D3136;
}

.positions-title-green {
    color: #39B15B;
}

.positions-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2D3136;
    opacity: 0.6;
    margin: 0 0 48px 0;
    line-height: 1.6;
}

/* Filter Buttons */
.positions-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #2D3136;
    background-color: transparent;
    border: 1px solid rgba(45, 49, 54, 0.25);
    border-radius: 40px;
    padding: 10px 24px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover,
.filter-btn-active {
    background-color: #2D3136;
    color: #ffffff;
    border-color: #2D3136;
}

/* Positions List */
.positions-list {
    border: 1px solid rgba(45, 49, 54, 0.15);
}

.position-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(45, 49, 54, 0.15);
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.position-row:last-child {
    border-bottom: none;
}

.position-row:hover {
    background-color: #f6f6f6;
}

.position-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.position-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2D3136;
}

.position-row:hover .position-title {
    color: #39B15B;
}

.position-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.position-dept,
.position-loc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #2D3136;
    opacity: 0.5;
    display: flex;
    align-items: center;
    gap: 4px;
}

.position-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.position-tag {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #2D3136;
    border: 1px solid rgba(45, 49, 54, 0.25);
    border-radius: 40px;
    padding: 6px 18px;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.position-row:hover .position-tag {
    background-color: #2D3136;
    color: #ffffff;
    border-color: #2D3136;
}

/* Arrow Button */
.arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(45, 49, 54, 0.25);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #2D3136;
    transition: transform 0.3s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, scale 0.3s ease;
    flex-shrink: 0;
}

.arrow-btn:hover,
.position-row:hover .arrow-btn {
    background-color: #2D3136;
    color: #ffffff;
    border-color: #2D3136;
    transform: rotate(45deg) scale(1.1);
}

/* Team Testimonials Section */
.testimonials-section {
    background-color: #f6f6f6;
    padding: 100px 5vw;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
}

.testimonials-heading {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    color: #2D3136;
    line-height: 1.15;
    margin: 0 0 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 48px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-photo-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    background-color: #e0e0e0;
}

.testimonial-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.testimonial-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #2D3136;
    margin: 0;
}

.testimonial-role {
    color: #39B15B;
}

.testimonial-quote {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #2D3136;
    opacity: 0.65;
    line-height: 1.65;
    margin: 0;
}

@media screen and (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits & Perks Section */
.benefits-section {
    background-color: #ffffff;
    padding: 100px 5vw;
}

.benefits-container {
    max-width: 1300px;
    margin: 0 auto;
}

.benefits-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    color: #2D3136;
    margin: 0 0 16px 0;
}

.benefits-title-green {
    color: #39B15B;
}

.benefits-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #2D3136;
    opacity: 0.6;
    margin: 0 0 60px 0;
    line-height: 1.6;
}

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

.benefit-card {
    border: 1px solid rgba(45, 49, 54, 0.15);
    padding: 36px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-icon-wrap {
    width: 44px;
    height: 44px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.benefit-name {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #2D3136;
    margin: 0;
}

.benefit-copy {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #2D3136;
    opacity: 0.6;
    line-height: 1.65;
    margin: 0;
}

@media screen and (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    background-color: #222222;
    padding: 100px 5vw;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-heading {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 1.15;
}

.cta-green {
    color: #B1D93C;
}

.cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #ffffff;
    opacity: 0.55;
    margin: 0 0 16px 0;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn-primary {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #2D3136;
    background-color: #B1D93C;
    border: none;
    border-radius: 40px;
    padding: 14px 32px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.cta-btn-primary:hover {
    background-color: #c5ed3e;
    transform: translateY(-1px);
}

.cta-btn-secondary {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 40px;
    padding: 14px 32px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.cta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
}