 /* ===== SECTION ===== */
    .pricing-section {
        background: #f8fcff;
    }

    /* ===== CARD ===== */
    .pricing-card {
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid #e6f4fa;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        transition: 0.3s ease;
        height: 100%;
    }

    .pricing-card:hover {
        transform: translateY(-6px);
        border-color: #06A3DA;
        box-shadow: 0 15px 35px rgba(6, 163, 218, 0.15);
    }

    /* ===== HEADER ===== */
    .pricing-header {
        text-align: center;
        padding: 30px 20px 15px;
    }

    .pricing-header h4 {
        color: #06A3DA;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .pricing-header small {
        color: #6c757d;
        font-size: 13px;
    }

    /* ===== PRICE ===== */
    .pricing-price {
        font-size: 34px;
        font-weight: 700;
        color: #212529;
        text-align: center;
        margin: 10px 0 20px;
    }

    /* ===== FEATURES ===== */
    .pricing-features {
        padding: 0 30px 25px;
        font-size: 14px;
    }

    .pricing-features .d-flex {
        padding: 6px 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .pricing-features .d-flex:last-child {
        border-bottom: none;
    }

    .pricing-features i {
        color: #06A3DA;
    }

    /* ===== BUTTON ===== */
    .pricing-btn {
        display: block;
        width: 80%;
        margin: 20px auto 30px;
        background: #06A3DA;
        color: #fff;
        border-radius: 30px;
        padding: 10px;
        text-align: center;
        font-weight: 600;
        transition: 0.3s ease;
        text-decoration: none;
    }

    .pricing-btn:hover {
        background: #0592c3;
        box-shadow: 0 8px 20px rgba(6, 163, 218, 0.25);
    }

    /* ===== FEATURED PLAN ===== */
    .featured-plan {
        border: 2px solid #06A3DA;
    }

    .featured-label {
        text-align: center;
        background: #06A3DA;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 0;
        border-radius: 16px 16px 0 0;
    }

        .icon-box {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #06A3DA, #0d6efd);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #fff;
        box-shadow: 0 10px 25px rgba(6, 163, 218, 0.35);
    }

    .why-card {
        transition: all 0.35s ease;
        border-radius: 16px;
        border: 1px solid rgba(6, 163, 218, 0.12);
    }

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(6, 163, 218, 0.18);
        border-color: #06A3DA;
    }

    .service-item {
        transition: all 0.4s ease;
        border-radius: 16px;
        padding: 32px 22px;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(6, 163, 218, 0.08);
        border: 1px solid rgba(6, 163, 218, 0.12);
    }

    .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(6, 163, 218, 0.18);
        border-color: #06A3DA;
    }

    .service-icon {
        width: 75px;
        height: 75px;
        background: linear-gradient(135deg, #06A3DA, #0d6efd);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 28px;
        color: #fff;
        box-shadow: 0 12px 30px rgba(6, 163, 218, 0.35);
    }

    .service-item h5 {
        font-weight: 600;
        color: #0d6efd;
    }

    .service-item p {
        font-size: 14px;
        color: #6c757d;
    }

    .service-item .btn {
        margin-top: 15px;
        padding: 8px 18px;
        border-radius: 30px;
        background: linear-gradient(135deg, #06A3DA, #0d6efd);
        color: #fff;
        border: none;
        transition: 0.3s ease;
    }

    .service-item .btn:hover {
        background: linear-gradient(135deg, #0d6efd, #084298);
        transform: translateY(-2px);
    }