/* ==========================================================================
   PREMIUM GLOWING PRICING SECTION STYLES
   ========================================================================== */


/* 1. VARIABLES & SYSTEM SETUP */

:root {
    --color-bg: #000000;
    --color-card-bg: #050101;
    --color-primary-red: #FF1A24;
    --color-yellow-ribbon: #F7B500;
    --color-text-white: #FFFFFF;
    --color-text-desc: rgba(255, 255, 255, 0.85);
    --font-family: 'Oxanium', sans-serif;
    --transition-speed: 0.4s;
}


/* 2. SECTION CONTAINER */

.pricing-section {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}


/* 3. CARDS WRAPPER */

.pricing-cards-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}


/* 4. CARD CONTAINER & BACK-GLOW EFFECT */

.pricing-card-item {
    position: relative;
    width: 33.33%;
    flex-shrink: 0;
    transition: transform var(--transition-speed) ease;
    padding: 23px;
}


/* Red ambient back-glow behind card */

.pricing-card-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    height: 85%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 26, 36, 0.16) 0%, rgba(255, 26, 36, 0) 70%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(25px);
    transition: background var(--transition-speed) ease, width var(--transition-speed) ease, height var(--transition-speed) ease;
}


/* 5. PRICING CARD MAIN DESIGN */

.pricing-card {
    width: 100%;
    height: auto;
    background-color: #00000038;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    position: relative;
    z-index: 2;
    /* Sits in front of ambient glow */
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Glowing border-shadow */
    box-shadow: 0px 4px 14px 0px #FFFFFF1C;
    transition: box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease;
}


/* 6. STEP NUMBER BADGE */

.pricing-badge {
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    position: absolute;
    top: 3px;
    left: 12px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


/* 7. RED HEADER BAR */

.pricing-header {
    width: calc(100% - 30px);
    height: 67px;
    background-color: #ec1f26;
    border-radius: 10px;
    margin: 15px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.pricing-header-title {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text-white);
    text-align: center;
    line-height: 37px;
    padding-bottom: 0 !important;
}


/* 8. PRICE TAG RIBBON (CSS Clip-Path Swallowtail Shape) */

.pricing-ribbon {
    background-color: var(--color-yellow-ribbon);
    width: fit-content;
    min-width: 183px;
    height: 66px;
    margin: 0 auto 0 auto;
    clip-path: polygon( 15px 50%, 0% 0%, 100% 0%, calc(100% - 15px) 50%, 100% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    padding: 0 18px;
}

.pricing-text {
    font-family: var(--font-family);
    font-size: 38px;
    font-weight: 800;
    color: #000000;
    text-align: center;
    line-height: 1;
}


/* 9. DESCRIPTION AREA */

.pricing-desc-area {
    padding: 40px 20px 36px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    text-align: center;
}

.pricing-desc {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text-desc);
    line-height: 37px;
}

.pink_slip_btn.two_btns_box {
    margin-top: 30px !important;
}


/* 10. HOVER EFFECTS */


/* .pricing-card-item:hover {
    transform: translateY(-8px) scale(1.02);
} */

.pricing-card-item:hover::before {
    /* Ambient red glow intensifies */
    background: radial-gradient(circle, rgba(255, 26, 36, 0.28) 0%, rgba(255, 26, 36, 0) 75%);
    width: 100%;
    height: 100%;
}


/* .pricing-card-item:hover .pricing-card {
    border-color: rgba(255, 26, 36, 0.35);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.12), 0 0 50px rgba(255, 0, 36, 0.45);
} */


/* ==========================================================================
   11. RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   ========================================================================== */


/* --- 1681px to 1880px (Slightly Increase Spacing) --- */

@media all and (min-width: 1681px) and (max-width: 1880px) {}


/* --- 1441px to 1680px (Preserve Exact Spacing) --- */

@media all and (min-width: 1441px) and (max-width: 1680px) {
    .pricing-header-title {
        font-size: 26px;
        line-height: 32px;
    }
    .pricing-header {
        height: 55px;
    }
    .pricing-text {
        font-size: 30px;
    }
    .pricing-ribbon {
        min-width: 163px;
        height: 55px;
    }
    .pricing-desc-area {
        padding: 30px 20px 30px 20px;
    }
    .pricing-desc {
        font-size: 18px;
        line-height: 34px;
    }
    .pricing-card-item {
        padding: 18px;
    }
}


/* --- 1281px to 1440px (Desktop Layout) --- */

@media all and (min-width: 1281px) and (max-width: 1440px) {
    .pricing-header-title {
        font-size: 20px;
        line-height: 28px;
    }
    .pricing-header {
        height: 45px;
    }
    .pricing-text {
        font-size: 24px;
    }
    .pricing-ribbon {
        min-width: 138px;
        height: 45px;
    }
    .pricing-desc-area {
        padding: 23px 15px 23px 15px;
    }
    .pricing-desc {
        font-size: 17px;
        line-height: 28px;
    }
    .pricing-card-item {
        padding: 10px;
    }
    .pricing-badge {
        width: 40px;
        height: 40px;
        top: 0px;
        left: 0px;
    }
    .pricing-header {
        width: calc(100% - 20px);
        margin: 10px auto 0 auto;
    }
}


/* --- 1141px to 1280px (Scale Cards Proportionally) --- */

@media all and (min-width: 1141px) and (max-width: 1280px) {
    .pricing-header-title {
        font-size: 20px;
        line-height: 28px;
    }
    .pricing-header {
        height: 45px;
    }
    .pricing-text {
        font-size: 24px;
    }
    .pricing-ribbon {
        min-width: 138px;
        height: 45px;
    }
    .pricing-desc-area {
        padding: 23px 15px 23px 15px;
    }
    .pricing-desc {
        font-size: 17px;
        line-height: 28px;
    }
    .pricing-card-item {
        padding: 10px;
    }
    .pricing-badge {
        width: 40px;
        height: 40px;
        top: 0px;
        left: 0px;
    }
    .pricing-header {
        width: calc(100% - 20px);
        margin: 10px auto 0 auto;
    }
}


/* --- 1025px to 1140px (Reduce Gaps) --- */

@media all and (min-width: 1025px) and (max-width: 1140px) {
    .pricing-header-title {
        font-size: 20px;
        line-height: 28px;
    }
    .pricing-header {
        height: 45px;
    }
    .pricing-text {
        font-size: 24px;
    }
    .pricing-ribbon {
        min-width: 138px;
        height: 45px;
    }
    .pricing-desc-area {
        padding: 23px 15px 23px 15px;
    }
    .pricing-desc {
        font-size: 17px;
        line-height: 28px;
    }
    .pricing-card-item {
        padding: 10px;
    }
    .pricing-badge {
        width: 40px;
        height: 40px;
        top: 0px;
        left: 0px;
    }
    .pricing-header {
        width: calc(100% - 20px);
        margin: 10px auto 0 auto;
    }
}


/* --- 981px to 1024px (Reduce Card Width Proportionally) --- */

@media only screen and (min-width: 981px) and (max-width: 1024px) {
    .pricing-header-title {
        font-size: 18px;
        line-height: 24px;
    }
    .pricing-header {
        height: 40px;
    }
    .pricing-text {
        font-size: 20px;
    }
    .pricing-ribbon {
        min-width: 118px;
        height: 40px;
    }
    .pricing-desc-area {
        padding: 20px 15px 20px 15px;
    }
    .pricing-desc {
        font-size: 16px;
        line-height: 26px;
    }
    .pricing-card-item {
        padding: 10px;
    }
    .pricing-badge {
        width: 36px;
        height: 36px;
        top: 0px;
        left: 0px;
        font-size: 18px;
    }
    .pricing-header {
        width: calc(100% - 20px);
        margin: 10px auto 0 auto;
    }
}


/* --- 768px to 980px (2 Cards Row, Third Centered Below) --- */

@media all and (min-width: 768px) and (max-width: 980px) {
    .pricing-header-title {
        font-size: 17px;
        line-height: 24px;
    }
    .pricing-header {
        height: 40px;
    }
    .pricing-text {
        font-size: 20px;
    }
    .pricing-ribbon {
        min-width: 118px;
        height: 40px;
    }
    .pricing-desc-area {
        padding: 20px 15px 20px 15px;
    }
    .pricing-desc {
        font-size: 13px;
        line-height: 22px;
    }
    .pricing-card-item {
        padding: 10px;
    }
    .pricing-badge {
        width: 34px;
        height: 34px;
        top: 0px;
        left: 0px;
        font-size: 16px;
    }
    .pricing-header {
        width: calc(100% - 20px);
        margin: 10px auto 0 auto;
    }
}


/* --- 481px to 767px (Single Column, Slightly Increased Card Width) --- */

@media all and (min-width: 481px) and (max-width: 767px) {
    .pricing-header-title {
        font-size: 17px;
        line-height: 24px;
    }
    .pricing-header {
        height: 40px;
    }
    .pricing-text {
        font-size: 20px;
    }
    .pricing-ribbon {
        min-width: 118px;
        height: 40px;
    }
    .pricing-desc-area {
        padding: 20px 15px 20px 15px;
    }
    .pricing-desc {
        font-size: 13px;
        line-height: 22px;
    }
    .pricing-card-item {
        padding: 5px;
        width: 50%;
    }
    .pricing-badge {
        width: 34px;
        height: 34px;
        top: 0px;
        left: 0px;
        font-size: 16px;
    }
    .pricing-header {
        width: calc(100% - 20px);
        margin: 10px auto 0 auto;
    }
    .pricing-cards-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* --- 320px to 480px (Mobile, Smallest Screen Settings) --- */

@media all and (min-width: 320px) and (max-width: 480px) {
    .pricing-header-title {
        font-size: 17px;
        line-height: 24px;
    }
    .pricing-header {
        height: 40px;
    }
    .pricing-text {
        font-size: 20px;
    }
    .pricing-ribbon {
        min-width: 118px;
        height: 40px;
    }
    .pricing-desc-area {
        padding: 20px 15px 20px 15px;
    }
    .pricing-desc {
        font-size: 13px;
        line-height: 22px;
    }
    .pricing-card-item {
        padding: 10px;
        width: 100%;
    }
    .pricing-badge {
        width: 34px;
        height: 34px;
        top: 0px;
        left: 0px;
        font-size: 16px;
    }
    .pricing-header {
        width: calc(100% - 20px);
        margin: 10px auto 0 auto;
    }
    .pricing-cards-wrapper {
        flex-wrap: wrap;
    }
}