/* FOOTER CSS - STYLES AUTONOMES */
/* ============================== */

/* RESET POUR LE FOOTER UNIQUEMENT */
footer * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================== */
/* SECTION PAIEMENT SÉCURISÉ - VERSION COMPACTE */
/* ============================== */

.secure-payment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    padding: 25px 20px !important;
    border-top: 2px solid #d4a574 !important;
    position: relative !important;
    overflow: hidden !important;
}

.secure-payment-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.05) 0%, rgba(184, 132, 95, 0.05) 100%) !important;
    pointer-events: none !important;
}

.secure-payment-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 1 !important;
}

.secure-payment-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-bottom: 15px !important;
    flex-wrap: wrap !important;
}

.secure-payment-icon {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #d4a574 0%, #b8845f 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3) !important;
    animation: pulse 2s ease-in-out infinite !important;
    flex-shrink: 0 !important;
}

.secure-payment-icon i {
    font-size: 1.5rem !important;
    color: white !important;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    }
}

.secure-payment-text {
    text-align: center !important;
    flex: 1 !important;
    min-width: 250px !important;
}

.secure-payment-text h3 {
    color: #2c2c2c !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
    font-family: 'Playfair Display', serif !important;
}

.secure-payment-text p {
    color: #666 !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.secure-payment-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.stripe-logo {
    height: 35px !important;
    width: auto !important;
    filter: grayscale(20%) !important;
    transition: all 0.3s ease !important;
}

.stripe-logo:hover {
    filter: grayscale(0%) !important;
    transform: scale(1.05) !important;
}

/* Caractéristiques de paiement - Version compacte */
.payment-features {
    display: flex !important;
    justify-content: center !important;
    gap: 25px !important;
    flex-wrap: wrap !important;
    padding: 12px 0 0 0 !important;
    border-top: 1px solid rgba(212, 165, 116, 0.2) !important;
    margin-top: 12px !important;
}

.payment-feature {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 15px !important;
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

.payment-feature:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.payment-feature i {
    font-size: 1.2rem !important;
    color: #d4a574 !important;
}

.payment-feature span {
    color: #2c2c2c !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    white-space: nowrap !important;
}

/* ============================== */
/* FOOTER PRINCIPAL */
/* ============================== */

footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: #ecf0f1 !important;
    padding: 60px 0 20px 0 !important;
    margin-top: 0 !important;
    font-family: 'Roboto', sans-serif !important;
    position: relative !important;
    overflow: hidden !important;
}

footer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.1) 0%, rgba(210, 180, 140, 0.1) 100%) !important;
    pointer-events: none !important;
}

/* CONTENU FOOTER */
.footer-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 30px !important;
    gap: 60px !important;
    position: relative !important;
    z-index: 1 !important;
}

.footer-section {
    flex: 1 !important;
    min-width: 250px !important;
}

.footer-section h3 {
    color: #D2B48C !important;
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
    font-weight: 700 !important;
    font-family: 'Playfair Display', serif !important;
    position: relative !important;
}

.footer-section h3::after {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    left: 0 !important;
    width: 50px !important;
    height: 3px !important;
    background: linear-gradient(to right, #D2B48C, #8B4513) !important;
    border-radius: 2px !important;
}

.footer-section p {
    color: #bdc3c7 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    font-weight: 300 !important;
}

/* STYLES POUR LES LISTES ET LIENS DU FOOTER */
.footer-section ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-section li {
    margin-bottom: 10px !important;
}

.footer-section a {
    color: #ffffff !important;
    text-decoration: underline !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    font-weight: 300 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.footer-section a:hover {
    color: #D2B48C !important;
    text-decoration: underline !important;
    transform: translateX(5px) !important;
}

/* SECTION CONTACT */
.footer-section p[title] {
    color: #ecf0f1 !important;
    font-weight: 500 !important;
}

/* RÉSEAUX SOCIAUX */
.footer-social {
    display: flex !important;
    gap: 20px !important;
    margin-top: 25px !important;
}

.footer-social a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: #ecf0f1 !important;
    text-decoration: none !important;
    font-size: 20px !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
    backdrop-filter: blur(5px) !important;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #D2B48C, #8B4513) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.footer-social a[href*="instagram"]:hover {
    background: linear-gradient(135deg, #E4405F, #C13584) !important;
}

.footer-social a[href*="facebook"]:hover {
    background: linear-gradient(135deg, #3B5998, #8B9DC3) !important;
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 50px !important;
    padding-top: 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
}

.footer-bottom p {
    color: #95a5a6 !important;
    font-size: 14px !important;
    margin: 0 !important;
    font-weight: 300 !important;
    letter-spacing: 0.5px !important;
}

/* ============================== */
/* RESPONSIVE */
/* ============================== */

@media (max-width: 768px) {
    /* Section paiement sécurisé */
    .secure-payment-section {
        padding: 20px 15px !important;
    }

    .secure-payment-content {
        gap: 15px !important;
        margin-bottom: 12px !important;
    }

    .secure-payment-icon {
        width: 45px !important;
        height: 45px !important;
    }

    .secure-payment-icon i {
        font-size: 1.3rem !important;
    }

    .secure-payment-text {
        min-width: auto !important;
    }

    .secure-payment-text h3 {
        font-size: 1.2rem !important;
    }

    .secure-payment-text p {
        font-size: 0.85rem !important;
    }

    .stripe-logo {
        height: 30px !important;
    }

    .payment-features {
        gap: 15px !important;
        padding: 10px 0 0 0 !important;
        margin-top: 10px !important;
    }

    .payment-feature {
        padding: 6px 12px !important;
        gap: 6px !important;
    }

    .payment-feature i {
        font-size: 1rem !important;
    }

    .payment-feature span {
        font-size: 0.8rem !important;
    }

    /* Footer */
    footer {
        padding: 40px 0 20px 0 !important;
        margin-top: 0 !important;
    }

    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .footer-section {
        min-width: auto !important;
    }

    .footer-section h3 {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }

    .footer-section h3::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .footer-section p {
        font-size: 15px !important;
    }

    .footer-social {
        justify-content: center !important;
        gap: 15px !important;
        margin-top: 20px !important;
    }

    .footer-social a {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }

    .footer-bottom {
        margin-top: 30px !important;
        padding-top: 20px !important;
    }
}

@media (max-width: 480px) {
    /* Section paiement sécurisé */
    .secure-payment-section {
        padding: 15px 10px !important;
    }

    .secure-payment-content {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .secure-payment-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .secure-payment-icon i {
        font-size: 1.2rem !important;
    }

    .secure-payment-text h3 {
        font-size: 1.1rem !important;
    }

    .secure-payment-text p {
        font-size: 0.8rem !important;
    }

    .stripe-logo {
        height: 28px !important;
    }

    .payment-features {
        gap: 10px !important;
        padding: 8px 0 0 0 !important;
    }

    .payment-feature {
        padding: 5px 10px !important;
        gap: 5px !important;
    }

    .payment-feature i {
        font-size: 0.9rem !important;
    }

    .payment-feature span {
        font-size: 0.75rem !important;
    }

    /* Footer */
    footer {
        padding: 30px 0 15px 0 !important;
        margin-top: 0 !important;
    }

    .footer-content {
        padding: 0 15px !important;
        gap: 30px !important;
    }

    .footer-section h3 {
        font-size: 1.3rem !important;
    }

    .footer-section p {
        font-size: 14px !important;
    }

    .footer-social a {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
}

/* ============================== */
/* ANIMATIONS */
/* ============================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer .footer-section {
    animation: fadeInUp 0.8s ease-out forwards !important;
}

footer .footer-section:nth-child(1) {
    animation-delay: 0.2s !important;
}

footer .footer-section:nth-child(2) {
    animation-delay: 0.4s !important;
}

.footer-bottom {
    animation: fadeInUp 0.8s ease-out 0.6s forwards !important;
}