/* Pricing Plans Styling - Enhanced Design */
.pricing-plans-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 16px;
    margin-top: 10px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    padding: 10px;
}

/* Common styling for both offer boxes */
.trial-offer-box {
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 0 !important;
    margin-bottom: 15px !important;
    border: none !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    width: calc(50% - 10px);
    min-width: 350px;
    transform: translateZ(0);
    position: relative;
    display: flex;
    flex-direction: column;
}

.offer-header {
    position: relative;
    text-align: center;
    padding: 18px 15px;
    overflow: hidden;
}

.trial-offer-box .offer-header {
    background: linear-gradient(135deg, #8d4bd6, #82a6e2);
    color: white;
}

.annual-offer-box .offer-header {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    padding-top: 22px;
    padding-bottom: 22px;
    color: white;
    position: relative;
    overflow: hidden;
}

.annual-offer-box .offer-header:before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: 0;
}

.offer-header:before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.offer-header:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.offer-header-content {
    position: relative;
    z-index: 2;
}

.offer-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.offer-header h4 {
    color: white !important;
    margin: 8px 0 !important;
    font-weight: 700;
    font-size: 24px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.annual-offer-box .offer-header h4 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.offer-subtitle {
    display: block;
    font-size: 14px;
    margin-top: 3px;
    opacity: 0.9;
}

.offer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.offer-ribbon {
    position: absolute;
    top: 28px;
    right: -45px;
    transform: rotate(45deg);
    background: #ffc107;
    color: #333;
    padding: 7px 40px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 4;
}

/* Content section */
.offer-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 2;
    flex: 1; /* Make it take remaining space in flex container */
    display: flex;
    flex-direction: column;
}

.offer-columns {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.offer-features {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.offer-pricing {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.features-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.3px;
}

.features-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    border-radius: 3px;
}

.annual-offer-box .features-title:after {
    background: linear-gradient(90deg, #ff9966 0%, #ff5e62 100%);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(127, 216, 166, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    padding: 2px 0 2px 5px;
}

.annual-offer-box .feature-icon {
    background: rgba(106, 17, 203, 0.1);
}

.feature-icon i {
    font-size: 18px;
    color: #6a11cb;
}

.annual-offer-box .feature-icon i {
    color: #ff5e62;
}

.feature-text {
    flex-grow: 1;
}

.feature-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #333;
}

.feature-text span {
    display: block;
    font-size: 13px;
    color: #666;
    line-height: 1.3;
}

/* Pricing section */
.pricing-box {
    background: rgba(106, 17, 203, 0.05);
    border-radius: 18px;
    padding: 16px;
    margin-bottom: 15px;
    border: 1px solid rgba(106, 17, 203, 0.1);
}


.pricing-header {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 12px;
}

.pricing-title {
    font-size: 15px;
    color: #666;
    margin-bottom: 3px;
}

.price-amount {
    font-weight: 700;
    font-size: 32px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 10px 0 5px;
}

.annual-offer-box .price-amount {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
    background-clip: text;
}

.price-amount span {
    font-size: 18px;
    font-weight: 400;
    vertical-align: middle;
}

.pricing-features {
    margin-top: 20px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.pricing-feature i {
    font-size: 14px;
    color: #6a11cb;
    margin-right: 10px;
}

.annual-offer-box .pricing-feature i {
    color: #ff5e62;
}

.pricing-feature span {
    font-size: 15px;
    color: #333;
}

.trial-select-dates {
    margin: 15px 0;
}

/* Guarantee box - Redesigned */
.guarantee-box {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 12px 15px;
    border-radius: 12px;
    margin-top: 15px;
    border: 1px dashed rgba(106, 17, 203, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.guarantee-box:hover {
    transform: translateY(-2px);
    border-color: rgba(106, 17, 203, 0.3);
}

.annual-offer-box .guarantee-box {
    border-color: rgba(37, 117, 252, 0.15);
}

.guarantee-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(106, 17, 203, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    position: relative;
    overflow: hidden;
}

.annual-offer-box .guarantee-icon {
    background: rgba(37, 117, 252, 0.1);
}

.guarantee-icon i {
    font-size: 16px;
    color: #6a11cb;
}

.annual-offer-box .guarantee-icon i {
    color: #2575fc;
}

.guarantee-text {
    flex-grow: 1;
    padding-left: 2px;
}

.guarantee-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #333;
}

.guarantee-text p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.3;
    font-weight: 400;
}

/* Top pricing box styling - Minimalist */
.top-pricing-box {
    margin: 0 auto 15px;
    width: 95%;
    padding: 5px;
    text-align: center;
    border: none;
    position: relative;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.top-pricing-box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    z-index: 1;
    opacity: 0.5;
    transition: width 0.3s ease;
}

.top-pricing-box:hover {
    transform: translateY(-2px);
}

.top-pricing-box:hover:after {
    width: 50px;
    opacity: 0.7;
}

.top-pricing-box .pricing-header {
    position: relative;
    z-index: 2;
}

.top-pricing-box .pricing-title {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    opacity: 0.8;
}

.top-pricing-box .price-amount {
    font-size: 42px;
    font-weight: 800;
    color: #6a11cb;
    margin: 5px 0;
    line-height: 1;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.top-pricing-box .price-amount span {
    font-size: 16px;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 2px;
    letter-spacing: 0;
    opacity: 0.6;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-pricing-box .highlight-price {
    color: #2575fc;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-pricing-box .pricing-features {
    position: relative;
    z-index: 2;
    margin-top: 15px;
}

.top-pricing-box .pricing-feature {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-pricing-box .pricing-feature:last-child {
    margin-bottom: 0;
}

.top-pricing-box .pricing-feature i {
    margin-right: 8px;
    font-size: 14px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
}

.annual-offer-box .top-pricing-box {
    background: transparent;
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
}

.annual-offer-box .top-pricing-box .pricing-title {
    color: #6a11cb;
    font-weight: 600;
    opacity: 0.9;
}

.annual-offer-box .top-pricing-box .pricing-feature i {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hover effects */
.top-pricing-box:hover {
    transform: translateY(-3px);
}

.annual-offer-box .top-pricing-box:hover {
    transform: translateY(-2px);
}

.annual-offer-box .top-pricing-box:after {
    width: 40px;
    opacity: 0.7;
    height: 3px;
}

.annual-offer-box .top-pricing-box:hover:after {
    width: 60px;
}


.btn-start-trial {
    background: linear-gradient(90deg, #8d4bd6, #82a6e2) !important;
    border: none !important;
    color: white !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(106, 17, 203, 0.15) !important;
    width: 100% !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 15px !important;
    cursor: pointer;
}

.annual-offer-box {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: scale(1.03);
    z-index: 2;
    border: 2px solid rgba(106, 17, 203, 0.15) !important;
}

.annual-offer-box .btn-start-trial {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%) !important;
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.3) !important;
}

.btn-start-trial:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.annual-offer-box .btn-start-trial:before {
    background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
}

.btn-start-trial:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(106, 17, 203, 0.4) !important;
}

.annual-offer-box .btn-start-trial:hover {
    box-shadow: 0 12px 25px rgba(255, 94, 98, 0.4) !important;
}

.btn-start-trial:hover:before {
    opacity: 1;
}

.btn-start-trial:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3) !important;
}

.annual-offer-box .btn-start-trial:active {
    box-shadow: 0 5px 15px rgba(255, 94, 98, 0.3) !important;
}

.btn-start-trial i {
    margin-right: 10px;
}

/* Secure payment note */
.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
    opacity: 0.8;
}

.secure-note i {
    margin-right: 8px;
    color: #6a11cb;
}

.annual-offer-box .secure-note i {
    color: #ff5e62;
}

/* Date selection in trial offer */
/* Date selection - Redesigned */
.date-selection-box {
    position: relative;
    margin-bottom: 15px;
}

.date-selection-box h5.features-title {
    position: relative;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-bottom: 18px;
    padding-bottom: 8px;
    display: inline-block;
}

.date-selection-box h5.features-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    border-radius: 2px;
}

.date-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    position: relative;
}

.date-option {
    flex: 1;
    min-width: 110px;
    padding: 10px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-option:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.date-option:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    transition: width 0.3s ease;
}

.date-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    color: #333;
}

.date-option:hover:after {
    width: 80%;
}

.date-option.selected {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.08), rgba(37, 117, 252, 0.05));
    color: #6a11cb;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(106, 17, 203, 0.12);
}

.date-option.selected:before {
    opacity: 1;
}

.date-option.selected:after {
    width: 90%;
    background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
}



/* Responsive adjustments */
@media (max-width: 991px) {
    .trial-offer-box {
        width: 100%;
        min-width: 0;
    }
    
    .annual-offer-box {
        transform: none;
    }
    
    .pricing-plans-container {
        gap: 10px;
        padding: 5px;
    }

    .hide_mobile {
        display:none !important;
    }
    
    .offer-content {
        padding: 12px;
    }
    
    .features-list li {
        margin-bottom: 10px;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }
    
    .offer-columns {
        flex-direction: column;
        margin-bottom: 10px;
    }
    
    /* Hide less important feature descriptions on mobile */
    .feature-text span {
        /* display: none; */
    }
    
    .offer-header {
        padding: 12px 10px;
    }
    
    .offer-header h4 {
        font-size: 18px;
        margin: 5px 0 !important;
    }
    
    .offer-subtitle {
        font-size: 12px;
    }
    
    .offer-label {
        padding: 3px 8px;
        font-size: 10px;
        margin-bottom: 4px;
        display: none;
    }
    
    .offer-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .offer-ribbon {
        font-size: 11px;
        padding: 4px 24px;
        right: -30px;
        top: 22px;
    }
    
    .features-title {
        font-size: 16px;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }
    
    .feature-text strong {
        font-size: 14px;
    }
    
    .top-pricing-box {
        padding: 0;
        margin-bottom: 10px;
    }
    
    .top-pricing-box .pricing-title {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .top-pricing-box .price-amount {
        font-size: 32px;
        margin: 2px 0;
    }
    
    .guarantee-box {
        padding: 8px 10px;
        margin-top: 10px;
        display: none
    }
    
    .guarantee-icon {
        width: 28px;
        height: 28px;
    }
    .guarantee-text  {
        font-size: 13px;
    }
    
    .guarantee-text strong {
        font-size: 13px;
    }
    
    .guarantee-text p {
        font-size: 11px;
    }
    
    .btn-start-trial {
        padding: 10px 15px !important;
        font-size: 15px !important;
        margin-top: 10px !important;
    }
    
    .date-options {
        margin-top: 5px;
    }

}

@media (max-width: 480px) {
    .offer-content {
        padding: 10px;
    }
    
    .offer-header {
        padding: 10px 8px;
    }
    
    .offer-header h4 {
        font-size: 20px;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
    }
    
    .feature-icon i {
        font-size: 12px;
    }
    
    /* Hide offer features on very small screens to save space */
    .offer-features {
        /* display: none; */
    }

    
    .price-amount {
        font-size: 24px;
        letter-spacing: -0.5px;
    }
    
    .price-amount span {
        font-size: 12px;
    }
    
    .top-pricing-box .price-amount {
        font-size: 28px;
    }
    
    .btn-start-trial {
        padding: 8px 12px !important;
        font-size: 16px !important;
    }
    
    .secure-note {
        font-size: 10px;
    }
    
    .date-option {
        min-width: 80px;
        padding: 6px 4px;
        font-size: 14px;
    }
    
    .date-selection-box h5.features-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    /* Stack the date options vertically on very small screens */
    .date-options {
        flex-direction: column;
        gap: 5px;
    }
    
    /* Make the annual offer box same size as trial box */
    .annual-offer-box {
        transform: none;
        border-width: 1px !important;
    }
}
