/* =====================================================
   Pricing Page Styles
   ===================================================== */

.treatment-price-hero {
    background-image: linear-gradient(rgba(20, 20, 20, 0.35), rgba(20, 20, 20, 0.35)), url('../img/premise/hero-drclare-clinic-internal-treatment-chair-and-wall-picture-h800.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.treatment-price-hero .hero-title {
    color: var(--primary-timberwolf);
}

.treatment-price-hero .hero-subtitle {
    color: var(--light-gray);
}

.treatment-price-hero .trust-list {
    animation: fadeInUp 1.8s ease-out 1s backwards;
}

.price-overview-section {
    background-color: var(--primary-lighter);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.price-card {
    border: 1px solid var(--primary-light);
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.price-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.price-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--border-radius-sm);
    background: var(--primary-light);
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.price-card-title {
    color: var(--text-primary);
    font-size: 1.18rem;
    margin-bottom: 0;
}

.price-card-price {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    margin: 0;
}

.price-card-text {
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

.price-notes-section {
    background: var(--white);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.price-note-card {
    background: var(--primary-lighter);
    border: 1px solid var(--primary-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    height: 100%;
}

.price-note-title {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.price-note-list {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.price-note-list li {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0.45rem;
}

.price-table-section {
    background: var(--primary-lighter);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.price-table-card {
    background: var(--white);
    border: 1px solid var(--primary-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.25rem;
    height: 100%;
    transition: transform 0.6s ease, box-shadow 0.6s ease, border-color 0.6s ease;
}

.price-table-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.price-table-heading {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.price-table {
    margin-bottom: 0;
}

.price-table > :not(caption) > * > * {
    background-color: transparent;
    border-bottom: 1px solid var(--primary-light);
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 0.8rem 0.4rem;
}

.price-table tbody tr:last-child td {
    border-bottom: 0;
}

.price-table td:last-child {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 767px) {
    .price-overview-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .price-notes-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .price-table-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .price-card-price {
        font-size: 1.4rem;
    }
}
