/* Careers Hero Section */
.hero.careers-hero {
    background: linear-gradient(rgba(40, 170, 225, 0.1), rgba(40, 170, 225, 0.05));
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero.careers-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../photos/pattern-dots.svg');
    background-size: 20px;
    opacity: 0.15;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero.careers-hero h1 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 2.8rem;
    line-height: 1.2;
}

.hero.careers-hero .hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero.careers-hero .hero-description {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255,255,255,0.8);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.hero-badge:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-badge:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-badge:nth-child(3) {
    animation-delay: 0.6s;
}

.badge-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.badge-text {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 1rem;
    background-color: var(--background-color);
}

.benefits-grid {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

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

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Opportunities Section */
.opportunities-section {
    padding: 4rem 1rem;
    background-color: var(--light-background);
    text-align: center;
}

.roles-grid {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.role-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

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

.role-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.role-card p {
    color: var(--light-text);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 1rem;
    background-color: var(--background-color);
    text-align: center;
}

.testimonials-grid, .testimonial-card {
    all: unset;
}

/* Apply Section */
.apply-section {
    padding: 4rem 1rem;
    background-color: var(--light-background);
    text-align: center;
}

.steps-grid {
    max-width: 1200px;
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

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

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Talent Community Section */
.talent-community {
    padding: 4rem 1rem;
    background-color: var(--background-color);
    text-align: center;
}

.talent-community p {
    max-width: 600px;
    margin: 1rem auto 2rem;
    color: var(--light-text);
}

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

.benefit-card,
.role-card,
.testimonial-card,
.step-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-card:nth-child(2),
.role-card:nth-child(2),
.testimonial-card:nth-child(2),
.step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3),
.role-card:nth-child(3),
.step-card:nth-child(3) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(4),
.role-card:nth-child(4),
.step-card:nth-child(4) {
    animation-delay: 0.6s;
}

.benefit-card:nth-child(5) {
    animation-delay: 0.8s;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content {
        max-width: 95vw;
    }

    .service-card {
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .hero.careers-hero {
        padding: 3rem 0.5rem;
    }

    .service-card {
        min-width: 220px;
    }

    .hero-badges {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 0.5rem;
    }

    .service-card {
        min-width: 180px;
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .benefit-card,
    .role-card,
    .testimonial-card,
    .step-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--border-color);
    }

    .cta-button {
        display: none;
    }
}

/* Staff Testimonials Carousel - Match Home Page Participant Stories */
.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto 2rem;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    background-color: var(--light-background);
    padding: 2rem;
    border-radius: var(--border-radius);
    position: relative;
    margin: 0 1rem;
    min-width: calc(100% - 2rem);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 10px rgba(40, 170, 225, 0.1);
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--primary-color);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: var(--primary-color);
    color: white;
}

.carousel-arrow.prev {
    left: 10px;
}

.carousel-arrow.next {
    right: 10px;
}

/* Staff Stories Grid (Staff Stories Subpage) */
.staff-stories-grid {
    max-width: 1200px;
    margin: 2.5rem auto 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.staff-story-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(40, 170, 225, 0.10);
    border: 1px solid var(--border-color);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 320px;
}

.staff-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 24px rgba(40, 170, 225, 0.15);
}

.staff-story-card blockquote {
    color: var(--text-color);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: normal;
}

.staff-story-meta {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.05rem;
    margin-top: auto;
    letter-spacing: 0.01em;
}

.staff-story-meta span {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .staff-stories-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
    .staff-story-card {
        padding: 1.2rem 0.8rem 1rem 0.8rem;
    }
}

/* How to Apply Steps - 2 Column Grid */
.steps-grid.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
}

@media (max-width: 800px) {
    .steps-grid.two-col {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
} 