/* Pricing Page Styles */

.pricing-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.pricing-container {
    position: relative;
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    text-align: center;
    color: var(--burgundy-main);
    margin-bottom: 3rem;
    letter-spacing: 0.12em;
}

/* Pricing Sections */
.pricing-section {
    background: rgba(250, 248, 245, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    z-index: -1;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 400;
    color: var(--plum);
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-align: center;
}

/* Standard Session */
.standard-session {
    text-align: center;
}

.session-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
}

.price {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--burgundy-main);
    letter-spacing: 0.05em;
}

.duration {
    font-family: 'Lato', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--burgundy-light);
}

/* Session Supports */
.supports-section {
    background: rgba(255, 255, 255, 0.5);
}

.support-item {
    padding: 2rem;
    margin-bottom: 2rem;
    background: rgba(250, 248, 245, 0.6);
    border-radius: 6px;
    border-left: 3px solid var(--forest-green);
}

.support-item:last-child {
    margin-bottom: 0;
}

.support-heading {
    font-family: 'Lato', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--burgundy-main);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.support-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--burgundy-main);
    margin-bottom: 1rem;
}

.support-details {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.support-details li {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--burgundy-main);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.support-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-size: 1.3rem;
}

.support-details-text {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--burgundy-main);
    font-style: italic;
}

.support-note {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--burgundy-light);
    margin-top: 1rem;
    font-style: italic;
}

/* Why Section */
.why-section {
    background: rgba(156, 175, 136, 0.08);
    border-left: 3px solid var(--forest-green);
}

.why-content {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--burgundy-main);
}

.why-content p {
    margin-bottom: 1.5rem;
}

.why-content p:last-child {
    margin-bottom: 0;
}


/* Jump Link */
.jump-link {
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid var(--forest-green);
}

.jump-link:hover {
    color: var(--burgundy-main);
    border-bottom-color: var(--burgundy-main);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 3rem 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-page {
        padding: 2rem 1rem;
    }
    
    .pricing-section {
        padding: 2rem 1.5rem;
    }
    
    .pricing-section::before {
        display: none;
    }
    
    .session-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .support-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 1.5rem 1rem;
    }
    
    .support-item {
        padding: 1rem;
    }
    
    .support-heading {
        font-size: 1.15rem;
    }
    
    .support-description,
    .why-content {
        font-size: 1rem;
    }
}
