/* ==============================
   COMPONENTS.CSS
   - Cards, buttons, mission, employer card,
     marquee, donate button, forms, animations
   ============================== */


/* ══════════════════════════════════════════════════════════
   PREMIUM BUTTONS
══════════════════════════════════════════════════════════ */

/* Gold primary — main hero CTA */
.btn-vp-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-cond);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    background: var(--gold);
    color: var(--navy);
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-vp-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 0;
}

.btn-vp-primary:hover::before { transform: scaleX(1); }
.btn-vp-primary span,
.btn-vp-primary i { position: relative; z-index: 1; }
.btn-vp-primary:hover {
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}

/* Ghost — secondary CTA */
.btn-vp-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-cond);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-vp-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Hero gradient button (general pages) */
.btn-hero {
    background: linear-gradient(135deg, #0dcaf0, #007bff);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    padding: 14px 32px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #007bff, #0dcaf0);
    color: #fff;
    cursor: pointer;
}

/* Choice buttons (veteran/spouse flow) */
.btn-choice {
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 28px;
    transition: all 0.3s ease;
}
.btn-choice.btn-primary        { background: #0d6efd; color: #fff; border: 2px solid #0d6efd; }
.btn-choice.btn-primary:hover  { background: #fff; color: #0d6efd; }
.btn-choice.btn-success        { background: #198754; color: #fff; border: 2px solid #198754; }
.btn-choice.btn-success:hover  { background: #fff; color: #198754; }
.btn-choice.btn-outline-primary             { background: transparent; color: #0d6efd; border: 2px solid #0d6efd; }
.btn-choice.btn-outline-primary:hover       { background: #0d6efd; color: #fff; }

/* 3D Donate button */
.donate-cta {
    background: linear-gradient(145deg, #ff4d4d, #cc0000);
    border: none;
    color: white;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow:
        0 6px 0 #990000,
        0 10px 20px rgba(0, 0, 0, 0.35),
        inset 0 2px 4px rgba(255, 255, 255, 0.25);
    transition: all 0.18s ease;
}

.donate-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 #990000,
        0 14px 25px rgba(0, 0, 0, 0.45),
        0 0 18px rgba(255, 60, 60, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.25);
    color: white;
}

.donate-cta:active {
    transform: translateY(3px);
    box-shadow:
        0 2px 0 #990000,
        0 4px 10px rgba(0, 0, 0, 0.3),
        inset 0 3px 6px rgba(0, 0, 0, 0.3);
}

/* Global btn enhancements */
.btn { transition: all 0.2s ease-in-out; }
.btn:hover { transform: translateY(-1px); }

/* Loading state */
.btn-loading { pointer-events: none; opacity: 0.65; }
.btn-loading::after {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* ══════════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════════ */
.card {
    border: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card.transition-all:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.card:hover .bg-gradient.rounded-circle { transform: scale(1.1); }

/* Service cards */
.service-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    transition: all .35s ease;
    color: white;
}

.service-card p { color: rgba(255, 255, 255, 0.75); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 123, 255, 0.35);
}

.service-card.blue-gray {
    background-color: #1e293b;
    color: #e2e8f0;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-card.blue-gray p { color: #cbd5e1; }

.service-card.blue-gray:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Impact cards */
.impact-card {
    background: linear-gradient(145deg, #0f172a, #1e293b);
    color: #ffffff;
    border-radius: 20px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.impact-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.45),
        0 0 25px rgba(220, 38, 38, 0.25);
}

.impact-card:hover::before { opacity: 1; }
.impact-card h5 { color: #f8fafc; font-weight: 600; margin-bottom: 12px; }
.impact-card p  { color: #cbd5e1; line-height: 1.6; }

/* Job cards */
.job-card:hover {
    transform: translateY(-5px);
    transition: 0.2s ease;
}

/* Donation dialog */
.donation-dialog {
    background: linear-gradient(145deg, #020617, #0f172a);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.donation-dialog .btn-outline-light:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: white;
}

/* Allocation cards */
.donation-allocation-section {
    background: linear-gradient(180deg, #020617, #020617 40%, #0f172a);
    position: relative;
}

.allocation-card {
    background: linear-gradient(145deg, #0f172a, #1e293b);
    color: white;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.allocation-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.allocation-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.55),
        0 0 25px rgba(239, 68, 68, 0.18);
}

.allocation-card:hover::before { opacity: 1; }
.allocation-card h5 { color: #f8fafc; font-weight: 600; margin-bottom: 12px; }
.allocation-card p  { color: #cbd5e1; line-height: 1.6; }

.dialysis-card {
    border: 1px solid rgba(239, 68, 68, 0.35);
    box-shadow:
        0 0 40px rgba(239, 68, 68, 0.15),
        0 12px 30px rgba(0, 0, 0, 0.4);
}


/* ══════════════════════════════════════════════════════════
   FLOATING EMPLOYER CARD (hero right panel)
══════════════════════════════════════════════════════════ */
.vp-hero-card { animation: vpFadeLeft 1s 0.4s ease both; }

.vp-card-inner {
    background: var(--navy-surface);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    padding: 36px 32px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.vp-card-inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.vp-card-inner::after {
    content: '';
    position: absolute;
    bottom: 20px; right: 20px;
    width: 40px; height: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
}
}

.vp-card-badge {
    display: inline-block;
    background: var(--gold-dim);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    font-family: var(--font-cond);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.vp-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted-vp);
    margin: 0 0 8px;
}

.vp-card-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.15;
    margin: 0 0 16px;
}

.vp-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 24px;
}

.vp-card-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-cond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 2px;
    margin-bottom: 24px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.vp-card-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.vp-card-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vp-card-sectors span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 2px;
}


/* ══════════════════════════════════════════════════════════
   MISSION SECTION — global, reusable on any page
══════════════════════════════════════════════════════════ */
.mission-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2f4e 50%, #0a1628 100%);
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mission-container {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mission-label {
    font-family: var(--font-cond);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.mission-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.mission-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

.mission-statement {
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.8;
    color: #c8d8e8;
    font-style: italic;
    margin: 0 0 28px 0;
    padding: 0 10px;
    border: none;
}

.mission-founding {
    font-family: var(--font-cond);
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 60px;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

@media (max-width: 640px) {
    .mission-pillars { grid-template-columns: 1fr; gap: 16px; }
}

.pillar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 32px 20px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.pillar:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.06);
}

.pillar-icon { font-size: 36px; margin-bottom: 14px; }

.pillar-title {
    font-family: var(--font-cond);
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 10px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pillar-text {
    font-size: 14px;
    color: #a0b4c8;
    line-height: 1.7;
    margin: 0;
}

.mission-closing {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 40px;
}

.mission-closing-text {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    color: #ffffff;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}



/* ══════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════ */
.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

.form-step { display: none; animation: fadeIn 0.3s ease-in-out; }
.form-step.active { display: block; }

.progress { height: 8px; border-radius: 4px; }
.progress-bar { background-color: #1f2d3d; transition: width 0.3s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to   { opacity: 1; transform: translateX(0); }
}


/* ══════════════════════════════════════════════════════════
   DASHBOARD COMPONENTS
══════════════════════════════════════════════════════════ */
.dashboard-card { border-left: 4px solid var(--bs-primary); }
.dashboard-card.success { border-left-color: var(--bs-success); }
.dashboard-card.info    { border-left-color: var(--bs-info); }
.dashboard-card.warning { border-left-color: var(--bs-warning); }

.dashboard-stat-card {
    background: linear-gradient(135deg, currentColor, rgba(255, 255, 255, 0.1));
    border: none;
    color: white;
}

.dashboard-quick-action {
    border: 2px dashed var(--bs-border-color);
    transition: all 0.3s ease;
}

.dashboard-quick-action:hover {
    border-style: solid;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.profile-completion-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bs-border-color);
}
.profile-completion-item:last-child { border-bottom: none; }

.status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

/* Tables */
.table thead th {
    color: #212529 !important;
    background-color: #f8f9fa !important;
    font-weight: 600;
}


/* ══════════════════════════════════════════════════════════
   ANIMATIONS & UTILITIES
══════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease-out; }

.cursor-pointer { cursor: pointer; }
.min-vh-50 { min-height: 50vh; }
.transition-all { transition: all 0.3s ease; }

.border-gradient {
    border: 2px solid;
    border-image: var(--primary-gradient) 1;
}

.bg-gradient {
    background: linear-gradient(135deg, currentColor, rgba(255, 255, 255, 0.1));
}

.icon-lg { font-size: 3rem; }
.icon-md { font-size: 2rem; }

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.stats-section .display-4 {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem; top: 0; bottom: 0;
    width: 2px;
    background-color: var(--bs-border-color);
}
.timeline-item { position: relative; margin-bottom: 1.5rem; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.75rem; top: 0.25rem;
    width: 0.75rem; height: 0.75rem;
    background-color: var(--bs-primary);
    border-radius: 50%;
    border: 2px solid var(--bs-body-bg);
}

/* Alert */
.alert { border: none; border-radius: 8px; }

/* Sidebar */
.sidebar { position: sticky; top: 0; }
.sidebar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

/* Review card */
.review-card span { font-size: 1.1rem; letter-spacing: 2px; }

/* Services section */
.services-core-section {
    background: linear-gradient(180deg, #0b1a2e 0%, #081322 100%);
    position: relative;
}

.services-core-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 123, 255, 0.08), transparent 40%);
    pointer-events: none;
}

.services-core-section h2 { color: #ffffff; }
.services-core-section p  { color: rgba(255, 255, 255, 0.75); }

.sector-card {
    opacity: 0;
    transform: translateY(20px);
    animation: vpFadeUp 0.8s ease forwards;
}

.sector-card:nth-child(1) { animation-delay: 0.1s; }
.sector-card:nth-child(2) { animation-delay: 0.2s; }
.sector-card:nth-child(3) { animation-delay: 0.3s; }
.sector-card:nth-child(4) { animation-delay: 0.4s; }

/* ── Skills Translation Section ─────────────────────────────── */
.vp-skills-section {
  background: linear-gradient(160deg, #0a1628 0%, #0f2040 60%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.vp-skills-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(212,175,55,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Eyebrow */
.vp-skills-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D4AF37;
  margin-bottom: 16px;
}
.vp-skills-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #D4AF37;
  border-radius: 2px;
}

/* Heading */
.vp-skills-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 16px;
}
.vp-skills-heading-gold {
  color: #D4AF37;
}

.vp-skills-subtext {
  color: rgba(255,255,255,0.55);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}

/* Feature cards */
.vp-skills-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vp-skill-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.vp-skill-card:hover {
  background: rgba(212,175,55,0.07);
  border-color: rgba(212,175,55,0.3);
}

.vp-skill-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(212,175,55,0.12);
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.vp-skill-card strong {
  display: block;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.vp-skill-card p {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.5;
}

/* CTA */
.vp-skills-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #D4AF37, #f0d060);
  color: #0a1628;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.vp-skills-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #0a1628;
}

/* ── Right Visual Panel ────────────────────────────────────── */
.vp-skills-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

/* Stat chips */
.vp-skills-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  z-index: 10;
  backdrop-filter: blur(6px);
}
.vp-skills-chip i {
  color: #D4AF37;
}
.vp-skills-chip strong {
  color: #fff;
}
.vp-chip-top    { top: 10px;    right: 10px; }
.vp-chip-bottom { bottom: 10px; left: 10px; }

/* Graphic container */
.vp-skills-graphic {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbit rings */
.vp-skills-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.15);
}
.vp-ring-1 { width: 300px; height: 300px; animation: spin-slow 18s linear infinite; border-style: dashed; }
.vp-ring-2 { width: 200px; height: 200px; border-color: rgba(212,175,55,0.08); }

@keyframes spin-slow { to { transform: rotate(360deg); } }

/* Center badge */
.vp-skills-center-badge {
  position: relative;
  z-index: 5;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #f0d060);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #0a1628;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 0 40px rgba(212,175,55,0.35);
}
.vp-skills-center-badge i { font-size: 1.4rem; }

/* Orbiting items */
.vp-orbit-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-align: center;
  width: 70px;

  /* place at angle on the 150px radius circle */
  left: calc(50% + cos(var(--angle)) * 150px - 35px);
  top:  calc(50% - sin(var(--angle)) * 150px - 30px);
}
.vp-orbit-item i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #D4AF37;
  transition: background 0.2s ease;
}
.vp-orbit-item:hover i {
  background: rgba(212,175,55,0.15);
}

/* Responsive */
@media (max-width: 767px) {
  .vp-skills-visual { height: 340px; }
  .vp-skills-graphic { width: 240px; height: 240px; }
  .vp-ring-1 { width: 240px; height: 240px; }
  .vp-ring-2 { width: 160px; height: 160px; }
  .vp-orbit-item {
    left: calc(50% + cos(var(--angle)) * 118px - 35px);
    top:  calc(50% - sin(var(--angle)) * 118px - 30px);
  }
}

/* ══════════════════════════════════════════════════════════
   EMPLOYER PREMIUM SECTION
══════════════════════════════════════════════════════════ */

.employer-section {
    background: linear-gradient(180deg, #020617, #0b1a2e);
    padding: 100px 0;
    position: relative;
}

/* Benefits */
.employer-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 18px;
    color: var(--gold);
    margin-top: 4px;
}

.benefit-item h6 {
    margin: 0;
    font-weight: 600;
    color: #fff;
}

.benefit-item p {
    margin: 4px 0 0;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

/* Visual card */
.employer-visual-card {
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Stats */
.employer-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: var(--font-cond);
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 4px;
}

.stat p {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.vp-cta-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(160deg, #04080f 0%, #0a1628 40%, #04080f 100%);
  overflow: hidden;
}

/* Decorative vertical lines */
.vp-cta-bg-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
  z-index: 0;
}

.vp-cta-bg-lines span {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom,
    transparent,
    rgba(212, 175, 55, 0.07) 30%,
    rgba(212, 175, 55, 0.12) 50%,
    rgba(212, 175, 55, 0.07) 70%,
    transparent
  );
}

/* Gold radial glow center */
.vp-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Title */
.vp-cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.vp-cta-title em {
  color: var(--gold);
  font-style: italic;
}

/* Subtitle */
.vp-cta-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 48px;
}

/* Two cards */
.vp-cta-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

@media (max-width: 640px) {
  .vp-cta-cards {
    grid-template-columns: 1fr;
  }
  .vp-cta-divider-vertical { display: none; }
}

.vp-cta-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: left;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.vp-cta-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.04);
  transform: translateY(-4px);
}

.vp-cta-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 20px;
}

.vp-cta-card-icon-alt {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}

.vp-cta-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.vp-cta-card-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* OR divider */
.vp-cta-divider-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.vp-cta-divider-vertical::before,
.vp-cta-divider-vertical::after {
  content: '';
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.2), transparent);
}

/* Login prompt */
.vp-cta-login-prompt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
}

.vp-cta-login-prompt a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.vp-cta-login-prompt a:hover {
  color: var(--gold-light);
}

/* Larger primary button for authenticated state */
.btn-vp-primary-lg {
  padding: 18px 48px !important;
  font-size: 16px !important;
}

/* Full width button utility */
.btn-vp-primary.w-100,
.btn-vp-ghost.w-100 {
  width: 100%;
  justify-content: center;
}

/* ── Tab Switcher in Hero ── */
.vp-tab-switcher {
  display: inline-flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 6px;
  margin-top: 8px;
}

.vp-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vp-tab-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.vp-tab-btn.active {
  background: var(--gold);
  color: var(--navy);
}

.vp-tab-btn i {
  font-size: 14px;
}

@media (max-width: 640px) {
  .vp-tab-switcher {
    flex-direction: column;
    width: 100%;
  }
  .vp-tab-btn { justify-content: center; }
}

/* ── Contact Form Card ── */
.vp-contact-form-card {
  background: rgba(15, 32, 64, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 48px 40px;
  backdrop-filter: blur(12px);
}

@media (max-width: 640px) {
  .vp-contact-form-card { padding: 28px 20px; }
}

/* Required star */
.vp-required {
  color: #f87171;
  margin-left: 2px;
}

/* Consent checkbox row */
.vp-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.vp-consent-check {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.vp-consent-label span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}