/* Pricing Styles - Logan Detty Photo */

.pricing-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.pricing-block {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-header h2 {
    margin-top: 0;
    margin-bottom: 16px;
}

.pricing-header .subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pricing-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(253, 173, 1, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(253, 173, 1, 0.3);
}

.pricing-card.featured {
    border-color: var(--primary);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: #000;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-info {
    margin-bottom: 24px;
}

.package-info h4 {
    color: var(--primary);
    font-size: 1.25rem;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.package-info p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
    text-align: left;
}

.price {
    margin-bottom: 32px;
}

.price span {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features {
    flex-grow: 1;
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9375rem;
    position: relative;
    padding-left: 28px;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.features li:last-child {
    border-bottom: none;
}

.pricing-card .learn-more-btn {
    width: 100%;
    margin-top: 32px;
    text-align: center;
}

/* Add-ons Section */
.addons-section {
    padding: 80px 40px;
    background-color: var(--bg-dark);
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.addon-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.addon-card h4 {
    color: var(--text-primary);
    margin: 0 0 4px 0;
    font-size: 1rem;
}

.addon-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.875rem;
}

.addon-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    white-space: nowrap;
}

/* Media Queries */
@media screen and (max-width: 768px) {

    .pricing-section,
    .addons-section {
        padding: 60px 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .price span {
        font-size: 2rem;
    }
}