.wa-auto-pricing {
    background-color: #f8fafc;
    padding: 80px 0;

    .top-badge {
        color: #1ea2d1;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: #000000;
    }

    .pricing-grid-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 60px auto 0 auto;
    }

    .pricing-card-box {
        background: #ffffff;
        border-radius: 24px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(28, 68, 125, 0.04);
        border: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        transition: transform 0.3s ease;
        height: 100%;

        &:hover {
            transform: translateY(-5px);
        }

        .card-header-area {
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            margin-bottom: 15px;

            &.light-blue-bg {
                background-color: rgba(30, 162, 209, 0.1);
            }

            &.navy-bg {
                background-color: #1c447d;
            }

            &.red-bg {
                background-color: #e32a26;
            }
        }

        .package-name {
            font-size: 1.15rem;
            font-weight: 700;
            color: #000000;
            margin-bottom: 15px;
        }

        .navy-bg .package-name,
        .red-bg .package-name {
            color: #ffffff;
        }

        .price-display {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1;

            &.color-navy {
                color: #1c447d;
            }
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;

            li {
                font-size: 14px;
                color: #4c4646;
                display: flex;
                align-items: center;
                gap: 10px;
                font-weight: 400;
            }

            .check-icon {
                font-weight: 800;

                &.color-light-blue {
                    color: #1ea2d1;
                }

                &.color-navy {
                    color: #1c447d;
                }

                &.color-red {
                    color: #e32a26;
                }
            }
        }

        .btn-pricing {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px;
            border-radius: 15px;
            font-weight: 400;
            font-size: 15px;
            text-decoration: none !important;
            transition: all 0.2s ease;

            &.btn-outline-navy {
                border: 1px solid #1c447d;
                color: #1c447d !important;
                background: transparent;

                &:hover {
                    background-color: #1c447d;
                    color: #ffffff !important;
                }
            }

            &.btn-solid-red {
                background-color: #e32a26;
                color: #ffffff !important;
                border: 1px solid #e32a26;

                &:hover {
                    background-color: #be1e1a;
                    border-color: #be1e1a;
                }
            }
        }

        .popular-tag {
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #1c447d;
            color: #ffffff;
            font-weight: 400;
            font-size: 15PX;
            padding: 3px 24px;
            border-radius: 50px;
            z-index: 5;
        }
    }

    .highlighted-card {
        border: 2px solid #e32a26;
    }
}

@media (max-width: 991px) {
    .wa-auto-pricing {
        .pricing-grid-wrapper {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

@media (max-width: 768px) {
    .wa-auto-pricing {
        .pricing-grid-wrapper {
            grid-template-columns: 1fr;
        }

        .section-title {
            font-size: 2rem;
        }

        .pricing-card-box {
            margin-bottom: 20px;
        }
    }




    .swiper-pagination.pagination-swiper-card {
        position: relative !important;
        bottom: 0 !important;
        margin-top: 25px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}