/* ========== PACKAGES PAGE ========== */
.pricing-table-section {
    padding: 85px 0;
    background: var(--cream);
}

.pricing-tables {
    display: flex;
    flex-direction: column;
    gap: 55px;
    margin-bottom: 55px;
}

.pricing-category {
    background: var(--warm-white);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 22px rgba(160, 120, 48, 0.08);
}

.pricing-category h3 {
    font-size: 1.4rem;
    padding: 25px 30px;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), rgba(253, 248, 240, 0.9));
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead th {
    background: linear-gradient(135deg, var(--cream-2), var(--cream-3));
    color: var(--text-secondary);
    padding: 16px 28px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(201, 168, 76, 0.2);
}

.pricing-table thead th:first-child {
    color: var(--gold-dark);
}

.pricing-table tbody td {
    padding: 18px 28px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover td {
    background: rgba(201, 168, 76, 0.04);
}

.pricing-table tbody td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.pricing-table tbody td strong {
    color: var(--gold-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
}

.table-btn {
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(160, 120, 48, 0.25);
}

.table-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(160, 120, 48, 0.4);
    color: var(--white);
}

.custom-package-cta {
    padding: 55px 40px;
    text-align: center;
    background: linear-gradient(135deg, #fdf8f0, #f5edd8);
    border: 2px dashed rgba(201, 168, 76, 0.35);
}

.custom-package-cta h3 {
    font-size: 2rem;
    margin-bottom: 14px;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
}

.custom-package-cta p {
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.82rem;
    }

    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 13px 16px;
    }

    .pricing-table thead th:nth-child(2),
    .pricing-table tbody td:nth-child(2) {
        display: none;
    }

    .custom-package-cta {
        padding: 35px 20px;
    }
}