/* ========================================
   PRICING PAGE DESIGN ENHANCEMENTS
   Modern, Premium Design Improvements
   ======================================== */

/* Pricing Area Container */
.pricingarea {
    background: linear-gradient(135deg, #fcfdff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Add subtle background pattern */
.pricingarea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(67, 34, 149, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(67, 34, 149, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.pricingarea .container {
    position: relative;
    z-index: 1;
}

/* Improved Heading */
.pricingarea .text h1 {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #432295 0%, #6a4cc7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.pricingarea .text p {
    font-size: 18px;
    color: #6e7076;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Pricing Cards */
.plan-columns {
    gap: 24px;
    perspective: 1000px;
    margin-top: 50px;
}

.plan-column {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Regular Card Styling */
.plan-column>div.plan-column-content {
    border-radius: 24px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(67, 34, 149, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    background: #ffffff;
}

.top-minus {
    background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%) !important;
    border: 2px solid rgba(67, 34, 149, 0.08);
}

/* Hover Effect for Regular Cards */
.plan-column:not(.plan-column-highlighted):hover>div.plan-column-content {
    box-shadow:
        0 12px 40px rgba(67, 34, 149, 0.15),
        0 0 0 1px rgba(67, 34, 149, 0.1);
}

/* Most Popular Card - Enhanced */
.plan-column-highlighted>div.plan-column-content {
    background: linear-gradient(135deg, #432295 0%, #5a3bb5 100%) !important;
    border: 3px solid #6a4cc7;
    box-shadow: 0 8px 12px rgba(67, 34, 149, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
}

.plan-column-highlighted:hover>div.plan-column-content {
    box-shadow: 0 6px 27px rgba(67, 34, 149, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Enhanced "Most Popular" Badge */
.plan-column-flash {
    background: linear-gradient(135deg, #ffc800 0%, #ffc800 100%) !important;
    color: #432295 !important;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 4px 15px rgba(255, 215, 0, 0.4),
        0 0 0 2px #432295;
    border-radius: 8px;
    padding: 10px 20px !important;
    width: auto !important;
    height: auto !important;
    top: -15px;
    right: 20px;
    transform: rotate(0deg) !important;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.plan-column-highlighted:before {
    display: none;
}

/* Plan Names */
.plan-column-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.plan-column-highlighted .plan-column-name {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Plan Description */
.plan-column-description {
    font-size: 16px;
    line-height: 24px;
    color: #6e7076;
}

.plan-column-highlighted .plan-column-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Display */
.plan-column-price {
    margin: 24px 0;
}

.plan-column-price-row {
    font-weight: 700;
}

.plan-column-price-num {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #432295 0%, #6a4cc7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-column-highlighted .plan-column-price-num {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.plan-column-pricerule {
    font-size: 16px;
    color: #6e7076;
    font-weight: 500;
}

.plan-column-highlighted .plan-column-pricerule {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Buttons - Enhanced */
.plan-column-cta a {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, #432295 0%, #5a3bb5 100%);
    color: #ffffff !important;
    box-shadow:
        0 4px 15px rgba(67, 34, 149, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.plan-column-cta a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.plan-column-cta a:hover::before {
    left: 100%;
}

.plan-column-cta a:hover {
    box-shadow:
        0 8px 25px rgba(67, 34, 149, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Highlighted Card CTA */
.plan-column-highlighted .plan-column-cta a {
    background: #ffffff !important;
    color: #432295 !important;
    box-shadow:
        0 4px 15px rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(67, 34, 149, 0.1);
}

.plan-column-highlighted .plan-column-cta a:hover {
    background: #ffc800 !important;
    color: #432295 !important;
    box-shadow:
        0 8px 25px rgba(255, 215, 0, 0.5),
        0 0 0 2px #432295;
}

/* Features List */
.plan-column-body {
    margin-top: 32px;
}

.plan-column-body strong {
    font-size: 16px;
    font-weight: 600;
    color: #432295;
    margin-bottom: 16px;
    display: block;
}

.plan-column-highlighted .plan-column-body strong {
    color: #ffc800;
}

.plan-column-body ol li,
.plan-column-body .ul-list li {
    font-size: 15px;
    line-height: 28px;
    padding-left: 12px;
    color: #323338;
}

.plan-column-highlighted .plan-column-body ol li,
.plan-column-highlighted .plan-column-body .ul-list li {
    color: rgba(255, 255, 255, 0.95);
}

.plan-column-body ol li::before,
.plan-column-body .ul-list li::before {
    background: linear-gradient(135deg, #432295 0%, #5a3bb5 100%);
    box-shadow: 0 2px 8px rgba(67, 34, 149, 0.3);
    font-size: 13px;
}

.plan-column-highlighted .plan-column-body ol li::before,
.plan-column-highlighted .plan-column-body .ul-list li::before {
    background: linear-gradient(135deg, #ffc800 0%, #ffd54e 100%);
    color: #432295;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

/* Add-ons Section */
.add-ons {
    background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%);
    padding: 60px 0;
}

.add-ons-item h4 {
    background: linear-gradient(135deg, #432295 0%, #5a3bb5 100%) !important;
    border-radius: 12px 12px 0 0;
    font-size: 18px;
    padding: 18px 15px !important;
}

.add-ons-item h4:after {
    border-top-color: #432295 !important;
}

.even-bg h4 {
    background: linear-gradient(135deg, #225469 0%, #2a6881 100%) !important;
}

.add-ons-item ul li p {
    font-size: 15px;
    padding: 12px 10px 12px 28px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.add-ons-item ul li p:hover {
    background: rgba(67, 34, 149, 0.05);
    padding-left: 32px;
}

.add-ons-item ul li p:after {
    background: linear-gradient(135deg, #432295 0%, #5a3bb5 100%);
    box-shadow: 0 2px 6px rgba(67, 34, 149, 0.3);
}

/* Responsive Improvements */
@media (max-width: 991px) {
    .plan-columns {
        flex-direction: column;
        align-items: stretch;
    }

    .plan-column {
        margin-bottom: 24px;
    }

    .plan-column-highlighted>div.plan-column-content {
        transform: scale(1);
    }

    .pricingarea .text h1 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .plan-column-flash {
        top: -12px;
        right: 10px;
        font-size: 12px;
        padding: 8px 16px !important;
    }

    .plan-column-name {
        font-size: 26px;
    }

    .plan-column-price-num {
        font-size: 42px;
    }
}

/* Newsletter/CTA Section */
.newsleeter {
    background: linear-gradient(135deg, #432295 0%, #5a3bb5 100%);
    position: relative;
    overflow: hidden;
}

.newsleeter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsleeter .text h2 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.newsleeter .btn.is-fill {
    background: #ffc800;
    color: #432295;
    font-weight: 700;
    padding: 10px 40px;
    border-radius: 50px;
    box-shadow:
        0 4px 20px rgba(255, 215, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    line-height: normal;
    font-size: 20px;
}

.newsleeter .btn.is-fill:hover {
    background: #ffffff;
    color: #432295;
    transform: translateY(0px);
    box-shadow:
        0 8px 30px rgba(255, 255, 255, 0.5),
        0 0 0 2px #ffc800;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.plan-column {
    animation: fadeInUp 0.6s ease-out backwards;
}

.plan-column:nth-child(1) {
    animation-delay: 0.1s;
}

.plan-column:nth-child(2) {
    animation-delay: 0.2s;
}

.plan-column:nth-child(3) {
    animation-delay: 0.3s;
}