/* ========================================
   PAGE FORMULES - STYLES
   ======================================== */


/* Hero Formules */
.formules-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0F1216 0%, #1a1d24 100%);
    position: relative;
    overflow: hidden;
}

.formules-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.formules-hero__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.formules-hero__title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.formules-hero__subtitle {
    font-size: 1.25rem;
    color: #B0B7C3;
    margin-bottom: 2rem;
}

/* Navigation rapide */
.formules-hero__nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.formules-hero__link {
    padding: 0.75rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.formules-hero__link:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3B82F6;
    transform: translateY(-2px);
}

/* Info Cards */
.formules-info {
    padding: 3rem 0;
    background: #0F1216;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.formules-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.formules-info__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(176, 183, 195, 0.9);
    font-size: 0.9375rem;
}

.formules-info__card svg {
    color: #3B82F6;
    flex-shrink: 0;
}

.formules-info__card--highlight {
    border-color: rgba(254, 240, 13, 0.3);
    background: rgba(254, 240, 13, 0.03);
}

.formules-info__card--highlight svg {
    color: #F5C400;
}

/* Section Formules */
.formules-section {
    padding: 5rem 0;
    background: #0F1216;
}

.formules-section--alt {
    background: linear-gradient(180deg, #000000 0%, #1a1d24 100%);
}

.formules-section--moto {
    background: linear-gradient(135deg, #1a1d24 0%, #000000 100%);
}

.formules-section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Grille des formules */
.formules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.formules-grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
}

.formules-grid--center {
    max-width: 500px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

/* Carte Formule */
.formule-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.formule-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

/* Carte Featured */
.formule-card--featured {
    border-color: rgba(254, 240, 13, 0.3);
    box-shadow: 0 8px 30px rgba(254, 240, 13, 0.1);
}

.formule-card--featured:hover {
    border-color: #F5C400;
    box-shadow: 0 15px 40px rgba(254, 240, 13, 0.25);
}

/* Carte Promo */
.formule-card--promo {
    border-color: rgba(254, 240, 13, 0.4);
    box-shadow: 0 8px 30px rgba(254, 240, 13, 0.15);
}

.formule-card--promo:hover {
    border-color: #F5C400;
    box-shadow: 0 15px 40px rgba(254, 240, 13, 0.3);
}

/* Badge */
.formule-card__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: #3B82F6;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.formule-card__badge--promo {
    background: linear-gradient(135deg, #F5C400 0%, #EAB308 100%);
    color: #000000;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(254, 240, 13, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(254, 240, 13, 0);
    }
}

/* Header de carte */
.formule-card__header {
    margin-bottom: 1.5rem;
}

.formule-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.formule-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.formule-card__amount-old {
 
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.formule-card__amount {
    font-size: 3rem;
    color: #3B82F6;
    line-height: 1;
    letter-spacing: 1px;
}

.formule-card--promo .formule-card__amount {
    color: #F5C400;
}

.formule-card__period {
    font-size: 1rem;
    color: #B0B7C3;
}

.formule-card__promo-limit {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(254, 240, 13, 0.1);
    border: 1px solid rgba(254, 240, 13, 0.3);
    border-radius: 50px;
    color: #F5C400;
    font-size: 0.8125rem;
    font-weight: 600;
}

.formule-card__hours {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50px;
    color: #3B82F6;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Liste */
.formule-card__list {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.formule-card__list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    color: rgba(176, 183, 195, 0.9);
    font-size: 0.9375rem;
    line-height: 1.6;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.formule-card__list li:last-child {
    border-bottom: none;
}

.formule-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3B82F6;
    font-weight: bold;
}

.formule-card--promo .formule-card__list li::before {
    color: #F5C400;
}

/* Promo Banner */
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(254, 240, 13, 0.1) 0%, rgba(254, 240, 13, 0.05) 100%);
    border: 2px solid rgba(254, 240, 13, 0.3);
    border-radius: 16px;
    margin-bottom: 3rem;
    text-align: center;
}

.promo-banner__icon {
    font-size: 3rem;
    animation: bounce-promo 2s ease-in-out infinite;
}

@keyframes bounce-promo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.promo-banner__content {
    text-align: left;
}

.promo-banner__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F5C400;
    margin-bottom: 0.5rem;
}

.promo-banner__text {
    color: rgba(176, 183, 195, 0.9);
    font-size: 1rem;
}

/* Pricing Table */
.formules-pricing {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000000 0%, #1a1d24 100%);
}

.pricing-table {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.pricing-table__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.pricing-table__row:last-child {
    border-bottom: none;
}

.pricing-table__row:hover {
    background: rgba(59, 130, 246, 0.05);
}

.pricing-table__item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.pricing-table__price {
    font-weight: 700;
    font-size: 1.25rem;
    color: #3B82F6;
}

.pricing-note {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.pricing-note svg {
    color: #3B82F6;
    flex-shrink: 0;
}

.pricing-note p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    margin: 0;
}

/* Section Financement */
.formules-financement {
    padding: 5rem 0;
    background: #0F1216;
}

.financement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.financement-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.financement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.financement-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #3B82F6;
}

.financement-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.financement-card__text {
    color: #B0B7C3;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.financement-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3B82F6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.financement-card__link:hover {
    color: #F5C400;
    gap: 0.75rem;
}

.financement-card__note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    color: rgba(176, 183, 195, 0.9);
    font-size: 0.875rem;
}

.financement-card__note svg {
    color: #3B82F6;
}

.financement-cta {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.financement-cta__text {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .formules-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .formules-hero {
        padding: 6rem 0 3rem;
    }
    
    .formules-hero__nav {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .formules-hero__link {
        width: 100%;
        text-align: center;
    }
    
    .formules-info__grid,
    .formules-grid,
    .financement-grid {
        grid-template-columns: 1fr;
    }
    
    .formules-section {
        padding: 3rem 0;
    }
    
    .formule-card {
        padding: 2rem;
    }
    
    .pricing-table__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }
    
    .promo-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-banner__content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .formule-card__amount {
        font-size: 2.5rem;
    }
    
    .formule-card__badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }
}
/* CTA Financement sur page formules */
.formules-financement-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.financement-cta__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.financement-cta__icon {
    width: 100px;
    height: 100px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #3B82F6;
}

.financement-cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.financement-cta__text {
    font-size: 1.25rem;
    color: #B0B7C3;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.financement-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .formules-financement-cta {
        padding: 3rem 0;
    }
    
    .financement-cta__icon {
        width: 80px;
        height: 80px;
    }
    
    .financement-cta__buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .financement-cta__buttons .btn {
        width: 100%;
    }
}
.formules-notes {
    padding: 3rem 0;
    background: #0F1216;
}

.formules-info__wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
}

.formules-info__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.formules-info__header svg {
    color: #3B82F6;
    flex-shrink: 0;
}

.formules-info__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.formules-info__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.formules-info__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: 0.3s;
}

.formules-info__item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(4px);
}

.formules-info__item svg {
    color: #3B82F6;
    flex-shrink: 0;
    margin-top: 2px;
}

.formules-info__item p {
    margin: 0;
    color: rgba(176, 183, 195, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.formules-info__item strong {
    color: #FFFFFF;
    font-weight: 600;
}

.formules-info__price {
    color: #F5C400;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .formules-notes {
        padding: 2rem 0;
    }
    
    .formules-info__wrapper {
        padding: 1.5rem;
    }
    
    .formules-info__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .formules-info__title {
        font-size: 1.25rem;
    }
    
    .formules-info__item {
        padding: 0.875rem;
        gap: 0.75rem;
    }
    
    .formules-info__item p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .formules-info__wrapper {
        padding: 1.25rem;
    }
    
    .formules-info__item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .formules-info__item svg {
        margin-top: 0;
    }
}