/* =============================================
   GỐM SỨ MINH LONG - TUYỂN DỤNG
   Design System & Main Styles
   Tông màu: Navy + Gold + Cream (Minh Long style)
   ============================================= */

/* === CSS Variables === */
:root {
    --navy: #1A2238;
    --navy-light: #2A3452;
    --navy-dark: #0F1524;
    --gold: #C8A951;
    --gold-light: #D4BC73;
    --gold-dark: #A88B36;
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --wine: #8B2131;
    --text-primary: #202846;
    --text-secondary: #5A6275;
    --text-muted: #8E95A5;
    --white: #FFFFFF;
    --border: #E5E2DC;
    --success: #198754;
    --error: #DC3545;
    --info: #0D6EFD;
    --shadow-sm: 0 2px 8px rgba(26, 34, 56, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 34, 56, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 34, 56, 0.16);
    --shadow-gold: 0 4px 20px rgba(200, 169, 81, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Utilities === */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-navy {
    color: var(--navy);
}

.text-wine {
    color: var(--wine);
}

.text-muted {
    color: var(--text-muted);
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200, 169, 81, 0.4);
}

.btn-navy {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
}

.btn-navy:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

/* === Alert Messages === */
.alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin: 15px auto;
    max-width: 1200px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.alert-success {
    background: #d1e7dd;
    color: #0f5132;
    border-left: 4px solid var(--success);
}

.alert-error {
    background: #f8d7da;
    color: #842029;
    border-left: 4px solid var(--error);
}

.alert-info {
    background: #cff4fc;
    color: #055160;
    border-left: 4px solid var(--info);
}

.alert-close {
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    opacity: 0.7;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(26, 34, 56, 0.95);
    backdrop-filter: blur(20px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-sm);
    font-size: 18px;
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.8;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(200, 169, 81, 0.1);
}

.nav-link i {
    font-size: 13px;
}

.lookup-link {
    background: rgba(200, 169, 81, 0.15);
    border: 1px solid rgba(200, 169, 81, 0.3);
}

.lookup-link:hover,
.lookup-link.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-overlay.active {
    display: block;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
    margin-top: 70px;
    min-height: calc(100vh - 70px - 300px);
}

/* =============================================
   HERO SECTION (Trang chủ)
   ============================================= */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 169, 81, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(200, 169, 81, 0.15);
    border: 1px solid rgba(200, 169, 81, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Search Box */
.search-box {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.search-box input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    outline: none;
    font-size: 15px;
    color: var(--text-primary);
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box select {
    padding: 18px 16px;
    border: none;
    border-left: 1px solid var(--border);
    outline: none;
    background: var(--white);
    color: var(--text-secondary);
    font-size: 14px;
    min-width: 160px;
    cursor: pointer;
}

.search-box button {
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-box button:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--cream-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(200, 169, 81, 0.1);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   CATEGORY CARDS
   ============================================= */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.category-card i {
    font-size: 28px;
    color: var(--gold);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 169, 81, 0.1);
    border-radius: var(--radius-sm);
}

.category-card h4 {
    font-size: 14px;
    font-weight: 600;
}

.category-card span {
    font-size: 12px;
    color: var(--text-muted);
}

/* =============================================
   JOB CARDS
   ============================================= */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
}

.job-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.job-card-type {
    padding: 4px 12px;
    background: rgba(200, 169, 81, 0.1);
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
}

.job-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.4;
}

.job-card h3 a:hover {
    color: var(--gold);
}

.job-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
}

.job-meta-item i {
    color: var(--gold);
    width: 16px;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.job-salary {
    font-size: 14px;
    font-weight: 600;
    color: var(--wine);
}

.job-deadline {
    font-size: 12px;
    color: var(--text-muted);
}

/* =============================================
   ARTICLE CARDS
   ============================================= */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.article-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-card-img img {
    transform: scale(1.05);
}

.article-card-img i {
    font-size: 40px;
    color: var(--gold);
    opacity: 0.5;
}

.article-card-body {
    padding: 24px;
}

.article-card-body h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-card-body h3 a:hover {
    color: var(--gold);
}

.article-card-body p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.article-card-date {
    font-size: 12px;
    color: var(--text-muted);
}

.article-card-date i {
    margin-right: 4px;
    color: var(--gold);
}

/* =============================================
   VALUES SECTION
   ============================================= */
.values-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 0;
}

.values-section .section-title {
    color: var(--white);
}

.values-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 81, 0.2);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.value-card:hover {
    background: rgba(200, 169, 81, 0.1);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.value-card i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 16px;
}

.value-card h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 8px;
}

.value-card p {
    color: rgb(24 19 19 / 77%);
    font-size: 13px;
}

/* =============================================
   JOB DETAIL PAGE
   ============================================= */
.page-banner {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 50px 0;
    position: relative;
}

.page-banner h1 {
    color: var(--white);
    font-size: 28px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: var(--gold);
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    padding: 40px 0;
}

.detail-main {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
}

.detail-main h2 {
    font-size: 20px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.detail-main h3 {
    font-size: 17px;
    margin: 24px 0 12px;
    color: var(--navy);
}

.detail-main ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.detail-main ul li {
    position: relative;
    padding-left: 8px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    list-style: disc;
}

.detail-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row i {
    color: var(--gold);
    width: 20px;
    margin-top: 2px;
}

.info-row .label {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
}

.info-row .value {
    font-size: 14px;
    font-weight: 500;
}

/* =============================================
   APPLY FORM
   ============================================= */
.form-section {
    padding: 40px 0 80px;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.form-title {
    text-align: center;
    margin-bottom: 32px;
}

.form-title h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.form-title p {
    color: var(--text-secondary);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.form-group label .required {
    color: var(--error);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-primary);
    background: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.file-upload {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    border: 2px dashed var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.file-upload:hover {
    border-color: var(--gold);
    background: rgba(200, 169, 81, 0.03);
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload i {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 8px;
}

.file-upload span {
    font-size: 13px;
    color: var(--text-muted);
}

/* =============================================
   LOOKUP PAGE
   ============================================= */
.lookup-section {
    padding: 60px 0;
}

.lookup-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.lookup-card .lookup-icon {
    width: 80px;
    height: 80px;
    background: rgba(200, 169, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.lookup-card .lookup-icon i {
    font-size: 32px;
    color: var(--gold);
}

.lookup-card h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.lookup-card>p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.lookup-form {
    text-align: left;
}

/* Lookup Results */
.lookup-results {
    margin-top: 40px;
}

.result-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
    text-align: left;
}

.result-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.result-card h4 {
    font-size: 16px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.result-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.result-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.result-info-item i {
    color: var(--gold);
    width: 16px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 16px;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 60px 0;
}

.about-content h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--navy);
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.page-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.page-link.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.page-dots {
    padding: 0 4px;
    color: var(--text-muted);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.footer-logo .logo-main {
    font-size: 16px;
    letter-spacing: 2px;
}

.footer-logo .logo-sub {
    font-size: 9px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
    font-size: 14px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--white);
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-links a i {
    font-size: 8px;
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    background: var(--gold-dark);
}

/* =============================================
   FILTER BAR
   ============================================= */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.filter-bar .form-control {
    flex: 1;
    min-width: 180px;
}

.filter-bar .btn {
    flex-shrink: 0;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablet */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .search-box {
        flex-direction: column;
        border-radius: var(--radius-md);
    }

    .search-box select {
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .hero-stats {
        gap: 32px;
    }

    .stat-number {
        font-size: 26px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: var(--transition);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 4px;
    }

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stats .stat-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lookup-card {
        padding: 28px;
    }

    .result-info {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 22px;
    }

    .section {
        padding: 48px 0;
    }

    .detail-main {
        padding: 20px;
    }

    .sidebar-card {
        padding: 20px;
    }

    .filter-bar {
        flex-direction: column;
    }

    .filter-bar .form-control {
        min-width: 100%;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header-inner {
        height: 60px;
    }

    .main-content {
        margin-top: 60px;
    }

    .logo-text .logo-main {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .logo-text .logo-sub {
        font-size: 8px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero {
        padding: 32px 0 48px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        padding: 16px 10px;
    }

    .category-card i {
        font-size: 22px;
        width: 44px;
        height: 44px;
    }

    .job-card {
        padding: 20px;
    }

    .job-card h3 {
        font-size: 16px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* =============================================
   EMPTY STATES
   ============================================= */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 48px;
    color: var(--text-muted);
    opacity: 0.5;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);
    font-size: 14px;
}

/* =============================================
   LOADING ANIMATION
   ============================================= */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}