﻿.pricing-section {
    background: linear-gradient(135deg, #fff7f0 0%, #ffffff 100%);
    padding: 80px 0;
}

    .pricing-section .pricing-card {
        background: #ffffff;
        padding: 40px;
        border-radius: 18px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        border: 1px solid #f0f0f0;
    }

        .pricing-section .pricing-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 55px rgba(0,0,0,0.12);
            border-color: #0198d6;
        }

.pricing-card .plan-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: #222;
}

.pricing-card .price {
    font-size: 46px;
    font-weight: 800;
    color: #12365b;
    margin-bottom: 25px;
    text-shadow: 0 2px 6px rgba(255,122,0,0.2);
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .pricing-card .features li {
        margin-bottom: 12px;
        font-size: 16px;
        color: #555;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

        .pricing-card .features li::before {
            content: "✔";
            font-size: 14px;
            color: #12365b;
            font-weight: bold;
        }

.pricing-card.popular {
    border: 2px solid #12365b;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    transform: scale(1.03);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to left, #0198d6, #12365b);
    color: #fff;
    padding: 6px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(141, 198, 245, 0.4);
}

.theme-btn.btn-style-one {
    background: linear-gradient(to left, #0198d6, #12365b);
    padding: 12px 20px !important;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    color: #fff !important;
}

    .theme-btn.btn-style-one:hover {
        opacity: 0.85;
        transform: scale(1.05);
    }
