/* ============================================
   CAREER CTA & MODAL - PREMIUM REDESIGN
============================================ */

:root {
    --hc-navy: #001f49;
    --hc-sky: #00aeef;
    --hc-green: #10b981;
    --text-navy: #001f49;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --radius-lg: 16px;
    --radius-md: 8px;
    }

/* --- CTA Section --- */
    .career-cta-title {
        font-size: 1.75rem;
    font-weight: 700;
    color: var(--hc-navy);
        margin-bottom: 1.5rem;
    }

    .modern-career-btn {
        display: inline-flex;
        align-items: center;
    gap: 0.75rem;
    background: var(--hc-navy);
    color: #fff;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px; /* Harcourts Sharp style */
    transition: all 0.3s ease;
    }

    .modern-career-btn:hover {
    background: var(--hc-sky);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 31, 73, 0.15);
    }

/* --- Modal Base --- */
    .modern-career-modal {
    max-width: 800px;
    }

    .modern-career-modal-content {
        border: none;
    border-radius: 4px; /* Sharp style */
    box-shadow: 0 25px 50px rgba(0, 31, 73, 0.2);
        overflow: hidden;
    }

    .modern-career-modal-header {
    background: #fff;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    }

    .modern-career-modal-title {
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--hc-sky);
    margin: 0 0 5px;
}

.modal-subtitle {
        font-size: 1.125rem;
    font-weight: 700;
    color: var(--hc-navy);
        margin: 0;
    }

    .modern-career-btn-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    }

/* --- Career Tabs --- */
    .career-tabs-wrapper {
        display: flex;
    gap: 10px;
    background: var(--bg-light);
    padding: 6px;
    border-radius: 4px;
    margin-bottom: 2rem;
    }

    .modern-career-tab {
        flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: none;
        background: transparent;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 14px;
    border-radius: 3px;
    transition: all 0.2s;
}

.modern-career-tab i { font-size: 18px; }

    .modern-career-tab.active {
    background: #fff;
    color: var(--hc-navy);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

/* --- Career Cards --- */
    .modern-career-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.card-visual {
    background: var(--hc-navy);
    color: #fff;
        display: flex;
        flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    }

.card-franchise .card-visual {
    background: var(--hc-green);
    }

.career-icon-main {
    font-size: 3rem;
    margin-bottom: 15px;
}

.visual-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    }

.card-main-info {
    padding: 2.5rem;
    }

    .career-card-title {
        font-size: 1.5rem;
    font-weight: 800;
    color: var(--hc-navy);
    margin-bottom: 10px;
    }

.career-card-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
    }

/* --- Benefits Grid --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 2rem;
    }

.benefit-item {
    display: flex;
    gap: 12px;
    }

.benefit-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    color: var(--hc-sky);
    border-radius: 4px;
        display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    }

.card-franchise .benefit-icon {
    color: var(--hc-green);
}

.benefit-text strong {
    display: block;
    font-size: 13px;
    color: var(--hc-navy);
    margin-bottom: 2px;
    }

.benefit-text span {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
    display: block;
    }

/* --- Stats & Extra --- */
.career-stats-mini {
        display: flex;
    gap: 20px;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-bottom: 2rem;
    }

.stat-mini {
        display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.stat-mini i { color: var(--hc-sky); }

.academy-highlight {
    background: #fffbeb;
    color: #92400e;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    border: 1px solid #fef3c7;
    }

.academy-highlight i { color: #f59e0b; }

/* --- Footer Buttons --- */
.btn-career-action {
        display: inline-flex;
        align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-weight: 800;
    font-size: 14px;
        text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s;
    }

.btn-career-action.navy {
    background: var(--hc-navy);
    color: #fff;
        }

.btn-career-action.green {
    background: var(--hc-green);
    color: #fff;
        }

.btn-career-action:hover {
    transform: translateX(5px);
    opacity: 0.9;
        }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991px) {
        .modern-career-card {
        grid-template-columns: 1fr;
        }

    .card-visual {
            flex-direction: row;
        padding: 1.5rem;
        gap: 20px;
        justify-content: flex-start;
        }

    .career-icon-main {
        font-size: 2rem;
        margin-bottom: 0;
        }
    }

@media (max-width: 767px) {
    .modern-career-modal-header { padding: 1.25rem; }
    .card-main-info { padding: 1.5rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .career-card-title { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .career-tabs-wrapper { flex-direction: column; }
    .modern-career-btn { width: 100%; justify-content: center; }
    }
