
/* CUSTOM CSS DÀNH CHO TRANG TUYỂN DỤNG */

.careers-page-wrapper {
    background: #f8fafc;
}

/* Hero Section */
.careers-hero {
    padding: 120px 0 100px;
    color: #fff;
    text-align: center;
}
.hero-badge {
    display: inline-block;
    background: #D93025;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-desc {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.9;
    line-height: 1.6;
}
.hero-btn {
    padding: 14px 32px;
    font-size: 16px;
}

/* Core Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.icon-box {
    font-size: 48px;
    margin-bottom: 20px;
}
.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}
.value-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

/* Open Positions */
.open-positions {
    background: #fff;
    border-top: 1px solid #e2e8f0;
}
.jobs-list {
    margin: 0 auto;
}
.job-group-title {
    font-size: 24px;
    font-weight: 800;
    color: #1565C0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}
.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.job-card:hover {
    border-color: #cbd5e1;
    background: #fff;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}
.job-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}
.job-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.job-meta span {
    font-size: 14px;
    color: #475569;
    background: #e2e8f0;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}
.job-summary {
    color: #64748b;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}
.job-action {
    min-width: 150px;
    text-align: right;
    padding-left: 20px;
}

/* Application Form */
.application-section {
    background: #f1f5f9;
}
.apply-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
}
.apply-info h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}
.apply-info p {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}
.contact-direct {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #D93025;
}
.contact-direct strong {
    display: block;
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 10px;
}
.contact-direct p {
    font-size: 16px;
    margin-bottom: 5px;
    color: #334155;
}
.custom-form .form-group {
    margin-bottom: 20px;
}
.custom-form label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}
.custom-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}
.custom-form input:focus {
    outline: none;
    border-color: #1565C0;
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .job-action {
        margin-top: 20px;
        padding-left: 0;
        width: 100%;
    }
    .job-action .btn {
        width: 100%;
        justify-content: center;
    }
    .apply-box {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}
@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}
.section {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid #ccc;
    white-space: nowrap;
}