.compare-plans {
    color: white !important;
}

.compare-plans-subtitle {
    color: white !important;
}

.pricing-header {
    text-align: center;
    margin: 40px 0 50px;
}

.pricing-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-header p {
    color: #a9aeb3 !important;
}

.pricing-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    background-color: #ffffff;
}


.pricing-card:hover {
    transform: scale(1.03);
}

.pricing-card .card-body {
    padding: 1.5rem;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.price {
    font-size: 1.75rem;
    font-weight: bold;
    margin: 15px 0;
    color: #343a40;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.feature-list li {

    padding: 7px 0;
    border-bottom: 1px solid #f1f3f5;
    display: flex;
    align-items: center;
}

.feature-list i {
    margin-right: 10px;
}

.btn-choose {
    margin-top: 20px;
    width: 100%;
}

.most-popular {
    border: 2px solid #ffc107;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 16px;
    background-color: #ffc107;
    color: #212529;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 20px;
}

.btn-choose {
    margin-top: 20px;
    width: 100%;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

.btn-choose.btn-outline-primary {
    border: 2px solid #0D5E95;
    background-color: transparent;
    color: #0D5E95;
}

.btn-choose.btn-outline-primary:hover {
    background-color: #0D5E95;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 94, 149, 0.3);
    transform: translateY(-2px);
}

.btn-choose.btn-warning {
    background-color: #ffc107;
    border: 2px solid #ffc107;
    color: #212529;
}

.btn-choose.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
    }

    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.btn-highlight-pulse {
    animation: pulse 2s infinite;
}

.btn-contact-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0D5E95;
    background-color: transparent;
    border: 2px solid #0D5E95;
    border-radius: 30px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.btn-contact-custom i {
    margin-right: 8px;
    font-size: 1rem;
}

.btn-contact-custom:hover {
    background-color: #0D5E95;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 94, 149, 0.3);
    transform: translateY(-1px);
}

.custom-plan-section {
    background-color: #f4f9fc;
}

.btn-contact-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0D5E95;
    background-color: transparent;
    border: 2px solid #0D5E95;
    border-radius: 30px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.btn-contact-custom i {
    margin-right: 8px;
    font-size: 1rem;
}

.btn-contact-custom:hover {
    background-color: #0D5E95;
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 94, 149, 0.3);
    transform: translateY(-1px);
}

.btn-choose {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
    background-color: #0D5E95;
    color: #fff;
    border: none;
}

.btn-choose:hover {
    background-color: #0b4e7d;
    box-shadow: 0 4px 12px rgba(13, 94, 149, 0.25);
    transform: translateY(-1px);
}