:root {
    --sales-primary: #2563eb;
    --sales-secondary: #7c3aed;
    --sales-surface: rgba(255, 255, 255, 0.94);
    --sales-text: #0f172a;
    --sales-muted: #475569;
}

body {
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.08), transparent 40%),
        radial-gradient(circle at 85% 5%, rgba(124, 58, 237, 0.08), transparent 38%);
    z-index: 0;
}

section,
.container,
.container-fluid {
    position: relative;
    z-index: 1;
}

.sales-progress-bar {
    position: fixed;
    inset: 0 auto auto 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--sales-primary), var(--sales-secondary));
    box-shadow: 0 3px 15px rgba(37, 99, 235, 0.45);
    z-index: 10000;
    transition: width 0.1s linear;
}

.sales-float-wrap {
    position: fixed;
    right: 16px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.sales-float-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: var(--sales-surface);
    color: var(--sales-text);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 16px 35px -24px rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(7px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sales-float-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px -22px rgba(37, 99, 235, 0.45);
}

.sales-float-btn--primary {
    background: linear-gradient(135deg, var(--sales-primary), var(--sales-secondary));
    color: #fff;
    border-color: transparent;
}

.sales-float-btn--whatsapp {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    border-color: transparent;
}

.sales-reveal {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.sales-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.sales-dark {
    background: #020617 !important;
    color: #e2e8f0 !important;
}

.sales-dark::before {
    background:
        radial-gradient(circle at 8% 0%, rgba(37, 99, 235, 0.16), transparent 42%),
        radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.14), transparent 44%);
}

.sales-dark p,
.sales-dark li,
.sales-dark .text-secondary {
    color: #cbd5e1 !important;
}

.sales-dark .card,
.sales-dark .contact-card,
.sales-dark .industry-card,
.sales-dark .value-card,
.sales-dark .accordion-item {
    background: #0f172a !important;
    border-color: rgba(59, 130, 246, 0.25) !important;
    color: #e2e8f0 !important;
}

.sales-dark #job-portal-main-navbar {
    background: rgba(15, 23, 42, 0.86) !important;
    border-color: rgba(148, 163, 184, 0.2) !important;
}

@media (max-width: 768px) {
    .sales-float-btn {
        min-height: 40px;
        padding: 0 12px;
        font-size: 12px;
    }
}

.post-job-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.post-job-modal.is-open {
    display: flex;
}

.post-job-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.65);
    backdrop-filter: blur(4px);
}

.post-job-modal__panel {
    position: relative;
    width: min(680px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.95));
    box-shadow: 0 30px 55px -30px rgba(2, 6, 23, 0.7);
}

.post-job-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.post-job-modal__title {
    margin: 0;
    font-size: 24px;
    color: #0f172a;
}

.post-job-modal__sub {
    margin: 0 0 16px;
    color: #475569;
    font-size: 14px;
}

.post-job-modal__close {
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: #fff;
    color: #334155;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    cursor: pointer;
}

.post-job-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.post-job-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.post-job-form__field--full {
    grid-column: 1 / -1;
}

.post-job-form label {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.post-job-form input,
.post-job-form textarea {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.5);
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.post-job-form input:focus,
.post-job-form textarea:focus {
    border-color: rgba(37, 99, 235, 0.6);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.post-job-form textarea {
    min-height: 100px;
    resize: vertical;
}

.post-job-form__actions {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 4px;
}

.post-job-form__status {
    font-size: 13px;
    color: #475569;
}

.post-job-form__status.is-error {
    color: #dc2626;
}

.post-job-form__status.is-success {
    color: #047857;
}

.post-job-form__submit {
    border: 0;
    border-radius: 12px;
    min-height: 42px;
    padding: 0 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.post-job-form__submit[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

body.post-job-modal-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .post-job-form {
        grid-template-columns: 1fr;
    }
}
