/* ============================================
DGROWW CAREERS PAGE - PREMIUM CSS
============================================ */

/* ---- CAREERS HERO SECTION ---- */
.careers-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f1419 0%, #1a2540 50%, #162e4d 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.careers-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.careers-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.careers-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-hero .hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.careers-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.careers-hero .hero-mission {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.careers-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.careers-hero .hero-buttons .btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
}

/* ---- WHY WORK AT DGROWW SECTION ---- */
.why-work-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-green) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
}

.highlight-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
}

.highlight-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--accent-green), #f59e0b);
}

.highlight-card:nth-child(4)::before {
    background: linear-gradient(90deg, #f59e0b, var(--primary-blue));
}

.highlight-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.highlight-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.highlight-card h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---- WORK ON SECTION ---- */
.work-on-section {
    padding: 100px 0;
    background: var(--white);
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem 2rem;
    border-radius: 14px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.project-card p {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
}

.projects-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 2rem;
}

/* ---- PROGRESSION SECTION ---- */
.progression-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, var(--light-bg) 100%);
}

.progression-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.progression-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 50%, transparent 100%);
    pointer-events: none;
    display: none;
}

.progression-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.progression-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.progression-step h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.progression-step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---- LOOKING FOR SECTION ---- */
.looking-for-section {
    padding: 100px 0;
    background: var(--white);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.criteria-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 2.5rem 2rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary-blue);
}

.criteria-card:nth-child(2) {
    border-left-color: var(--accent-cyan);
}

.criteria-card:nth-child(3) {
    border-left-color: var(--accent-green);
}

.criteria-card:nth-child(4) {
    border-left-color: #f59e0b;
}

.criteria-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.criteria-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.criteria-card p {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
}

/* ---- OFFER SECTION ---- */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2540 50%, #162e4d 100%);
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.offer-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.offer-section .section-header {
    position: relative;
    z-index: 1;
}

.offer-section .section-title {
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    transition: var(--transition);
}

.offer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
    opacity: 0;
    transition: opacity var(--transition);
}

.offer-card:nth-child(2)::after {
    background: linear-gradient(90deg, var(--accent-green), #f59e0b);
}

.offer-card:nth-child(3)::after {
    background: linear-gradient(90deg, #f59e0b, #ec4899);
}

.offer-card:nth-child(4)::after {
    background: linear-gradient(90deg, #ec4899, var(--primary-blue));
}

.offer-card:nth-child(5)::after {
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
}

.offer-card:hover::after {
    opacity: 1;
}

.offer-card:hover::before {
    top: -25%;
    left: -25%;
}

.offer-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.offer-card:nth-child(2) .offer-icon {
    animation-delay: 0.2s;
}

.offer-card:nth-child(3) .offer-icon {
    animation-delay: 0.4s;
}

.offer-card:nth-child(4) .offer-icon {
    animation-delay: 0.6s;
}

.offer-card:nth-child(5) .offer-icon {
    animation-delay: 0.8s;
}

.offer-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.offer-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.culture-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.05) 50%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.culture-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.culture-highlight::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.culture-highlight h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.culture-highlight p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.culture-highlight strong {
    color: var(--accent-green);
    font-weight: 700;
}

/* ---- FAQ SECTION ---- */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2.5rem;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary-blue);
}

.faq-card:nth-child(2) {
    border-left-color: var(--accent-cyan);
}

.faq-card:nth-child(3) {
    border-left-color: var(--accent-green);
}

.faq-card:nth-child(4) {
    border-left-color: #f59e0b;
}

.faq-card:nth-child(5) {
    border-left-color: #ec4899;
}

.faq-card:nth-child(6) {
    border-left-color: var(--primary-blue);
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.faq-card h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.faq-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---- FINAL CTA SECTION ---- */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-navy) 50%, #162e4d 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.final-cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta-buttons .btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    background: var(--white);
    color: var(--primary-blue);
    transition: var(--transition);
}

.final-cta-buttons .btn:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 1024px) {
    .progression-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 80px 0 60px;
    }

    .careers-hero .hero-title {
        font-size: 2rem;
    }

    .careers-hero .hero-subtitle {
        font-size: 1.4rem;
    }

    .careers-hero .hero-description {
        font-size: 1rem;
    }

    .careers-hero .hero-mission {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .highlights-grid,
    .projects-grid,
    .criteria-grid,
    .offer-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .progression-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .culture-highlight {
        padding: 2rem 1.5rem;
    }

    .culture-highlight h3 {
        font-size: 1.5rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .final-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .careers-hero {
        padding: 60px 0 40px;
    }

    .careers-hero .hero-title {
        font-size: 1.6rem;
    }

    .careers-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .highlight-card,
    .project-card,
    .progression-step,
    .criteria-card,
    .offer-card,
    .faq-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .offer-card {
        min-height: 280px;
    }

    .highlight-icon,
    .project-icon,
    .criteria-icon,
    .offer-icon {
        font-size: 2.5rem;
    }

    .progression-timeline {
        grid-template-columns: 1fr;
    }

    .final-cta-section h2 {
        font-size: 1.6rem;
    }

    .final-cta-section p {
        font-size: 1rem;
    }
}

/* ---- ANIMATIONS ---- */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-card,
.project-card,
.progression-step,
.criteria-card,
.offer-card,
.faq-card {
    animation: slideInUp 0.6s ease-out;
}

.highlight-card:nth-child(2) {
    animation-delay: 0.1s;
}

.highlight-card:nth-child(3) {
    animation-delay: 0.2s;
}

.highlight-card:nth-child(4) {
    animation-delay: 0.3s;
}
