/* pricing-page.css - Styles for the pricing page */

:root {
    --theme-main-color: #128C7E;
    --theme-accent-color: #FF00A5;
    --theme-text-dark: #1f2937;          /* Default text, main headings */
    --theme-text-medium-dark: #374151;   /* For descriptions, less prominent text */
    --theme-text-on-main: #FFFFFF;       /* Text on main-colored backgrounds/buttons */
    --theme-text-on-accent: #FFFFFF;     /* Text on accent-colored backgrounds */
    --theme-bg-light-neutral: #f9fafb;   /* Page/section background */
    --theme-bg-card: #FFFFFF;            /* Card backgrounds */
    --theme-border-neutral: #e5e7eb;     /* Borders for cards, dividers */
    --theme-main-color-darker: #0d7365;  /* Darker shade of main for hovers etc. */
}

/* Apply a background to the main pricing container if it exists, or body if this is the only page content */
/* Assuming a wrapper like .pricing-page-wrapper around pricing-content.php inclusion */
.pricing-page-wrapper {
    background-color: var(--theme-bg-light-neutral);
    color: var(--theme-text-dark);
    padding: 2rem 0; /* Add some vertical padding */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--theme-text-dark);
    margin-bottom: 0.75rem;
}

.pricing-description {
    font-size: 1.125rem;
    color: var(--theme-text-medium-dark);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-card {
    background-color: var(--theme-bg-card);
    border: 1px solid var(--theme-border-neutral);
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.popular-badge {
    background-color: var(--theme-accent-color);
    color: var(--theme-text-on-accent);
    font-size: 0.875rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    align-self: flex-start;
    margin-bottom: 1rem;
    display: inline-block;
}

.pricing-card.popular {
    border: 2px solid var(--theme-main-color);
    position: relative;
    /* You can remove the badge from the flow and position it absolutely if needed */
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--theme-main-color);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--theme-text-dark);
    margin-bottom: 1.5rem;
}

.plan-price span {
    font-size: 1rem;
    font-weight: normal;
    color: var(--theme-text-medium-dark);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--theme-text-medium-dark);
    font-size: 0.95rem;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--theme-main-color); /* Changed from fill to color for SVG currentColor */
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.plan-button {
    display: block;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    cursor: pointer;
    border: 2px solid transparent; /* Base border for consistent sizing */
}

/* Secondary button style (default for .plan-button) */
.plan-button {
    background-color: var(--theme-bg-card); /* Or transparent */
    color: var(--theme-main-color);
    border: 2px solid var(--theme-main-color);
}

.plan-button:hover {
    background-color: var(--theme-main-color-darker);
    color: var(--theme-text-on-main);
    border-color: var(--theme-main-color-darker);
}

/* Primary button style (for popular plan or main CTA button) */
.pricing-card.popular .plan-button,
.plan-button.primary { /* Add .primary class for explicit primary buttons if needed */
    background-color: var(--theme-main-color);
    color: var(--theme-text-on-main);
    border-color: var(--theme-main-color);
}

.pricing-card.popular .plan-button:hover,
.plan-button.primary:hover {
    background-color: var(--theme-main-color-darker);
    border-color: var(--theme-main-color-darker);
    color: var(--theme-text-on-main);
}


/* FAQ Section */
.pricing-faq {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.pricing-faq h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--theme-text-dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-item {
    background-color: var(--theme-bg-card);
    border: 1px solid var(--theme-border-neutral);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--theme-text-dark); /* Or var(--theme-main-color) for more emphasis */
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--theme-text-medium-dark);
    line-height: 1.7;
} 