/* Premium Packages Section */
.premium-packages-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.premium-packages-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.premium-packages-grid::-webkit-scrollbar {
    display: none;
}

.premium-card {
    width: calc(30% - 20px);
    min-width: calc(30% - 20px);
    flex-shrink: 0;
    scroll-snap-align: start;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 992px) {
    .premium-card {
        width: calc(45% - 15px);
        min-width: calc(45% - 15px);
    }
}

@media (max-width: 768px) {
    .premium-card {
        width: calc(85% - 10px);
        min-width: calc(85% - 10px);
    }
}



.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Themes */
.theme-green {
    --card-color: #047857;
    --card-light: #f0fdf4;
}

.theme-blue {
    --card-color: #025ca5;
    --card-light: #f0f8ff;
}

.theme-purple {
    --card-color: #6b21a8;
    --card-light: #faf5ff;
}

/* Header */
.pc-header {
    display: flex;
    padding: 20px;
    gap: 15px;
    align-items: center;
    height: 150px; /* Fixed height to align all cards */
    box-sizing: border-box;
}

.pc-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--card-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.pc-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-icon i {
    font-size: 2.5rem;
    color: var(--card-color);
}

.pc-title-box {
    flex-grow: 1;
}

.pc-title-box h3 {
    margin: 0 0 5px;
    color: var(--card-color);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.pc-title-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

/* Highlights */
.pc-highlights {
    background: var(--card-color);
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
}

.pc-hl-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    line-height: 1.2;
}

.pc-hl-item i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.pc-hl-item span {
    font-size: 1rem;
    font-weight: 700;
}

/* Tests Section */
.pc-tests-section {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pc-tests-section h4 {
    margin: 0 0 15px;
    font-size: 0.85rem;
    color: var(--card-color);
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.pc-tests-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--card-color);
    opacity: 0.5;
}

.pc-tests-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
}

.pc-tests-list li {
    font-size: 0.85rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pc-tests-list li i {
    color: var(--card-color);
    font-size: 0.75rem;
    margin-top: 3px;
}

.more-tests-btn {
    display: block;
    text-align: center;
    padding: 10px 15px;
    margin-top: auto;
    background: var(--card-light);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 6px;
    color: var(--card-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}
.more-tests-btn:hover {
    background: var(--card-color);
    color: white;
}

/* Price Section */
.pc-price-section {
    margin: auto 20px 20px;
    border: 1px dashed rgba(0, 0, 0, 0.15);
    background: var(--card-light);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.pc-price-section span {
    display: block;
    font-size: 0.75rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.pc-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--card-color);
}

.pc-price del {
    font-size: 1rem;
    color: #999;
    margin-right: 5px;
}

/* Actions */
.pc-actions {
    display: flex;
    padding: 0 20px 20px;
    gap: 15px;
}

.pc-actions a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline {
    background: white;
    color: var(--card-color);
    border: 1px solid var(--card-color);
}

.btn-outline:hover {
    background: var(--card-color);
    color: white;
}

.btn-solid {
    background: var(--card-color);
    color: white;
    border: 1px solid var(--card-color);
}

.btn-solid:hover {
    background: var(--dark-blue);
    border-color: var(--dark-blue);
}

/* Benefits Strip */
.benefits-strip {
    background: #f8fafc;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 30px 0;
    margin-top: 20px;
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
}

.benefit-icon {
    font-size: 2rem;
    color: #047857;
}

.benefit-text strong {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 2px;
}

.benefit-text p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}