﻿:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --accent-color: #0ea5e9;
    --success-color: #10b981;
    --dark-bg: #1e293b;
    --text-light: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 0 20px;
}

.toggle-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-gray);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .toggle-btn:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    .toggle-btn.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

/* Pricing Plans Grid */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .pricing-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-color);
    }

    .pricing-card.featured {
        border-color: var(--primary-color);
        border-width: 3px;
        transform: scale(1.05);
    }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-4px);
        }

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.plan-description {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.plan-features {
    flex: 1;
    margin-bottom: 2rem;
}

    .plan-features h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .plan-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .plan-features li {
        padding: 0.75rem 0;
        font-size: 0.95rem;
        color: var(--text-gray);
        border-bottom: 1px solid var(--border-color);
        padding-left: 1.5rem;
        position: relative;
    }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .plan-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-color);
            font-weight: 600;
            font-size: 1.2rem;
        }

.plan-footer {
    margin-top: auto;
}

.plan-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.75rem;
}

/* All-Inclusive Pricing Card */
.all-inclusive-card {
    max-width: 800px;
    margin: 3rem auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .all-inclusive-card h2 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 2rem;
        color: var(--text-dark);
    }

.price-amount-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period-large {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.pricing-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

    .pricing-features ul li {
        padding: 0.75rem 0;
        color: var(--text-gray);
        padding-left: 2rem;
        position: relative;
    }

        .pricing-features ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success-color);
            font-weight: 600;
            font-size: 1.2rem;
        }

/* Comparison Table */
.comparison-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: white;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

    .comparison-table thead {
        background: var(--bg-light);
    }

    .comparison-table th {
        padding: 1rem;
        text-align: left;
        font-weight: 600;
        font-size: 0.875rem;
        color: var(--text-dark);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 2px solid var(--border-color);
    }

        .comparison-table th:first-child {
            width: 40%;
        }

        .comparison-table th:not(:first-child) {
            text-align: center;
            width: 20%;
        }

    .comparison-table td {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

        .comparison-table td:first-child {
            font-weight: 500;
            color: var(--text-dark);
        }

        .comparison-table td:not(:first-child) {
            text-align: center;
            color: var(--text-gray);
        }

    .comparison-table tbody tr:hover {
        background: var(--bg-light);
    }

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem;
}

    .faq-item h4 {
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 0.75rem;
    }

    .faq-item p {
        font-size: 0.95rem;
        color: var(--text-gray);
        line-height: 1.6;
    }

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    width: auto;
}

    .cta-section .btn-primary:hover {
        background: var(--bg-light);
    }

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

    .cta-section .btn-secondary:hover {
        background: white;
        color: var(--primary-color);
    }

/* Responsive */
@media (max-width: 768px) {
    .pricing-plans {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

        .pricing-card.featured:hover {
            transform: translateY(-4px);
        }

    .price-amount-large {
        font-size: 2.5rem;
    }

    .comparison-table-wrapper {
        font-size: 0.875rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

        .cta-buttons .btn {
            width: 100%;
        }
}
