/*
 * NaukriSunshine — site.css
 * Global shared stylesheet — included in _Layout.cshtml
 * Covers: CSS variables, reset, typography, nav, footer,
 *         buttons, bottom tab bar, chat widget, animations,
 *         utility classes, and responsive breakpoints.
 * ─────────────────────────────────────────────────────────
 * Page-specific CSS lives in:
 *   /Content/home.css        → Home page only
 *   /Content/search.css      → Job search results page
 *   /Content/contact.css     → Contact Us page
 *   /Content/about.css       → About Us page
 * ─────────────────────────────────────────────────────────
 */

/* ══════════ DESIGN TOKENS ══════════ */
:root {
    /* Brand colours */
    --yellow: #FFC107;
    --yellow-light: #FFF8E1;
    --yellow-dark: #E6AC00;
    --yellow-mid: #FFECB3;
    --navy: #1F2937;
    --navy-soft: #374151;
    --blue: #2cbee8;
    --blue-dark: #1a9cc4;
    --blue-light: #e8f8fd;
    /* Greys */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E9ECF0;
    --gray-300: #E5E7EB;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --white: #FFFFFF;
    /* Status */
    --success: #16A34A;
    --success-bg: #DCFCE7;
    /* Radius */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 12px rgba(44,190,232,0.08), 0 1px 4px rgba(0,0,0,0.06);
    /* Transition */
    --t: 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ══════════ RESET ══════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 60px; /* space for fixed bottom tab bar */
}

/* ══════════ TYPOGRAPHY UTILITIES ══════════ */
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--yellow-dark);
    margin-bottom: 8px;
    display: block;
}

.section-label {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--yellow-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 14px;
}

.nss-section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-sub {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 520px;
}

.nss-section-sub {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 520px;
}

/* ══════════ BUTTONS ══════════ */
.btn-ghost {
    background: none;
    border: 1.5px solid var(--gray-300);
    color: var(--navy);
    padding: 7px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--t);
    text-decoration: none;
    white-space: nowrap;
}

    .btn-ghost:hover {
        border-color: var(--navy);
        background: var(--gray-100);
        color: var(--navy);
    }

.btn-primary {
    background: var(--yellow);
    color: var(--navy);
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--t);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

    .btn-primary:hover {
        background: var(--yellow-dark);
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
        color: var(--navy);
    }

.btn-large {
    padding: 13px 30px;
    font-size: 1rem;
    border-radius: 10px;
}

.btn-secondary-large {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--gray-300);
    padding: 13px 30px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--t);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .btn-secondary-large:hover {
        border-color: var(--navy);
        background: var(--gray-100);
        color: var(--navy);
    }

.btn-yellow-large {
    background: var(--yellow);
    color: var(--navy);
    border: none;
    padding: 15px 34px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--t);
    font-family: 'Inter', sans-serif;
}

    .btn-yellow-large:hover {
        background: var(--yellow-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255,193,7,0.3);
    }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 14px 34px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--t);
    font-family: 'Inter', sans-serif;
}

    .btn-outline-white:hover {
        border-color: var(--white);
        background: rgba(255,255,255,0.06);
    }

/* NSS button system */
.nss-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--t);
    white-space: nowrap;
}

.nss-btn-primary {
    background: var(--yellow);
    color: var(--navy);
    padding: 10px 22px;
}

    .nss-btn-primary:hover {
        background: var(--yellow-dark);
        color: var(--navy);
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

.nss-btn-primary-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 10px;
}

.nss-btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--gray-300);
    padding: 10px 22px;
}

    .nss-btn-secondary:hover {
        border-color: var(--blue);
        background: var(--blue-light);
        color: var(--navy);
    }

/* ══════════ NAVIGATION ══════════ */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-300);
    padding: 0 2.5%;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

    .nav-logo img {
        height: 36px;
    }

/* ── Mega-menu centre cluster ── */
.nav-center {
    display: flex;
    align-items: center;
    gap: 2px;
    position: relative;
    flex: 1;
}

.nav-item {
    position: relative;
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy-soft);
    padding: 8px 11px;
    border-radius: 8px;
    transition: all var(--t);
    white-space: nowrap;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

    .nav-btn:hover {
        background: var(--gray-100);
        color: var(--navy);
    }

    .nav-btn svg {
        transition: transform var(--t);
    }

.nav-item.open .nav-btn svg {
    transform: rotate(180deg);
}

/* ── Mega panel ── */
.mega-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mega-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 24px;
    min-width: 520px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 300;
}

.nav-item.open .mega-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-panel.narrow {
    min-width: 240px;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 8px;
}

    .mega-grid.cols3 {
        grid-template-columns: repeat(3,1fr);
    }

.mega-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--navy);
    transition: background var(--t);
}

    .mega-link:hover {
        background: var(--gray-100);
        color: var(--navy);
    }

.mega-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--yellow-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mega-link-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.mega-link-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.mega-banner {
    grid-column: 1/-1;
    padding: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), #374151);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.mega-banner-text {
    color: white;
    font-size: 0.82rem;
    font-weight: 500;
}

    .mega-banner-text strong {
        display: block;
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

.mega-banner-btn {
    background: var(--yellow);
    color: var(--navy);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

/* ── Right-side nav actions (desktop) ── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* Post Free Job pill */
.nav-post-job {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all var(--t);
}

    .nav-post-job:hover {
        background: var(--yellow-dark);
        color: var(--navy);
        transform: translateY(-1px);
    }

/* Login split buttons */
.nav-login-item {
    position: relative;
}

.nav-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1.5px solid var(--gray-300);
    color: var(--navy);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--t);
    white-space: nowrap;
}

    .nav-login-btn:hover {
        border-color: var(--navy);
        background: var(--gray-100);
    }

.nav-login-btn--recruiter {
    border-color: var(--blue);
    color: var(--blue-dark);
}

    .nav-login-btn--recruiter:hover {
        background: var(--blue-light);
        border-color: var(--blue-dark);
        color: var(--blue-dark);
    }

.nav-login-chevron {
    transition: transform var(--t);
}

.nav-login-item.open .nav-login-chevron {
    transform: rotate(180deg);
}

/* Login dropdown panel */
.login-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 300;
}

.nav-login-item.open .login-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.login-dropdown-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.login-dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--navy);
    transition: background var(--t);
}

    .login-dropdown-link:hover {
        background: var(--gray-100);
        color: var(--navy);
    }

.login-dropdown-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
}

.login-dropdown-title {
    font-size: 0.85rem;
    font-weight: 600;
}

.login-dropdown-desc {
    font-size: 0.72rem;
    color: var(--gray-500);
    margin-top: 1px;
}

.login-dropdown-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 8px 0;
}

/* ── Info hamburger button (desktop right) ── */
.nav-info-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    background: none;
    cursor: pointer;
    transition: all var(--t);
    padding: 0;
    flex-shrink: 0;
}

    .nav-info-btn span {
        display: block;
        width: 16px;
        height: 2px;
        background: var(--navy-soft);
        border-radius: 2px;
        transition: all var(--t);
    }

    .nav-info-btn:hover,
    .nav-info-btn.active {
        border-color: var(--navy);
        background: var(--gray-100);
    }

        .nav-info-btn.active span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

        .nav-info-btn.active span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .nav-info-btn.active span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }

/* ── Mobile group (hidden on desktop) ── */
.nav-mobile-group {
    display: none;
    align-items: center;
    gap: 8px;
}

.nav-post-job--mobile {
    font-size: 0.75rem;
    padding: 6px 10px;
}

.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    background: none;
    cursor: pointer;
    color: var(--navy);
    transition: all var(--t);
    -webkit-tap-highlight-color: transparent;
}

    .hamburger:hover {
        background: var(--gray-100);
        border-color: var(--navy);
    }

/* ══════════ TRUST / STAT BAR ══════════ */
.trust {
    background: var(--navy);
    padding: 28px 5%;
}

.trust-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 14px 28px;
    border-right: 1px solid rgba(255,255,255,0.12);
    flex: 1;
    min-width: 140px;
}

    .stat:last-child {
        border-right: none;
    }

.stat-num {
    font-family: 'Fraunces', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--yellow);
    display: block;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
}

/* ══════════ SECTION BASE ══════════ */
section {
    padding: 52px 5%;
}

/* Feature list (shared between For Candidates, For Recruiters etc.) */
.feature-list {
    list-style: none;
    margin: 24px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 11px;
        font-size: 0.93rem;
        color: var(--navy-soft);
        font-weight: 500;
    }

        .feature-list li::before {
            content: '';
            width: 20px;
            height: 20px;
            border-radius: 50%;
            flex-shrink: 0;
            background: var(--yellow-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23E6AC00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
            border: 1.5px solid var(--yellow);
        }

.nss-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

    .nss-feature-list li {
        display: flex;
        align-items: center;
        gap: 11px;
        font-size: 0.93rem;
        color: var(--navy-soft);
        font-weight: 500;
    }

        .nss-feature-list li::before {
            content: '';
            width: 20px;
            height: 20px;
            border-radius: 50%;
            flex-shrink: 0;
            background: var(--yellow-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23E6AC00' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
            border: 1.5px solid var(--yellow);
        }

/* Skill tags */
.skill-tag, .nss-skill-tag {
    background: var(--gray-100);
    color: var(--navy-soft);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* ══════════ FOOTER ══════════ */
footer {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-300);
    padding: 60px 5% 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 44px;
    max-width: 1100px;
    margin: 0 auto 44px;
}

.footer-brand p {
    font-size: 0.86rem;
    color: var(--gray-500);
    margin-top: 10px;
    line-height: 1.65;
    max-width: 230px;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding-inline-start: 4px;
}


    .footer-col ul a {
        text-decoration: none;
        color: var(--gray-500);
        font-size: 0.86rem;
        transition: color var(--t);
    }

        .footer-col ul a:hover {
            color: var(--navy);
        }

.footer-bottom {
    border-top: 1px solid var(--gray-300);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-bottom p {
        font-size: 0.8rem;
        color: var(--gray-500);
    }

/* ══════════ BOTTOM TAB BAR ══════════ */
#bottom-tab {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 190;
    background: var(--white);
    border-top: 1px solid var(--gray-300);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 60px;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
    opacity: 1;
}

    #bottom-tab.content-focused {
        transform: translateY(110%);
        opacity: 0;
    }

.tab-item {
    flex: 1;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 6px;
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: none;
    color: var(--gray-500);
    font-family: 'Inter', sans-serif;
    transition: all var(--t);
    position: relative;
    height: 60px;
}

    .tab-item:hover, .tab-item.active {
        color: var(--yellow-dark);
    }

        .tab-item.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 20%;
            right: 20%;
            height: 3px;
            background: var(--yellow);
            border-radius: 3px 3px 0 0;
        }

.tab-item-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.tab-item-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.tab-divider {
    width: 1px;
    height: 32px;
    background: var(--gray-300);
    flex-shrink: 0;
}

/* ══════════ CHAT WIDGET ══════════ */
#chat-widget {
    position: fixed;
    bottom: 72px;
    right: 20px;
    z-index: 500;
}

#chat-fab {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all var(--t);
    position: relative;
}

    #chat-fab:hover {
        background: var(--yellow);
        color: var(--navy);
        transform: scale(1.08);
    }

#chat-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #EF4444;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

#chat-panel {
    position: absolute;
    bottom: 64px;
    right: 0;
    width: 300px;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--gray-300);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.97);
    transition: all 0.2s ease;
    transform-origin: bottom right;
}

    #chat-panel.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

.chat-header {
    background: var(--navy);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header-icon {
    font-size: 1.4rem;
}

.chat-header-title {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.chat-header-sub {
    color: rgba(255,255,255,0.65);
    font-size: 0.75rem;
}

.chat-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-intro {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.5;
    background: var(--gray-100);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 4px;
}

.chat-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 12px;
    cursor: pointer;
    border: 1.5px solid var(--gray-300);
    background: var(--white);
    text-decoration: none;
    color: var(--navy);
    transition: all var(--t);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
}

    .chat-option:hover {
        border-color: var(--yellow);
        background: var(--yellow-light);
        color: var(--navy);
    }

.chat-option-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.chat-wa {
    border-color: #25D366;
}

    .chat-wa:hover {
        border-color: #25D366;
        background: #F0FFF4;
    }

    .chat-wa .chat-option-icon {
        color: #25D366;
    }

/* ══════════ INFO PANEL (left-slide) ══════════ */
.info-panel-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 490;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .info-panel-backdrop.open {
        opacity: 1;
        pointer-events: auto;
    }

.info-panel {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    max-width: 88vw;
    background: var(--white);
    z-index: 500;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 4px 0 32px rgba(0,0,0,0.14);
}

    .info-panel.open {
        transform: translateX(0);
    }

body.info-panel-active {
    overflow: hidden;
}

.info-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.info-panel-close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: var(--navy);
    transition: background var(--t);
    -webkit-tap-highlight-color: transparent;
}

    .info-panel-close:hover {
        background: var(--gray-200);
    }

.info-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    -webkit-overflow-scrolling: touch;
}

.info-panel-section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 10px;
}

.info-panel-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--navy);
    transition: background var(--t), transform var(--t);
    -webkit-tap-highlight-color: transparent;
    min-height: 56px;
}

    .info-panel-link:hover, .info-panel-link:active {
        background: var(--gray-100);
        transform: translateX(3px);
    }

.info-panel-link--sm {
    min-height: 46px;
    padding: 10px 12px;
}

.info-panel-link-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--yellow-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--yellow-dark);
}

.info-panel-link--sm .info-panel-link-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--gray-100);
    color: var(--gray-500);
}

.info-panel-link-title {
    font-size: 0.92rem;
    font-weight: 600;
}

.info-panel-link-desc {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 2px;
}

.info-panel-footer {
    padding: 16px 20px 24px;
    border-top: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.info-panel-tagline {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.info-panel-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #16A34A;
    text-decoration: none;
    background: #DCFCE7;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background var(--t);
}

    .info-panel-wa:hover {
        background: #BBF7D0;
        color: #15803D;
    }

/* ══════════ MOBILE NAV OFFCANVAS ══════════ */
.nss-offcanvas {
    max-width: 340px;
    width: 90vw !important;
}

    .nss-offcanvas .offcanvas-header {
        border-bottom: 1px solid var(--gray-200);
        padding: 14px 18px;
    }

    .nss-offcanvas .offcanvas-body {
        padding: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--white);
        display: flex;
        flex-direction: column;
    }

/* Login cards at top of mobile menu */
.mob-login-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.mob-login-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 14px 8px;
    border: 1.5px solid var(--gray-300);
    border-radius: 12px;
    text-decoration: none;
    color: var(--navy);
    background: var(--white);
    transition: all var(--t);
    -webkit-tap-highlight-color: transparent;
}

    .mob-login-card:active, .mob-login-card:hover {
        border-color: var(--yellow);
        background: var(--yellow-light);
    }

.mob-login-card--recruiter {
    border-color: var(--blue);
}

    .mob-login-card--recruiter:active, .mob-login-card--recruiter:hover {
        border-color: var(--blue-dark);
        background: var(--blue-light);
    }

.mob-login-card svg {
    align-self: flex-end;
    color: var(--gray-500);
}

.mob-login-card-icon {
    font-size: 1.6rem;
}

.mob-login-card-title {
    font-size: 0.8rem;
    font-weight: 700;
}

.mob-login-card-sub {
    font-size: 0.68rem;
    color: var(--gray-500);
    line-height: 1.3;
}

/* Accordion — Bootstrap variable overrides */
.nss-offcanvas .accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
    --bs-accordion-inner-border-radius: 0;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-btn-padding-x: 18px;
    --bs-accordion-btn-padding-y: 14px;
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-body-padding-y: 0;
    --bs-accordion-active-bg: var(--blue-light);
    --bs-accordion-active-color: var(--blue-dark);
}

.nss-offcanvas .accordion-item {
    border: none;
    border-bottom: 1px solid var(--gray-200);
    background: transparent;
}

.nss-offcanvas .accordion-button {
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--navy);
    background: transparent;
    box-shadow: none !important;
    min-height: 52px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

    .nss-offcanvas .accordion-button:not(.collapsed) {
        color: var(--blue-dark);
        background: var(--blue-light);
        box-shadow: none !important;
    }

    .nss-offcanvas .accordion-button:focus {
        box-shadow: none !important;
        outline: none;
    }

.nss-offcanvas .accordion-collapse {
    border-top: 1px solid var(--gray-200);
}

.nss-offcanvas .accordion-body {
    background: var(--gray-50);
    padding: 4px 0 8px;
}

.nss-offcanvas .sub-link {
    display: flex;
    align-items: center;
    padding: 11px 18px 11px 36px;
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--navy-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-200);
    min-height: 44px;
    transition: background var(--t), color var(--t);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

    .nss-offcanvas .sub-link:last-child {
        border-bottom: none;
    }

    .nss-offcanvas .sub-link:hover, .nss-offcanvas .sub-link:active {
        background: var(--blue-light);
        color: var(--blue-dark);
    }

/* Flat links — About, Contact, Pricing */
.mob-flat-link {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-200);
    min-height: 52px;
    transition: background var(--t), color var(--t);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

    .mob-flat-link:hover, .mob-flat-link:active {
        background: var(--yellow-light);
        color: var(--yellow-dark);
    }

/* CTA buttons at bottom */
.mob-cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 16px 28px;
    margin-top: auto;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

/* ══════════ ANIMATIONS ══════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-11px);
    }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.3);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.fade-up {
    animation: fadeUp 0.55s ease forwards;
    opacity: 0;
}

    .fade-up:nth-child(1) {
        animation-delay: 0.08s;
    }

    .fade-up:nth-child(2) {
        animation-delay: 0.18s;
    }

    .fade-up:nth-child(3) {
        animation-delay: 0.28s;
    }

    .fade-up:nth-child(4) {
        animation-delay: 0.38s;
    }

.float-anim {
    animation: float 5s ease-in-out infinite;
}

/* Final CTA */
.final-cta {
    background: var(--navy);
    text-align: center;
    padding: 56px 5%;
}

    .final-cta .section-title {
        color: var(--white);
    }

    .final-cta .section-sub {
        color: rgba(255,255,255,0.6);
        margin: 0 auto 36px;
    }

.final-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 960px) {
    /* Hide desktop-only nav pieces */
    .nav-center {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .nav-info-btn {
        display: none;
    }
    /* info hamburger lives only on desktop */

    /* Show mobile group */
    .nav-mobile-group {
        display: flex;
    }

    /* Tighter nav padding */
    nav {
        padding: 0 4%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Bottom tab bar on mobile: icon only */
    .tab-item-label {
        display: none;
    }

    .tab-item {
        max-width: 80px;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 0 4%;
    }

    .nav-post-job--mobile {
        display: none;
    }
    /* very small: hide "Post Job" pill, keep only hamburger */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .trust-inner {
        gap: 0;
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

        .stat:last-child {
            border-bottom: none;
        }

    #chat-panel {
        width: 270px;
        right: -8px;
    }

    /* Info panel full-width on tiny screens */
    .info-panel {
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    #chat-widget {
        bottom: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}
