.program-section {
    background: var(--surface);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.program-head {
    text-align: center;
    margin-bottom: 24px;
}

.program-title {
    font-size: 34px;
    font-weight: 600;
    margin: 6px 0 16px;
}

.program-tabs {
    display: inline-flex;
    background: #e9e9e9;
    padding: 6px;
    border-radius: 999px;
    gap: 6px;
}

.program-tabs .tab {
    border: none;
    padding: 8px 18px;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
}

.program-tabs .tab.active {
    background: var(--navy);
    color: #fff;
}

.program-search {
    margin: 20px auto;
    max-width: 500px;
}

.program-search input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.program-card .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

.program-card svg {
    width: 100%;
    height: 100%;
    stroke: var(--navy);
    stroke-width: 1.5;
    fill: none;
    transition: 0.3s;
}

.program-card:hover svg {
    stroke: var(--gold);
    transform: scale(1.1);
}

.program-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px;
    position: relative;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.program-card:hover {
    transform: translateY(-6px);
    border-color: rgba(13, 36, 86, 0.15);
    box-shadow: 0 14px 30px rgba(13, 36, 86, 0.12);
}

.program-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.program-card p {
    font-size: 13px;
    color: var(--muted);
}

.program-card .badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(13, 36, 86, 0.08);
    color: var(--navy);
}

.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.wa-float svg {
    width: 30px;
    height: 30px;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
