/* ===== CSS Voyageurs - Table de Pricing ===== */

/* ===== Styles pour renderPricingTable (pricing.php) ===== */
.pricing-table-container {
    margin: 0 auto;
    padding: 2em;
    text-align: center;
}

.pricing-header-section {
    text-align: center;
    margin-bottom: 1em;
    position: relative;
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    animation: headerFadeIn 0.8s ease-out 0.2s forwards;
    backdrop-filter: blur(20px);
}

.pricing-premium-title {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-tight);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-premium-subtitle {
    font-size: var(--font-size-xl);
    color: #4A4A4A;
    margin: 0 0 24px 0;
    line-height: var(--line-height-base);
    font-weight: var(--font-weight-medium);
    opacity: 0.9;
}

.pricing-toggle-container {
    text-align: center;
    margin-bottom: 16px;
}

.pricing-user-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pricing-toggle-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 16px;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-toggle-btn--active {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-toggle-btn--inactive {
    background: transparent;
    color: #4A4A4A;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes headerFadeIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes floatHeader {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Section principale pricing */
.pricing-section-container {
    background: #FFFFFF;
    position: relative;
    z-index: 0;
    padding: 16px 2%;
    border-top: 0px solid rgba(0, 0, 0, 0.08);
}

/* Header section */
.header-section {
    text-align: center;
    margin-bottom: 1em;
    position: relative;
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    animation: headerFadeIn 0.8s ease-out 0.2s forwards;
    backdrop-filter: blur(20px);
}

.premium-title {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.premium-subtitle {
    font-size: var(--font-size-xl);
    color: #4A4A4A;
    margin: 0 0 24px 0;
    line-height: 1.5;
    font-weight: var(--font-weight-medium);
    opacity: 0.9;
}

/* Centrage et responsive de la grille */
#pricing-grid {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

