﻿:root {
    --primary: #00897B;
    --primary-dark: #00695C;
    --primary-light: #E0F2F1;
    --primary-mid: #4DB6AC;
    --text-dark: #1A2332;
    --text-body: #374151;
    --text-muted: #6B7280;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --shadow-card: 0 4px 16px rgba(0,0,0,0.08);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
}

.policy-hero {
    background: linear-gradient(135deg, var(--text-dark) 0%, #0F1923 100%);
    color: #fff;
    padding: 64px 24px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .policy-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 25% 30%, rgba(77,182,172,0.12) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0,137,123,0.08) 0%, transparent 50%);
        pointer-events: none;
    }

.policy-hero-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(77,182,172,0.2);
    border: 1px solid rgba(77,182,172,0.4);
    color: var(--primary-mid);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.policy-hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.policy-hero .hero-meta {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}

.legal-nav {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 20px 24px;
}

.legal-nav-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}

    .legal-nav-inner span {
        color: var(--border);
    }

    .legal-nav-inner a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 500;
        padding: 4px 10px;
        border-radius: var(--radius-sm);
        transition: all 0.2s;
    }

        .legal-nav-inner a:hover,
        .legal-nav-inner a.current {
            color: var(--primary);
            background: var(--primary-light);
        }

.policy-body {
    background: var(--bg-light);
    padding: 64px 24px;
}

.policy-body-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
}

.policy-toc {
    position: sticky;
    top: 92px;
}

.toc-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 14px;
}

.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0;
    margin: 0;
}

    .toc-list a {
        display: block;
        padding: 8px 12px;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--text-muted);
        text-decoration: none;
        border-radius: var(--radius-sm);
        border-left: 2px solid transparent;
        transition: all 0.2s;
        line-height: 1.4;
    }

        .toc-list a:hover,
        .toc-list a.active {
            color: var(--primary);
            background: var(--primary-light);
            border-left-color: var(--primary);
        }

.policy-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 52px;
    box-shadow: var(--shadow-card);
}

.policy-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

    .policy-section:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

.section-number {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 8px;
}

.policy-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.policy-section p {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-list {
    list-style: none;
    margin: 12px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .policy-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.93rem;
        color: var(--text-body);
        line-height: 1.6;
    }

        .policy-list li::before {
            content: "";
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 8px;
        }

.policy-highlight {
    background: var(--primary-light);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 14px 18px;
    margin: 16px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

    .policy-highlight.warning {
        background: #FFF8F0;
        border-left-color: #E65100;
        color: #7C3A00;
    }

.contact-email-block {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s;
}

    .contact-email-block:hover {
        background: var(--primary-light);
        border-color: var(--primary-mid);
    }

    .contact-email-block span {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--primary-dark);
    }

@media (max-width: 900px) {
    .policy-body-inner {
        grid-template-columns: 1fr;
    }

    .policy-toc {
        display: none;
    }

    .policy-card {
        padding: 32px 28px;
    }
}

@media (max-width: 640px) {
    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-card {
        padding: 24px 20px;
    }

    .policy-body,
    .policy-hero,
    .legal-nav {
        padding-left: 16px;
        padding-right: 16px;
    }
}


/* =========================
   404 PAGE
========================= */

/* =========================================================
   404 PAGE - NEW DESIGN
========================================================= */

/* =========================================================
   404 PAGE - FINAL
========================================================= */

.not-found-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 160px);
}

    .not-found-main::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 50%, rgba(0, 137, 123, 0.04) 0%, transparent 45%), radial-gradient(circle at 85% 20%, rgba(77, 182, 172, 0.06) 0%, transparent 40%), radial-gradient(circle at 50% 90%, rgba(0, 105, 92, 0.03) 0%, transparent 50%);
        pointer-events: none;
    }

.not-found-inner {
    max-width: 620px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.not-found-illustration {
    margin: 0 auto 36px;
    width: 160px;
    height: 160px;
    position: relative;
}

.error-code {
    display: block;
    font-size: 7rem;
    font-weight: 700;
    color: transparent;
    background: linear-gradient( 135deg, var(--primary) 0%, var(--primary-mid) 60%, rgba(77, 182, 172, 0.4) 100% );
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 4px;
}

.not-found-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.not-found-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.search-wrap {
    position: relative;
    max-width: 460px;
    margin: 0 auto 36px;
}

    .search-wrap input {
        width: 100%;
        padding: 13px 52px 13px 18px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius);
        font-size: 0.92rem;
        color: var(--text-dark);
        background: #ffffff;
        transition: all 0.2s ease;
        box-shadow: var(--shadow-subtle);
        box-sizing: border-box;
    }

        .search-wrap input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.08);
        }

        .search-wrap input::placeholder {
            color: var(--text-muted);
        }

    .search-wrap button {
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--primary);
        border: none;
        border-radius: var(--radius-sm);
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 0.9rem;
        color: #ffffff;
    }

        .search-wrap button:hover {
            background: var(--primary-dark);
        }

.cta-group {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-solid,
.btn-outline {
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
    box-sizing: border-box;
}

.btn-solid {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    box-shadow: var(--shadow-card);
}

    .btn-solid:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-hover);
    }

.btn-outline {
    background: #ffffff;
    color: var(--text-dark);
    border-color: var(--border);
}

    .btn-outline:hover {
        border-color: var(--primary-mid);
        color: var(--primary);
        background: var(--primary-light);
    }

.soft-divider {
    width: 48px;
    height: 2px;
    background: var(--border);
    margin: 0 auto 24px;
    border-radius: 2px;
}

.brand-line {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.bonus-line {
    font-size: 0.82rem;
    color: #9ca3af;
}

    .bonus-line a {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
    }

        .bonus-line a:hover {
            text-decoration: underline;
        }

@media (max-width: 640px) {
    .not-found-main {
        padding: 48px 16px;
        min-height: calc(100vh - 140px);
    }

    .error-code {
        font-size: 5rem;
    }

    .not-found-title {
        font-size: 1.5rem;
    }

    .not-found-subtitle {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .not-found-illustration {
        width: 140px;
        height: 140px;
        margin-bottom: 28px;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .btn-solid,
    .btn-outline {
        width: 100%;
        max-width: 320px;
    }
}
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
    background: linear-gradient(135deg, var(--text-dark) 0%, #0f1923 100%);
    color: #ffffff;
    padding: 72px 24px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .contact-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 20%, rgba(77, 182, 172, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 137, 123, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

.contact-hero-content {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.contact-body {
    background: var(--bg-light);
    padding: 64px 24px;
}

.contact-body-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

    .contact-form-card h2 {
        font-size: 1.65rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

.form-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.contact-form-card .form-group {
    margin-bottom: 20px;
}

    .contact-form-card .form-group label {
        display: block;
        font-size: 0.95rem;
        font-weight: 600;
        color: #111827;
        margin-bottom: 8px;
    }

    .contact-form-card .form-group input,
    .contact-form-card .form-group select,
    .contact-form-card .form-group textarea {
        width: 100%;
        display: block;
        padding: 14px 16px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        background: #ffffff;
        font-size: 0.95rem;
        color: #111827;
        box-sizing: border-box;
        outline: none;
        font-family: inherit;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .contact-form-card .form-group textarea {
        min-height: 140px;
        resize: vertical;
    }

        .contact-form-card .form-group input:focus,
        .contact-form-card .form-group select:focus,
        .contact-form-card .form-group textarea:focus {
            border-color: #00897b;
            box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.12);
        }

.select-wrapper {
    position: relative;
}

.recaptcha-wrap {
    margin: 20px 0 18px;
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
}

.contact-error-message {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-submit-btn {
    width: 100%;
    min-height: 52px;
    border: none;
    border-radius: 8px;
    background: #00897b;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.2s ease, transform 0.2s ease;
}

    .contact-submit-btn:hover {
        background: #00796b;
    }

    .contact-submit-btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.response-note {
    text-align: center;
    margin-top: 14px;
    font-size: 0.9rem;
    color: #6b7280;
}

.form-success {
    text-align: center;
    padding: 36px 18px;
}

.form-success-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.form-success h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-subtle);
}

.sidebar-card-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}

.sidebar-card h3,
.employer-card h3,
.jobseeker-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.email-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--border-light);
}

    .email-link:hover {
        background: var(--primary-light);
        border-color: var(--primary-mid);
    }

.email-link-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.email-link-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.email-link-address {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.sidebar-note {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.6;
}

.employer-card {
    background: linear-gradient(135deg, var(--text-dark) 0%, #0f1923 100%);
    border-radius: var(--radius);
    padding: 28px;
    color: #ffffff;
}

    .employer-card .sidebar-card-label {
        color: var(--primary-mid);
    }

    .employer-card h3 {
        color: #ffffff;
    }

    .employer-card p {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.6;
        margin-bottom: 18px;
    }

.btn-employer {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 11px 18px;
    background: var(--primary);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .btn-employer:hover {
        background: var(--primary-dark);
    }

.jobseeker-card {
    background: var(--primary-light);
    border: 1px solid rgba(0, 137, 123, 0.15);
    border-radius: var(--radius);
    padding: 28px;
}

    .jobseeker-card .sidebar-card-label {
        color: var(--primary-dark);
    }

    .jobseeker-card p {
        font-size: 0.88rem;
        color: var(--text-body);
        line-height: 1.6;
    }

.trust-strip {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 24px;
    text-align: center;
}

    .trust-strip p {
        font-size: 0.88rem;
        color: var(--text-muted);
    }

@media (max-width: 900px) {
    .contact-body-inner {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-form-card {
        padding: 24px;
    }

    .contact-sidebar {
        grid-template-columns: 1fr;
    }

    .contact-form-card .form-group input,
    .contact-form-card .form-group select,
    .contact-form-card .form-group textarea {
        padding: 12px 14px;
        font-size: 0.92rem;
    }

    .recaptcha-wrap {
        transform-origin: left top;
    }
}
.field-error-message {
    display: none;
    margin-top: 8px;
    color: #dc3545;
    font-size: 14px;
    line-height: 1.4;
}