/* Pricing Comparison Section */
.pricing-comparison-section {
    padding: 80px 0;
    background-color: var(--vn-cream);
    position: relative;
    z-index: 1;
}

.comparison-cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 35px;
    max-width: 500px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.comparison-card {
    flex: 1;
    background: #ffffff;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.card-standard {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 5px solid var(--vn-orange);
}

.card-standard:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.card-premium {
    background: var(--vn-emerald);
    color: #ffffff;
    border: 2px solid var(--vn-gold);
    transform: scale(1.03);
}

.card-premium:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 77, 64, 0.3);
}

/* Badge for Best Value */
.best-value-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--vn-orange);
    color: #ffffff;
    padding: 6px 22px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* Card Header */
.card-header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.card-title-group {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.badge-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-standard .badge-icon-circle {
    background: #e8f5e9;
    color: var(--vn-emerald);
}

.card-premium .badge-icon-circle {
    background: rgba(255, 255, 255, 0.1);
    color: var(--vn-gold);
}

.card-package-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0;
}

.card-standard .card-package-title {
    color: var(--vn-emerald);
}

.card-premium .card-package-title {
    color: #ffffff;
}

/* Price Section */
.card-price-wrapper {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
}

.currency-symbol {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 5px;
}

.card-standard .currency-symbol {
    color: var(--vn-emerald);
}

.card-premium .currency-symbol {
    color: var(--vn-gold);
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 5.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.card-standard .price-amount {
    color: var(--vn-emerald);
}

.card-premium .price-amount {
    color: var(--vn-gold);
}

.price-star {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 5px;
}

.card-standard .price-star {
    color: var(--vn-emerald);
}

.card-premium .price-star {
    color: var(--vn-gold);
}

.price-per-couple {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 12px;
    margin-left: 6px;
}

.card-standard .price-per-couple {
    color: #666666;
}

.card-premium .price-per-couple {
    color: rgba(255, 255, 255, 0.7);
}

/* Divider */
.card-divider {
    height: 1px;
    margin: 25px 0;
}

.card-standard .card-divider {
    background: rgba(0, 0, 0, 0.08);
}

.card-premium .card-divider {
    background: rgba(255, 255, 255, 0.15);
}

/* Features List */
.card-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.card-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
}

.card-standard .card-features-list li {
    color: #333333;
}

.card-premium .card-features-list li {
    color: #e0e0e0;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 0.85rem;
}

.feature-icon.check {
    color: #2e7d32;
}

.card-premium .feature-icon.check {
    color: var(--vn-gold);
}

.feature-icon.cross {
    color: #c62828;
}

.card-premium .feature-icon.cross {
    color: rgba(255, 255, 255, 0.4);
}

.card-features-list li.feature-disabled {
    text-decoration: line-through;
}

.card-standard .card-features-list li.feature-disabled {
    color: #a0a0a0;
}

.card-premium .card-features-list li.feature-disabled {
    color: rgba(255, 255, 255, 0.4);
}

/* Footer & Buttons */
.card-footer-wrapper {
    width: 100%;
}

.btn-outline-deal {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: 2px solid var(--vn-emerald);
    color: var(--vn-emerald);
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-deal:hover {
    background: var(--vn-emerald);
    color: #ffffff;
}

.btn-solid-deal {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    background: var(--vn-orange);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2);
}

.btn-solid-deal:hover {
    background: #d35400;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pricing-comparison-section {
        padding: 60px 0;
    }

    .comparison-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-top: 30px;
    }

    .comparison-card {
        width: 100%;
        max-width: 440px;
        padding: 40px 30px;
    }

    .card-premium {
        transform: none;
    }

    .card-premium:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .comparison-card {
        padding: 30px 20px;
    }
    
    .card-title-group {
        gap: 10px;
    }
    
    .badge-icon-circle {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        min-width: 38px; /* Prevent shrinking */
    }
    
    .card-package-title {
        font-size: 1.05rem;
        letter-spacing: 0.5px;
    }
    
    .price-amount {
        font-size: 2.6rem;
    }
    
    .currency-symbol {
        font-size: 1.4rem;
        margin-top: 2px;
    }
    
    .price-star {
        font-size: 1.2rem;
    }
    
    .price-per-couple {
        font-size: 0.85rem;
        margin-left: 3px;
        margin-bottom: 2px;
    }
}