/* ==========================================================================
   HBR BUSINESS SCHOOL - CAREERS PORTAL DESIGN SYSTEM (FULL SUITE)
   ========================================================================== */

:root {
    /* Color Palette được yêu cầu */
    --primary: #063B3B;       /* nền chính */
    --primary-dark: #042F30;  /* header/footer */
    --green: #2E7D32;         /* màu thương hiệu */
    --green-light: #EAF5EE;   /* nền section */
    --white: #FFFFFF;
    --text: #123B29;

    /* Theme Tokens Aliases */
    --primary-navy: var(--primary);
    --primary-navy-dark: var(--primary-dark);
    --primary-navy-light: #0d5454;
    --accent-red: #ff3b30;
    --accent-red-hover: #e02820;
    --accent-blue: var(--green);
    --accent-cyan: #34d399;
    
    /* Neutral Colors */
    --bg-white: var(--white);
    --bg-light: var(--green-light);
    --bg-card: var(--white);
    --border-color: #cde4d5;
    --border-light: #e0f0e6;
    
    /* Typography Colors */
    --text-primary: var(--text);
    --text-secondary: #27523f;
    --text-muted: #4e7a67;
    --text-light: #7b9e8e;
    --text-white: var(--white);
    
    /* Box Shadows */
    --shadow-sm: 0 1px 3px rgba(4, 47, 48, 0.08), 0 1px 2px rgba(4, 47, 48, 0.04);
    --shadow-md: 0 4px 14px rgba(4, 47, 48, 0.1), 0 2px 6px rgba(4, 47, 48, 0.06);
    --shadow-lg: 0 12px 30px rgba(4, 47, 48, 0.14), 0 4px 10px rgba(4, 47, 48, 0.08);
    --shadow-glow: 0 0 20px rgba(46, 125, 50, 0.3);
    --shadow-float: 0 8px 24px rgba(4, 47, 48, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: 'Be Vietnam Pro', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: all var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.top-hotline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.top-hotline svg {
    color: var(--primary-navy);
    font-size: 14px;
}

.top-search-form {
    position: relative;
    width: 260px;
}

.top-search-input {
    width: 100%;
    padding: 6px 36px 6px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 13px;
    outline: none;
    background-color: var(--bg-light);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.top-search-input:focus {
    border-color: var(--primary-navy);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 2px rgba(0, 43, 73, 0.1);
}

.top-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-search-btn:hover {
    color: var(--primary-navy);
}

.top-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-navy);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.social-icon-btn:hover {
    transform: translateY(-2px);
    background-color: var(--primary-navy-light);
}

/* ==========================================================================
   MAIN NAVIGATION (ĐÃ THU NHỎ CHIỀU NGANG CÂN ĐỐI HÀI HÒA)
   ========================================================================== */
.main-navbar {
    height: 80px;
    background-color: var(--primary-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(4, 47, 48, 0.18);
    display: flex;
    align-items: center;
}

.header-container,
.navbar-inner {
    max-width: 100%;
    margin: 0;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 32px;
}

.brand-custom-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 2px;
    flex-shrink: 0;
}

.brand-title {
    color: var(--text-white);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.nav-link {
    color: #eaf5ee;
    font-size: 14.5px;
    font-weight: 600;
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: #ff6b6b;
}

.nav-link.active {
    color: #ff3b30 !important; /* Chữ in màu đỏ nổi bật khi được chọn */
    font-weight: 700;
}

.nav-link.active::after {
    display: none !important; /* Không gạch chân */
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    color: var(--text-white);
    font-size: 22px;
}

/* ==========================================================================
   HERO SECTION (BANNER CHIỀU RỘNG DÀI RỘNG RÃI)
   ========================================================================== */
.hero-section {
    background-color: var(--primary);
    padding: 24px 0 44px 0;
    position: relative;
}

.hero-section .container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Floating Filter Toolbar */
.floating-filter-card {
    background-color: var(--bg-white);
    border-radius: 24px;
    padding: 8px 10px 8px 24px;
    box-shadow: 0 8px 24px rgba(4, 47, 48, 0.18);
    margin-bottom: 24px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.filter-form-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.filter-group {
    flex: 1;
    position: relative;
}

.filter-group::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--border-color);
}

.filter-group:nth-child(3)::after {
    display: none;
}

.filter-select {
    width: 100%;
    padding: 10px 32px 10px 8px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    background-color: transparent;
    cursor: pointer;
    appearance: none;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%232E7D32' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.btn-filter-search {
    background-color: var(--green);
    color: var(--text-white);
    padding: 10px 26px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.btn-filter-search:hover {
    background-color: #1b5e20;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hero Content Grid */
.hero-content-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: stretch;
}

/* Category Sidebar Card */
.category-sidebar-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(4, 47, 48, 0.15);
}

.sidebar-category-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sidebar-cat-item svg {
    color: var(--text-muted);
    font-size: 13px;
    transition: transform var(--transition-fast);
}

.sidebar-cat-item:hover,
.sidebar-cat-item.active {
    background-color: var(--green-light);
    color: var(--green);
}

.sidebar-cat-item:hover svg,
.sidebar-cat-item.active svg {
    transform: translateX(3px);
    color: var(--green);
}

.sidebar-pagination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.pagination-controls {
    display: flex;
    gap: 6px;
}

.btn-page-nav {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--green-light);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-page-nav:hover:not(:disabled) {
    background-color: var(--green);
    color: var(--text-white);
    border-color: var(--green);
}

.btn-page-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Banner Slider Card */
.hero-banner-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(4, 47, 48, 0.2);
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

/* ==========================================================================
   ABOUT HBR BUSINESS SCHOOL SECTION
   ========================================================================== */
.about-section {
    background-color: var(--bg-white);
    padding: 60px 0;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
}

.about-logo-badge {
    background-color: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 36px 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-logo-badge svg {
    width: 100px;
    height: 108px;
    margin-bottom: 12px;
}

.about-logo-badge .badge-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-navy);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.about-info-col h2.section-heading-hbr {
    color: var(--primary-navy);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.about-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Stats Counter Grid / 3 Pillars */
.stats-counter-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-pill-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary-navy);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.stat-pill-desc {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

.stat-sub {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ==========================================================================
   VISION & MISSION BANNER (TẦM NHÌN & SỨ MỆNH)
   ========================================================================== */
.vision-mission-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #0d5454 100%);
    color: var(--text-white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(52, 211, 153, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.vision-leader-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(4, 47, 48, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.vision-leader-photo img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: top center;
}

.vision-content-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.quote-highlight {
    font-size: 24px;
    font-weight: 700;
    color: #eaf5ee;
    font-style: italic;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vision-block, .mission-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vision-block h3, .mission-block h3 {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.vision-block h3::after, .mission-block h3::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background-color: var(--accent-cyan);
    margin-top: 6px;
    border-radius: var(--radius-full);
}

.vision-block p, .mission-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #eaf5ee;
}

.vision-block strong, .mission-block strong {
    color: #ffffff;
    font-weight: 700;
}

/* ==========================================================================
   JOB CATEGORIES SECTION (DANH MỤC VIỆC LÀM HẤP DẪN)
   ========================================================================== */
.job-categories-section {
    padding: 60px 0 30px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.section-title-center {
    color: var(--primary-navy);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 36px;
    letter-spacing: 0.5px;
}

.category-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1040px;
    margin: 0 auto;
}

.category-pill-btn {
    background-color: var(--bg-white);
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.category-pill-btn:hover {
    border-color: var(--green);
    background-color: var(--green-light);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-pill-btn.active {
    background-color: var(--green);
    border-color: var(--green);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   JOB LISTINGS SECTION (CƠ HỘI LÀM VIỆC HẤP DẪN)
   ========================================================================== */
.job-openings-section {
    padding: 30px 0 60px 0;
    background-color: var(--bg-light);
}

.jobs-table-wrapper {
    background-color: transparent;
    max-width: 1080px;
    margin: 0 auto;
}

/* Table Header Row */
.jobs-table-header {
    background-color: var(--primary-dark);
    color: var(--text-white);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    display: grid;
    grid-template-columns: 2.2fr 1.8fr 1.2fr 1fr;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    align-items: center;
}

.jobs-table-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Job Row Card */
.job-row-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    display: grid;
    grid-template-columns: 2.2fr 1.8fr 1.2fr 1fr;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.job-row-card:hover {
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Job Title Cell */
.job-cell-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 16px;
}

.badge-hot {
    background-color: var(--accent-red);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.job-title-text {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.4;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.job-title-text:hover {
    color: var(--green);
    text-decoration: underline;
}

/* Salary Cell */
.job-cell-salary {
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
    padding-right: 16px;
}

/* Deadline Cell */
.job-cell-deadline {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    padding-right: 12px;
}

/* Action Cell */
.job-cell-action {
    display: flex;
    justify-content: flex-end;
}

.btn-apply-outline {
    background-color: var(--bg-white);
    color: var(--primary-navy);
    border: 1.5px solid var(--primary-navy);
    font-size: 13.5px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-apply-outline:hover {
    background-color: var(--green);
    color: var(--text-white);
    border-color: var(--green);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Empty state */
.no-jobs-found {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    border: 1px dashed var(--border-color);
}

/* Load more button */
.load-more-wrapper {
    text-align: center;
    margin-top: 32px;
}

.btn-load-more {
    background-color: var(--green);
    color: var(--text-white);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 48px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.btn-load-more:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   NEW SECTION 1: JOB ALERT SUBSCRIPTION BANNER
   ========================================================================== */
.job-alert-section {
    background-color: var(--bg-white);
    margin: 20px 0 60px 0;
}

.job-alert-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.job-alert-img-col {
    position: relative;
    height: 340px;
}

.job-alert-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-alert-cta-col {
    background-color: var(--primary-dark);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.job-alert-title {
    color: var(--text-white);
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
}

.btn-subscribe-job {
    background-color: var(--accent-red);
    color: var(--text-white);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.btn-subscribe-job:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.4);
}

/* ==========================================================================
   NEW SECTION 2: CAREER HANDBOOK (CẨM NANG NGHỀ NGHIỆP)
   ========================================================================== */
.career-guide-section {
    background: radial-gradient(circle at center, var(--primary) 0%, var(--primary-dark) 70%, #021a1b 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.career-guide-section .section-title-center {
    color: var(--text-white);
    margin-bottom: 50px;
}

.career-guide-interactive-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Holographic Illustration */
.career-guide-center-avatar {
    position: absolute;
    width: 260px;
    height: 320px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.center-holo-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px dashed rgba(52, 211, 153, 0.5);
    background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, transparent 70%);
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.center-advisor-svg {
    position: absolute;
    width: 140px;
    height: 180px;
    z-index: 3;
}

/* 5 Surrounding Cards Grid Layout */
.career-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 36px 320px;
    width: 100%;
    position: relative;
    z-index: 5;
}

.guide-feature-card {
    background: rgba(4, 47, 48, 0.8);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(52, 211, 153, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-normal);
    position: relative;
}

.guide-feature-card:hover {
    background: rgba(6, 59, 59, 0.95);
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.guide-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.guide-card-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.guide-card-title {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.guide-card-desc {
    font-size: 13.5px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-guide-view {
    align-self: flex-start;
    background-color: var(--bg-white);
    color: var(--primary-navy);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.btn-guide-view:hover {
    background-color: var(--green);
    color: var(--text-white);
}

/* 5th Card centered at bottom */
.guide-card-bottom-center {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
}

/* ==========================================================================
   NEW SECTION 3 & 4: WORKPLACE & SUCCESS STORIES VIDEO SLIDERS
   ========================================================================== */
.story-split-section {
    padding: 70px 0;
    background-color: var(--bg-white);
}

.story-split-section.alt-bg {
    background-color: var(--bg-light);
}

.story-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content-col h2.story-heading {
    color: var(--primary-navy);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.story-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Video Slider Container */
.video-slider-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: #000;
}

.video-thumb-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    opacity: 0.9;
    transition: transform var(--transition-normal);
}

.video-slider-box:hover .video-thumb-img {
    transform: scale(1.03);
}

/* Play Button Overlay */
.video-play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-fast);
    z-index: 3;
}

.video-play-overlay-btn:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--text-white);
    color: var(--accent-red);
}

/* Video Nav Arrows */
.video-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(4, 47, 48, 0.7);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 4;
    transition: all var(--transition-fast);
}

.video-nav-arrow:hover {
    background: var(--green);
    transform: translateY(-50%) scale(1.1);
}

.video-nav-prev { left: 12px; }
.video-nav-next { right: 12px; }

/* ==========================================================================
   NEW SECTION 5: WHY JOIN HBR TEAM (TẠI SAO PHẢI GIA NHẬP ĐỘI NGŨ HBR)
   ========================================================================== */
.why-join-section {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 70px 0;
}

.why-join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-join-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.why-join-photo img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.why-join-content h2.why-join-title {
    color: var(--text-white);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.why-join-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-text-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.4;
}

/* ==========================================================================
   NEW SECTION 6: CANDIDATE REGISTRATION BANNER FORM (ĐĂNG KÝ ỨNG TUYỂN)
   ========================================================================== */
.quick-apply-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 60px 0;
    position: relative;
}

.quick-apply-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.quick-apply-title {
    text-align: center;
    color: var(--primary-navy);
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.quick-apply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-submit-quick-apply {
    grid-column: 1 / -1;
    background-color: var(--green);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    padding: 14px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-top: 8px;
    transition: all var(--transition-fast);
}

.btn-submit-quick-apply:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (CALL, MESSENGER, BACK TO TOP)
   ========================================================================== */
.floating-contact-widgets {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 990;
}

.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    box-shadow: var(--shadow-float);
    font-size: 20px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.floating-btn-phone {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    animation: pulse-ring 2s infinite;
}

.floating-btn-messenger {
    background: linear-gradient(135deg, #00b2fe 0%, #006aff 100%);
}

.floating-btn-top {
    background-color: var(--primary-dark);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
}

.floating-btn-top.show {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--primary-dark);
    color: #cbd5e1;
    padding: 60px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: #94a3b8;
}

.footer-col-title {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--accent-red);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-item {
    font-size: 13.5px;
    color: #cbd5e1;
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-link-item:hover {
    color: var(--text-white);
    transform: translateX(4px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13.5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.footer-contact-item svg {
    margin-top: 3px;
    flex-shrink: 0;
    color: var(--accent-cyan);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}

/* ==========================================================================
   MODALS (APPLICATION FORM & JOB DETAILS & GUIDES & VIDEO)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 15, 30, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(0.98);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-header {
    background-color: var(--primary-navy);
    color: var(--text-white);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
}

.modal-close-btn {
    background: transparent;
    color: #cbd5e1;
    font-size: 22px;
    line-height: 1;
    padding: 4px;
}

.modal-close-btn:hover {
    color: var(--text-white);
}

.modal-body {
    padding: 24px;
}

/* Form Styles */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-label .required {
    color: var(--accent-red);
}

.form-input, .form-textarea, .form-select-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--text-primary);
    background-color: var(--bg-light);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-textarea:focus, .form-select-control:focus {
    border-color: var(--primary-navy);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 2px rgba(0, 43, 73, 0.1);
}

.file-upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 2px dashed #a3cfbb;
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    background-color: var(--green-light);
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.file-upload-box:hover {
    border-color: var(--green);
    background-color: #dcf0e4;
}

.file-upload-icon {
    font-size: 32px;
    color: var(--green);
    margin-bottom: 8px;
    line-height: 1;
}

.file-upload-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}

.file-upload-hint {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

.btn-primary {
    background-color: var(--primary-navy);
    color: var(--text-white);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-navy-light);
}

/* Detail Modal Specifics */
.job-detail-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.job-meta-pill {
    background-color: #f1f5f9;
    color: var(--primary-navy);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.job-detail-section {
    margin-bottom: 20px;
}

.job-detail-section h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.job-detail-section ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: var(--primary-navy);
    color: var(--text-white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    border-left: 4px solid var(--accent-cyan);
    animation: toast-in 0.3s ease;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   SPA MULTI-VIEW & SUB-PAGE STYLES
   ========================================================================== */
.app-view {
    display: none;
}

.app-view.active {
    display: block;
    animation: fadeInView 0.35s ease forwards;
}

@keyframes fadeInView {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subpage Header Banner */
.page-header-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #0d5454 100%);
    color: #ffffff;
    padding: 50px 0 45px 0;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(4, 47, 48, 0.2);
}

.page-header-banner .badge-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #34d399;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    border: 1px solid rgba(52, 211, 153, 0.4);
}

.page-header-banner h1 {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: #ffffff;
}

.page-header-banner p {
    font-size: 16px;
    color: #eaf5ee;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Subpage Content Wrapper */
.subpage-content-wrapper {
    padding: 50px 0 70px 0;
    background-color: var(--green-light);
}

/* 6 Benefits Pillar Grid */
.benefits-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 10px;
}

.benefit-card-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(4, 47, 48, 0.06);
    border: 1px solid var(--border-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.benefit-card-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(4, 47, 48, 0.12);
    border-color: var(--green);
}

.benefit-card-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #d1e7dd;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.benefit-card-box h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.benefit-card-box ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefit-card-box ul li {
    position: relative;
    padding-left: 18px;
}

.benefit-card-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
}

/* Articles Grid */
.articles-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(4, 47, 48, 0.06);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(4, 47, 48, 0.12);
}

.article-card-thumb {
    height: 190px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
    position: relative;
    overflow: hidden;
}

.article-card-thumb svg {
    width: 60px;
    height: 60px;
    opacity: 0.9;
}

.article-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-tag-pill {
    align-self: flex-start;
    background: var(--green-light);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.article-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.45;
    margin-bottom: 10px;
}

.article-card-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.btn-read-article {
    color: var(--green);
    font-weight: 700;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
}

.btn-read-article:hover {
    color: #1b5e20;
}

/* News Cards Grid */
.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.news-card-box {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(4, 47, 48, 0.06);
    border: 1px solid var(--border-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(4, 47, 48, 0.12);
}

.news-thumb-wrap {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.news-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card-box:hover .news-thumb-wrap img {
    transform: scale(1.05);
}

.news-body-wrap {
    padding: 20px;
}

.news-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.45;
    margin-bottom: 8px;
}

.news-desc {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* School Courses Grid */
.school-courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 20px;
}

.school-course-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(4, 47, 48, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.school-course-card:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: 0 12px 28px rgba(46, 125, 50, 0.12);
}

.school-course-card .course-badge {
    background: var(--green-light);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 12px;
}

.school-course-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.school-course-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.course-highlights-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13.5px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.course-highlights-list li {
    position: relative;
    padding-left: 20px;
}

.course-highlights-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #f59e0b;
}

/* Media Queries for Subpages */
@media (max-width: 1024px) {
    .benefits-detailed-grid,
    .articles-full-grid,
    .news-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .school-courses-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefits Invite Banner (Above Form - Khớp 100% ảnh mẫu) */
.benefits-invite-banner {
    position: relative;
    background: var(--primary-dark);
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px), radial-gradient(rgba(255, 255, 255, 0.04) 1.5px, var(--primary-dark) 1.5px);
    background-size: 28px 28px;
    background-position: 0 0, 14px 14px;
    border-radius: 16px;
    padding: 42px 30px;
    margin-top: 45px;
    margin-bottom: 30px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(4, 47, 48, 0.2);
}

.benefits-invite-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
}

.benefits-invite-text {
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
}

.btn-benefits-invite {
    display: inline-block;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 13px 34px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-benefits-invite:hover {
    background-color: var(--green);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    color: #ffffff;
}

/* Benefits Page Application Form Banner (Khớp 100% ảnh mẫu) */
.benefits-apply-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 50px;
    box-shadow: 0 15px 35px rgba(4, 47, 48, 0.25);
    background: var(--primary-dark) url('../assets/images/hbr_team_gala.jpg') center center / cover no-repeat;
}

.benefits-apply-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 47, 48, 0.94) 0%, rgba(6, 59, 59, 0.90) 100%);
}

.benefits-apply-content {
    position: relative;
    z-index: 2;
    padding: 40px 50px;
}

.benefits-apply-title {
    text-align: center;
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.benefits-apply-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}

.benefits-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benefits-form-field label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.benefit-apply-input,
.benefit-apply-select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14.5px;
    color: #1e293b;
    outline: none;
    transition: box-shadow 0.2s ease;
}

.benefit-apply-input:focus,
.benefit-apply-select:focus {
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.4);
}

.benefit-file-box {
    width: 100%;
    height: 48px;
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 8px 0 16px;
    cursor: pointer;
    justify-content: space-between;
}

.benefit-file-label-text {
    font-size: 14px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.benefit-btn-choose {
    background: #e2e8f0;
    color: #334155;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.benefit-btn-choose:hover {
    background: #cbd5e1;
}

.btn-benefit-submit {
    width: 100%;
    height: 48px;
    background-color: #e53935;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-benefit-submit:hover {
    background-color: #d32f2f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
}

@media (max-width: 768px) {
    .benefits-apply-content {
        padding: 30px 20px;
    }
    .benefits-apply-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .benefits-form-field.btn-field label {
        display: none;
    }
    .jobs-table-header {
        display: none;
    }
    .job-row-card {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
    }
    .job-cell-salary, .job-cell-deadline {
        padding-right: 0;
    }
    .job-cell-action {
        width: 100%;
    }
    .job-cell-action .btn-apply-outline {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}
