/* ================== PACKAGES / PRICING SECTION CSS ================== */
.xb-contact-form .thm-btn {
    position: unset;
}

.dezignexperts-price-plan-section {
    padding: 120px 0;
}

.dezignexperts-inner-section-title {
    margin-bottom: 70px;
}

.dezignexperts-inner-section-title h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.dezignexperts-inner-section-title .sub-title {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00FF97;
    font-weight: 600;
}

.dezignexperts-faq-price-content .row {
    margin: 0 -15px;
}

/* Single Package Card */
.dezignexperts-faq-price-inner-item {
    background: #171717;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    border: 1px solid #292929;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dezignexperts-faq-price-inner-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 255, 151, 0.15);
}

.dezignexperts-faq-price-inner-item.active {
    border-color: #00FF97;
    box-shadow: 0 0 0 3px rgba(0, 255, 151, 0.2);
    transform: scale(1.03);
}

/* Title & Price */
.dezignexperts-faq-price-title {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 25px;
}

.dezignexperts-faq-price-title .price-plan {
    display: inline-block;
    background: rgba(0, 255, 151, 0.1);
    color: #00FF97;
    padding: 6px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.dezignexperts-faq-price-title h3 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.dezignexperts-faq-price-title h3 span {
    font-size: 16px;
    font-weight: 400;
    color: #94a3b8;
}

/* Slug / Description */
.dezignexperts-faq-price-slug {
    text-align: center;
    color: #cbd5e1;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Features List */
.dezignexperts-faq-price-list ul {
    padding: 0;
    margin: 0 0 35px 0;
    list-style: none;
}

.dezignexperts-faq-price-list ul li {
    padding: 11px 0;
    color: #e2e8f0;
    font-size: 15.5px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    padding-left: 28px;
}

.dezignexperts-faq-price-list ul li:last-child {
    border-bottom: none;
}

.dezignexperts-faq-price-list ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00FF97;
    font-weight: bold;
}

/* ================== PACKAGES FEATURES SCROLL (Improved) ================== */
.dezignexperts-faq-price-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dezignexperts-faq-price-list.ul-li-block ul {
    max-height: 380px;
    overflow-y: auto !important;
    overflow-x: hidden;
    margin-bottom: 20px;
    padding-right: 15px;
    padding-left: 5px;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #00FF97 #292929;
}

/* Beautiful Green Scrollbar */
.dezignexperts-faq-price-list.ul-li-block ul::-webkit-scrollbar {
    width: 7px;
}

.dezignexperts-faq-price-list.ul-li-block ul::-webkit-scrollbar-track {
    background: #292929;
    border-radius: 20px;
}

.dezignexperts-faq-price-list.ul-li-block ul::-webkit-scrollbar-thumb {
    background: linear-gradient(#00ff97, #00cc7a);
    border-radius: 20px;
    box-shadow: 0 0 8px rgba(0, 255, 151, 0.5);
}

.dezignexperts-faq-price-list.ul-li-block ul::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#00ffaa, #00e68c);
    box-shadow: 0 0 12px rgba(0, 255, 151, 0.7);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .dezignexperts-faq-price-inner-item {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .dezignexperts-faq-price-inner-item {
        padding: 35px 25px;
    }
    .dezignexperts-price-plan-section {
    padding: 0;
}

.dezignexperts-faq-price-inner-item {
    transform: translateY(0);
}
    .dezignexperts-faq-price-title h3 {
        font-size: 36px;
    }

.dezignexperts-faq-price-content .col-lg-4.col-md-6 {
    margin-bottom: 40px;
}
    .dezignexperts-faq-price-list.ul-li-block ul {
        max-height: 260px;
    }
}

@media (max-width: 480px) {
    .dezignexperts-faq-price-list.ul-li-block ul {
        max-height: 220px;
    }
}

/* Button */
.dezignexperts-faq-price-btn a {
    display: block;
    background: #00FF97;
    color: #0f172a;
    text-align: center;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.4s ease;
    margin-top: auto; /* Pushes button to bottom */
}

.dezignexperts-faq-price-btn a:hover {
    background: #fff;
    transform: translateY(-3px);
}