/* ==========================================================================
   Price Page Styles
   ========================================================================== */

.price-page .description1 p, .price-page .description2 p, .price-page .description3 p{
   text-align: left;
}

.box_content-price .description1 img {
   aspect-ratio: 16/9;
   border-radius: 10px;
   margin-top: 10px;
}

/* Image with Text Sections */
.price-page .ap-imagewithtext-section {
    padding: 60px 0;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
}

.price-page .ap-imagewithtext-section:first-of-type {
    border-top: none;
}

.price-page .ap-imagewithtext__wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.price-page .ap-imagewithtext-section--reverse .ap-imagewithtext__wrapper {
    flex-direction: row-reverse;
}

.price-page .ap-imagewithtext__image-wrapper {
    flex: 1;
    min-width: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.price-page .ap-imagewithtext__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.price-page .ap-imagewithtext__image-wrapper:hover .ap-imagewithtext__image {
    transform: scale(1.02);
}

.price-page .ap-imagewithtext__content-wrapper {
    flex: 1;
    min-width: 280px;
}

.price-page .ap-imagewithtext__content h3 {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 500;
    color: #282828;
}

.price-page .ap-imagewithtext__text-wrapper {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.price-page .ap-imagewithtext__text-wrapper p {
    margin-bottom: 20px;
}

.price-page .ap-imagewithtext__text-wrapper ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.price-page .ap-imagewithtext__text-wrapper ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

/*.price-page .ap-imagewithtext__text-wrapper ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}*/

/* CTA Section */
.price-page .service-cta-section {
    padding: 60px 0;
    background: #f5f5f5;
    text-align: center;
    margin: 40px 0 0;
}

.price-page .service-cta__content {
    max-width: 800px;
    margin: 0 auto;
}

.price-page .service-cta__content h2 {
    margin-bottom: 20px;
}

.price-page .service-cta__content .heading-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.price-page .service-cta__content .btn-more {
    display: flex;
    justify-content: center;
}

/* Responsive */
@media (max-width: 991px) {
    .price-page .ap-imagewithtext__wrapper {
        gap: 40px;
    }
    
    .price-page .ap-imagewithtext__content h3 {
        font-size: 28px;
    }
    
    .price-page .box_content-price {
        padding: 30px 20px;
        min-height: auto;
    }
    
    .price-page .box_content-price .description2 span {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .price-page .pricing-compare {
        padding: 40px 0;
    }
    
    .price-page .ap-imagewithtext-section {
        padding: 40px 0;
    }
    
    .price-page .ap-imagewithtext__wrapper,
    .price-page .ap-imagewithtext-section--reverse .ap-imagewithtext__wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .price-page .ap-imagewithtext__image-wrapper,
    .price-page .ap-imagewithtext__content-wrapper {
        flex: auto;
        width: 100%;
    }
    
    .price-page .ap-imagewithtext__content h3 {
        font-size: 24px;
    }
    
    .price-page .service-cta-section {
        padding: 40px 0;
    }
    
    .price-page .service-cta__content h2 {
        font-size: 24px;
    }
    
    .price-page .service-cta__content .heading-description {
        font-size: 16px;
    }
    
    .price-page .product-tabs__content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .price-page .box_content-price .description2 span {
        font-size: 32px;
    }
    
    .price-page .ap-imagewithtext__text-wrapper {
        font-size: 14px;
    }
    
    .price-page .ap-imagewithtext__text-wrapper ul li {
        font-size: 13px;
    }
}

/* Price page specific button styling */
.price-page .btn-base {
    font-size: 14px !important;
    padding: 12px 30px !important;
}

.price-page .btn-base svg {
    width: 16px;
    height: 16px;
}
/**
 * Price Page Additional Styles
 */

/* Image with text hover effects */
.price-page .ap-imagewithtext__image-wrapper {
    position: relative;
    overflow: hidden;
}

.price-page .ap-imagewithtext__image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.price-page .ap-imagewithtext__image-wrapper:hover::after {
    background: rgba(0, 0, 0, 0.05);
}

/* Pricing cards animation */
.price-page .box_content-price {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.price-page .box_content-price:nth-child(1) {
    animation-delay: 0.1s;
}

.price-page .box_content-price:nth-child(2) {
    animation-delay: 0.2s;
}

.price-page .box_content-price:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom scrollbar for content */
.price-page .description3 ul {
    max-height: 150px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.price-page .description3 ul::-webkit-scrollbar {
    width: 4px;
}

.price-page .description3 ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.price-page .description3 ul::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* Gradient border for active card */
.price-page .box_content-price:hover {
    border: 1px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary), #ffd700) border-box;
}

/* Responsive font adjustments */
@media (max-width: 768px) {
    .price-page .box_content-price .description2 span {
        font-size: 36px;
    }
    
    .price-page .box_content-price .heading.h5 {
        font-size: 24px;
    }
}