/* ═══════════════════════════════════════
   WHISTLEBLOWER SECTION
═══════════════════════════════════════ */
.whistleblower-section {
    padding: clamp(72px, 10vw, 130px) 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: url(../img/page-bg-new.png) top center no-repeat;
    background-size: cover;
}

.whistleblower-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 5% 15%, rgba(37, 99, 235, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 95% 85%, rgba(6, 182, 212, 0.05) 0%, transparent 45%);
}

/* ── HEADER ── */
.wb-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(37, 99, 235, 0.07);
    border: 1px solid rgba(37, 99, 235, 0.18);
    color: #2563eb;
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.wb-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #06b6d4;
    animation: wbBadgePulse 2.4s ease-in-out infinite;
}

@keyframes wbBadgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7);
    }

    60% {
        box-shadow: 0 0 0 8px rgba(6, 182, 212, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
    }
}

.wb-main-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    color: #0b1f3a;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 16px;
}

.wb-main-title .accent {
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wb-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #7a8fa6;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── LAYOUT ── */
.wb-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(14px, 2vw, 22px);
}

/* intro spans full width */
.wb-intro {
    grid-column: 1 / -1;
}

/* ── SHARED CARD BASE ── */
.wb-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.09);
    box-shadow: 0 4px 24px rgba(11, 31, 58, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.wb-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}

.wb-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 95% 5%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
}

.wb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(11, 31, 58, 0.11);
    border-color: rgba(37, 99, 235, 0.18);
}

/* accent colours */
.wb-card.intro-card::before {
    background: linear-gradient(90deg, #1d4ed8, #2563eb, #06b6d4);
}

.wb-card.policy-card::before {
    background: linear-gradient(90deg, #7c3aed, #2563eb, #06b6d4);
}

.wb-card.form-card::before {
    background: linear-gradient(90deg, #065f46, #10b981, #06b6d4);
}

.wb-card .wb-card-body {
    padding: clamp(22px, 3vw, 32px);
    position: relative;
    z-index: 1;
    flex: 1;
}

/* ── INTRO CARD ── */
.wb-intro-text {
    font-size: clamp(0.88rem, 1.3vw, 0.96rem);
    color: #4a5f78;
    line-height: 1.8;
    margin: 0 0 14px;
}

.wb-intro-text:last-child {
    margin-bottom: 0;
}

/* ── VALUES GRID (3 cards) ── */
.wb-values-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: clamp(12px, 1.8vw, 18px);
}

.wb-value-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.09);
    box-shadow: 0 4px 24px rgba(11, 31, 58, 0.07);
    padding: clamp(20px, 2.5vw, 26px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.wb-value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 95% 5%, rgba(37, 99, 235, 0.02) 0%, transparent 55%);
}

.wb-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(11, 31, 58, 0.13);
    border-color: rgba(37, 99, 235, 0.2);
}

.wb-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
}

.wb-value-card:nth-child(1)::before {
    background: linear-gradient(90deg, #1d4ed8, #3b82f6, #06b6d4);
}

.wb-value-card:nth-child(2)::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa, #06b6d4);
}

.wb-value-card:nth-child(3)::before {
    background: linear-gradient(90deg, #065f46, #10b981, #06b6d4);
}

.wb-val-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform .32s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.wb-val-icon::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, transparent 70%);
    border-radius: 50%;
}

.wb-value-card:hover .wb-val-icon {
    transform: scale(1.1) rotate(-5deg);
}

.wb-value-card:nth-child(1) .wb-val-icon {
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    box-shadow: 0 5px 16px rgba(37, 99, 235, 0.28);
}

.wb-value-card:nth-child(2) .wb-val-icon {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    box-shadow: 0 5px 16px rgba(124, 58, 237, 0.28);
}

.wb-value-card:nth-child(3) .wb-val-icon {
    background: linear-gradient(135deg, #065f46, #10b981);
    box-shadow: 0 5px 16px rgba(16, 185, 129, 0.28);
}

.wb-val-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(0.85rem, 1.2vw, 0.96rem);
    font-weight: 800;
    color: #0b1f3a;
    margin: 0;
    position: relative;
    z-index: 1;
}

.wb-val-desc {
    font-size: clamp(0.78rem, 1.05vw, 0.84rem);
    color: #7a8fa6;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ── CARD HEAD ── */
.wb-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: clamp(20px, 2.5vw, 26px) clamp(22px, 3vw, 32px) 0;
    position: relative;
    z-index: 1;
}

.wb-head-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: transform .32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wb-head-icon::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, transparent 70%);
    border-radius: 50%;
}

.wb-card:hover .wb-head-icon {
    transform: scale(1.1) rotate(-5deg);
}

.policy-card .wb-head-icon {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    box-shadow: 0 5px 16px rgba(124, 58, 237, 0.28);
}

.form-card .wb-head-icon {
    background: linear-gradient(135deg, #065f46, #10b981);
    box-shadow: 0 5px 16px rgba(16, 185, 129, 0.28);
}

.wb-card-head h3 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    font-weight: 800;
    color: #0b1f3a;
    margin: 0;
    line-height: 1.3;
}

.wb-card-head h3 span {
    display: block;
    font-weight: 500;
    font-size: 0.74rem;
    color: #7a8fa6;
    margin-top: 2px;
}

/* ── POLICY CARD ── */
.policy-text {
    font-size: clamp(0.82rem, 1.15vw, 0.88rem);
    color: #4a5f78;
    line-height: 1.8;
    margin: 0 0 14px;
}

.policy-text:last-of-type {
    margin-bottom: 0;
}

.wb-how-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: #0b1f3a;
    margin: 18px 0 10px;
}

.wb-how-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.wb-how-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: clamp(0.8rem, 1.1vw, 0.86rem);
    color: #3d5068;
    line-height: 1.6;
}

.wb-how-num {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 7px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 0.62rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.wb-regards {
    margin-top: 20px;
    padding: 14px 18px;
    background: rgba(37, 99, 235, 0.04);
    border-left: 3px solid #2563eb;
    border-radius: 0 12px 12px 0;
    font-size: 0.84rem;
    color: #3d5068;
    line-height: 1.7;
}

/* ── FORM CARD ── */
.wb-form-label {
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0b1f3a;
    margin-bottom: 6px;
    display: block;
}

.wb-form-label .req {
    color: #ef4444;
    margin-left: 2px;
}

.wb-form-control {
    width: 100%;
    background: #f4f8fc;
    border: 1.5px solid rgba(37, 99, 235, 0.12);
    border-radius: 12px;
    padding: 11px 14px;
    font-family: 'Sora', sans-serif;
    font-size: 0.84rem;
    color: #0b1f3a;
    transition: border-color .25s, box-shadow .25s, background .25s;
    outline: none;
    resize: vertical;
}

.wb-form-control::placeholder {
    color: #aab8c8;
}

.wb-form-control:focus {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    background: #fff;
}

.wb-form-hint {
    font-size: 0.72rem;
    color: #7a8fa6;
    margin-top: 5px;
}

.wb-form-divider {
    border: none;
    border-top: 1px solid rgba(37, 99, 235, 0.08);
    margin: 22px 0;
}

.wb-optional-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.84rem;
    font-weight: 800;
    color: #0b1f3a;
    margin-bottom: 5px;
}

.wb-optional-desc {
    font-size: 0.78rem;
    color: #7a8fa6;
    line-height: 1.6;
    margin-bottom: 16px;
}

.wb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.wb-form-group {
    margin-bottom: 18px;
}

.wb-form-group:last-child {
    margin-bottom: 0;
}

/* file input styling */
input[type="file"].wb-form-control {
    padding: 9px 14px;
    cursor: pointer;
}

input[type="file"].wb-form-control::-webkit-file-upload-button {
    background: linear-gradient(135deg, #065f46, #10b981);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 5px 12px;
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    margin-right: 10px;
    transition: opacity .2s;
}

input[type="file"].wb-form-control::-webkit-file-upload-button:hover {
    opacity: 0.85;
}

/* submit button */
.wb-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #065f46, #10b981);
    color: #1f54dd;
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all .28s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.30);
    letter-spacing: 0.3px;
}

.wb-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.40);
    opacity: 0.92;
}

.wb-btn-submit i {
    font-size: 1rem;
}

/* ── ANIMATIONS ── */
.fade-down {
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .6s ease .1s, transform .6s ease .1s;
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.wb-value-card:nth-child(1) {
    transition-delay: .05s;
}

.wb-value-card:nth-child(2) {
    transition-delay: .13s;
}

.wb-value-card:nth-child(3) {
    transition-delay: .21s;
}

.in-view {
    opacity: 1 !important;
    transform: none !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .wb-layout {
        grid-template-columns: 1fr;
    }

    .wb-intro {
        grid-column: 1;
    }

    .wb-values-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .wb-values-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .wb-form-row {
        grid-template-columns: 1fr;
    }

    .wb-card-head h3 {
        font-size: 0.88rem;
    }
}

@media (max-width: 576px) {
    .wb-values-row {
        grid-template-columns: 1fr;
    }

    .wb-layout {
        gap: 12px;
    }

    .wb-card .wb-card-body {
        padding: 16px;
    }

    .wb-card-head {
        padding: 16px 16px 0;
    }

    .wb-main-title {
        font-size: 1.7rem;
    }

    .wb-badge {
        font-size: 0.66rem;
        padding: 7px 16px;
        letter-spacing: 2px;
    }

    .wb-sub {
        font-size: 0.9rem;
    }

    .wb-btn-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .wb-main-title {
        font-size: 1.45rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .wb-card:hover {
        transform: none;
        box-shadow: 0 4px 24px rgba(11, 31, 58, 0.07);
    }

    .wb-value-card:hover {
        transform: none;
        box-shadow: 0 4px 24px rgba(11, 31, 58, 0.07);
    }

    .wb-btn-submit:hover {
        transform: none;
    }
}