/* ===================================================
   STANDARD ZONE TECHNOLOGIES - CAREERS PAGE STYLES
   =================================================== */

/* ===================== CAREER HERO VISUAL ===================== */
.career-hero-visual {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chv-main {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 90px;
    box-shadow: 0 20px 60px rgba(13, 71, 161, 0.4);
    position: relative;
    z-index: 2;
    animation: csPulse 3s ease-in-out infinite;
}

.chv-main::before,
.chv-main::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(13, 71, 161, 0.3);
    animation: pulseRing 2.5s infinite;
}

.chv-main::after {
    animation-delay: 1.25s;
}

.chv-card {
    position: absolute;
    background: var(--white);
    padding: 15px 22px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-color);
    animation: floatAnim 4s ease-in-out infinite;
    z-index: 3;
}

.chv-card i {
    font-size: 22px;
}

.chv-card-1 {
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}
.chv-card-1 i { color: var(--primary-color); }

.chv-card-2 {
    top: 15%;
    right: 5%;
    animation-delay: 1s;
}
.chv-card-2 i { color: var(--accent-color); }

.chv-card-3 {
    bottom: 15%;
    left: 8%;
    animation-delay: 2s;
}
.chv-card-3 i { color: #2e7d32; }

.chv-card-4 {
    bottom: 8%;
    right: 8%;
    animation-delay: 3s;
}
.chv-card-4 i { color: #c62828; }

/* ===================== BENEFIT CARDS ===================== */
.benefits-section {
    position: relative;
    overflow: hidden;
}

.benefit-card {
    background: var(--white);
    padding: 35px 28px;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.05;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.benefit-card:hover::before {
    transform: scale(2.5);
    opacity: 0.08;
}

.benefit-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: var(--white);
    margin: 0 auto 22px;
    box-shadow: 0 10px 25px rgba(13, 71, 161, 0.35);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-accent);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.4);
    transform: rotateY(360deg);
}

.benefit-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ===================== POSITION CARDS ===================== */
.positions-section {
    position: relative;
}

.position-card {
    background: var(--white);
    padding: 32px 30px;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.position-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.position-card:hover::before {
    transform: scaleY(1);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.position-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.12) 0%, rgba(25, 118, 210, 0.12) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.position-card:hover .position-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotate(-10deg) scale(1.05);
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.tag {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-time {
    background: rgba(46, 125, 50, 0.12);
    color: #2e7d32;
}

.tag-level {
    background: rgba(255, 111, 0, 0.12);
    color: var(--accent-color);
}

.position-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    transition: var(--transition);
}

.position-card:hover h4 {
    color: var(--primary-color);
}

.position-card > p {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.position-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.pm-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

.pm-item i {
    color: var(--primary-color);
    font-size: 14px;
}

.position-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    flex-wrap: wrap;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.position-skills span {
    background: #f0f4f8;
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.position-skills span:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.position-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 15px rgba(13, 71, 161, 0.3);
}

.position-apply:hover {
    background: var(--gradient-accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 111, 0, 0.4);
}

.position-apply i {
    transition: var(--transition);
}

.position-apply:hover i {
    transform: translateX(4px);
}

/* Outline button variant */
.btn-outline-primary-custom {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary-custom:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.35);
}

/* ===================== INTERNSHIP SECTION ===================== */
.internship-section {
    position: relative;
    overflow: hidden;
}

.internship-visual {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iv-card-main {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(13, 71, 161, 0.4);
    width: 320px;
    z-index: 2;
    position: relative;
}

.iv-card-main i {
    font-size: 70px;
    margin-bottom: 18px;
    display: block;
}

.iv-card-main h4 {
    color: var(--white);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.iv-card-main p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 15px;
}

.iv-stat {
    position: absolute;
    background: var(--white);
    padding: 18px 24px;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 3;
    animation: floatAnim 4s ease-in-out infinite;
    min-width: 110px;
}

.iv-stat strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.iv-stat span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.iv-stat-1 {
    top: 8%;
    left: 0;
    animation-delay: 0s;
}

.iv-stat-2 {
    top: 8%;
    right: 0;
    animation-delay: 1.5s;
}

.iv-stat-3 {
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

/* Internship Features */
.internship-features {
    margin-top: 30px;
}

.if-item {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    padding: 18px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.if-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.if-item i {
    font-size: 28px;
    color: #2e7d32;
    flex-shrink: 0;
    margin-top: 3px;
    transition: var(--transition);
}

.if-item:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.if-item h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.if-item p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ===================== APPLICATION PROCESS ===================== */
.application-section {
    position: relative;
    overflow: hidden;
}

.app-step {
    background: var(--white);
    padding: 40px 25px 35px;
    border-radius: 22px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.app-step::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.06;
    transition: var(--transition);
}

.app-step:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.app-step:hover::before {
    transform: scale(2);
    opacity: 0.1;
}

.app-step-number {
    position: absolute;
    top: 15px;
    right: 22px;
    width: 38px;
    height: 38px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 6px 15px rgba(255, 111, 0, 0.4);
    z-index: 2;
}

.app-step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin: 0 auto 22px;
    box-shadow: 0 10px 25px rgba(13, 71, 161, 0.35);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.app-step:hover .app-step-icon {
    background: var(--gradient-accent);
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.4);
    transform: rotateY(360deg);
}

.app-step h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.app-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Connection lines between steps on large screens */
@media (min-width: 992px) {
    .app-step::after {
        content: '→';
        position: absolute;
        top: 50%;
        right: -25px;
        transform: translateY(-50%);
        font-size: 28px;
        color: var(--primary-color);
        font-weight: 700;
        z-index: 3;
        opacity: 0.6;
    }

    .col-lg-3:last-child .app-step::after {
        display: none;
    }
}

/* ===================== FAQ SECTION ===================== */
.faq-section {
    position: relative;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.faq-question {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.04) 0%, rgba(255, 111, 0, 0.04) 100%);
}

.faq-question h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    flex-grow: 1;
    transition: var(--transition);
}

.faq-item.active .faq-question h5 {
    color: var(--primary-color);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: rgba(13, 71, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 28px 25px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.8;
    margin: 0;
}

/* ===================== RESPONSIVE STYLES ===================== */
@media (max-width: 991px) {
    .career-hero-visual {
        height: 400px;
        margin-top: 40px;
    }

    .chv-main {
        width: 170px;
        height: 170px;
        font-size: 75px;
    }

    .chv-card {
        padding: 12px 18px;
        font-size: 13px;
    }

    .chv-card i {
        font-size: 18px;
    }

    .benefit-card {
        padding: 30px 22px;
    }

    .position-card {
        padding: 28px 25px;
    }

    .position-card h4 {
        font-size: 20px;
    }

    .internship-visual {
        min-height: 380px;
        margin-bottom: 30px;
    }

    .iv-card-main {
        padding: 40px 30px;
        width: 280px;
    }

    .iv-card-main i {
        font-size: 60px;
    }

    .iv-card-main h4 {
        font-size: 22px;
    }

    .iv-stat {
        padding: 14px 20px;
        min-width: 100px;
    }

    .iv-stat strong {
        font-size: 20px;
    }

    .app-step {
        padding: 35px 22px 30px;
    }
}

@media (max-width: 767px) {
    .career-hero-visual {
        height: 350px;
    }

    .chv-main {
        width: 140px;
        height: 140px;
        font-size: 60px;
    }

    .chv-card {
        padding: 10px 14px;
        font-size: 12px;
        gap: 8px;
    }

    .chv-card i {
        font-size: 16px;
    }

    .benefit-card {
        padding: 28px 20px;
    }

    .benefit-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .benefit-card h4 {
        font-size: 17px;
    }

    .position-card {
        padding: 25px 20px;
    }

    .position-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    .position-card h4 {
        font-size: 18px;
    }

    .position-meta {
        gap: 10px;
    }

    .pm-item {
        font-size: 12px;
    }

    .position-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .position-apply {
        text-align: center;
        justify-content: center;
    }

    .iv-card-main {
        padding: 35px 25px;
        width: 250px;
    }

    .iv-card-main i {
        font-size: 50px;
    }

    .iv-card-main h4 {
        font-size: 20px;
    }

    .iv-stat {
        padding: 12px 16px;
        min-width: 90px;
    }

    .iv-stat strong {
        font-size: 18px;
    }

    .iv-stat span {
        font-size: 10.5px;
    }

    .if-item {
        padding: 15px;
        gap: 14px;
    }

    .if-item i {
        font-size: 24px;
    }

    .if-item h6 {
        font-size: 15px;
    }

    .if-item p {
        font-size: 13px;
    }

    .app-step {
        padding: 32px 20px 28px;
    }

    .app-step-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .app-step h4 {
        font-size: 16px;
    }

    .faq-question {
        padding: 18px 20px;
        gap: 15px;
    }

    .faq-question h5 {
        font-size: 15px;
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 13.5px;
    }
}

@media (max-width: 575px) {
    .career-hero-visual {
        height: 320px;
    }

    .chv-main {
        width: 120px;
        height: 120px;
        font-size: 50px;
    }

    .position-header {
        flex-direction: column;
        gap: 12px;
    }

    .position-tags {
        justify-content: flex-start;
    }

    .iv-card-main {
        width: 220px;
        padding: 30px 22px;
    }

    .iv-stat {
        padding: 10px 14px;
        min-width: 80px;
    }
}