﻿
.custom-option-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.custom-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.option-icon {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.option-price {
    text-align: center;
    margin-top: auto;
}

.process-step {
    position: absolute;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.step-number-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 2rem;
    border: 3px solid rgba(255,255,255,0.3);
}

.process-step-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    height: 100%;
}

    .process-step-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

.step-features {
    background: rgba(0,0,0,0.02);
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .custom-option-card {
        padding: 1.5rem 1rem;
    }

    .process-step-card {
        padding: 1.5rem 1rem;
    }

    .step-number-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .custom-features .col-sm-6 {
        margin-bottom: 1rem;
    }

    .display-6 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1rem;
    }
}
