/* Zamówienia - Program Cards */
#zamowienia-hero {
    background: linear-gradient(135deg, rgba(196, 23, 29, .65), rgba(52, 58, 64, .65)), url('../img/24.jpg') center/cover no-repeat;
}

.program-card {
    background: #fff;
    border-radius: .75rem;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
    border: 1px solid #f0f0f0;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(196, 23, 29, .15);
    border-color: var(--tt-red);
}

.program-card-header {
    display: flex;
    align-items: center;
    gap: .875rem;
    margin-bottom: 1rem;
}

.program-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--tt-red), #e74c3c);
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(196, 23, 29, .25);
}

.program-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--tt-dark);
    margin: 0;
    line-height: 1.3;
}

.program-subtitle {
    font-size: .75rem;
    font-weight: 400;
    color: #6c757d;
    margin: .25rem 0 0 0;
    line-height: 1.2;
}


.program-description {
    color: #6c757d;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    font-size: .9rem;
}

.program-card .btn {
    margin-top: auto;
    padding: .5rem 1rem;
    font-weight: 500;
    font-size: .9rem;
    transition: all .3s ease;
    border-width: 1.5px;
}

.program-card .btn:hover {
    background-color: var(--tt-red);
    border-color: var(--tt-red);
    color: #fff;
    transform: translateX(3px);
}

.program-card-special {
    border: 2px solid var(--tt-red);
    background: linear-gradient(135deg, rgba(196, 23, 29, .02), rgba(196, 23, 29, .05));
}

.program-card-special:hover {
    background: linear-gradient(135deg, rgba(196, 23, 29, .05), rgba(196, 23, 29, .08));
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .program-card {
        padding: 1.25rem;
    }

    .program-icon {
        width: 45px;
        height: 45px;
        font-size: 1.35rem;
    }

    .program-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .program-card-header {
        flex-direction: column;
        text-align: center;
    }

    .program-title {
        text-align: center;
    }
}

