/* ========================================
   CTA CARDS - Design moderne horizontal
   ======================================== */

.cta-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 4rem 0;
    max-width: 100%;
    margin: 0;
}

.cta-card-inline {
    background: linear-gradient(135deg, #003893 0%, #0052cc 100%);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 56, 147, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.cta-card-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(220, 20, 60, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-card-inline:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 56, 147, 0.4);
}

.cta-card-inline:hover::before {
    opacity: 1;
}

.cta-card-content {
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-icon i.fa-heart {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        color: white;
    }
    10% {
        transform: scale(1.2);
        color: #DC143C;
    }
    20% {
        transform: scale(1);
        color: white;
    }
    30% {
        transform: scale(1.2);
        color: #DC143C;
    }
    40% {
        transform: scale(1);
        color: white;
    }
}

.cta-card-inline:hover .cta-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.25);
}

.cta-text-content {
    flex: 1;
}

.cta-card-content h3 {
    color: white;
    font-size: 2rem;
    margin: 0 0 0.75rem 0;
    font-weight: 700;
    line-height: 1.2;
}

.cta-card-content p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.cta-card-content .btn {
    background: white;
    color: #003893;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    align-self: flex-start;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: donateCallToAction 3s ease-in-out infinite;
}

@keyframes donateCallToAction {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
    }
}

.cta-card-content .btn:hover {
    animation: none;
}

.cta-card-content .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #DC143C;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.cta-card-content .btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-card-content .btn:hover {
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.cta-card-content .btn i,
.cta-card-content .btn img {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-card-content .btn:hover i {
    transform: translateX(5px);
}

/* CTA Image Button Styling */
.cta-image-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

/* Contact CTA Card - Classic Style */
.contact-cta-card-classic {
    background: white;
    border-radius: 20px;
    padding: 5rem 4.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    position: relative;
    min-height: 280px;
}

.contact-cta-card-classic:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.contact-cta-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    background: linear-gradient(135deg, #003893 0%, #0052cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 56, 147, 0.25);
    transition: all 0.3s ease;
}

.contact-cta-card-classic:hover .contact-cta-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 56, 147, 0.35);
}

.contact-cta-text {
    flex: 1;
}

.contact-cta-title {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
}

.contact-cta-description {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.contact-cta-btn {
    background: linear-gradient(135deg, #003893 0%, #0052cc 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 56, 147, 0.3);
    white-space: nowrap;
    display: inline-block;
}

.contact-cta-btn:hover {
    background: linear-gradient(135deg, #002566 0%, #003893 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 56, 147, 0.4);
}

.cta-button-image {
    height: 70px;
    width: auto;
    display: block;
    border-radius: 35px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-image-link:hover {
    transform: translateY(-2px);
}

.cta-image-link:hover .cta-button-image {
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* ========================================
   NEWSLETTER SUBSCRIBE CARD
   ======================================== */

.newsletter-subscribe-card {
    position: relative;
    background: linear-gradient(135deg, #003893 0%, #001a4d 50%, #DC143C 100%);
    border-radius: 20px;
    padding: 3.5rem 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-left: 0;
    overflow: hidden;
}

.newsletter-close {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 40px;
    height: 40px;
    background: #000;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.newsletter-close:hover {
    background: #333;
    transform: rotate(90deg);
}

.newsletter-decorative-corner {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(0, 224, 255, 0.3) 100%);
    opacity: 0.6;
    filter: blur(60px);
}

.newsletter-corner-tl {
    top: -100px;
    left: -100px;
}

.newsletter-corner-br {
    bottom: -100px;
    right: -100px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.newsletter-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.newsletter-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.newsletter-input {
    flex: 1;
    padding: 1.25rem 1.75rem;
    border: none;
    font-size: 1rem;
    color: #1f2937;
    outline: none;
    background: transparent;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-submit {
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #DC143C 0%, #ff1744 100%);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding-left: 3rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.5);
}

.newsletter-submit:hover {
    background: #ffffff;
    color: #DC143C;
    transform: translateX(3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6);
}

.newsletter-submit:active {
    transform: translateX(1px);
}

/* Thank You Message */
.newsletter-thank-you {
    text-align: center;
    padding: 2rem 0;
}

.thank-you-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.thank-you-message {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-card-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 2rem;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .cta-card-content h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-subscribe-card {
        padding: 2.5rem 1.5rem;
        width: 100%;
        margin-left: 0;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .newsletter-submit {
        clip-path: none;
        padding: 1.25rem 2rem;
        border-radius: 0 0 8px 8px;
    }
    
    .newsletter-input {
        border-radius: 8px 8px 0 0;
    }
    
    .newsletter-close {
        width: 35px;
        height: 35px;
        top: 1rem;
        left: 1rem;
    }
}

/* ========================================
   DONATION PAGE - Full donation experience
   ======================================== */

.donation-full-page {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, white 50%);
}

.donation-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.donation-header h1 {
    color: #003893;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.donation-intro {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.8;
}

.donation-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
}

.donation-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.donation-form h2 {
    color: #003893;
    margin-bottom: 2rem;
}

.donation-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.amount-option {
    position: relative;
    cursor: pointer;
}

.amount-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.amount-option .amount-value,
.amount-option.custom {
    display: block;
    padding: 1rem;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.amount-option input[type="radio"]:checked + .amount-value {
    border-color: #DC143C;
    background: #DC143C;
    color: white;
}

.amount-option:hover .amount-value,
.amount-option:hover {
    border-color: #003893;
}

.custom-amount {
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1rem;
    padding: 0;
    margin-top: 0.5rem;
}

.donation-frequency {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.donation-frequency label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
}

.donation-impact {
    background: linear-gradient(135deg, #003893 0%, #001a4d 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.donation-impact h3 {
    margin-bottom: 1.5rem;
}

.impact-examples {
    display: grid;
    gap: 1rem;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.impact-item i {
    font-size: 1.5rem;
    color: #00e0ff;
}

.donation-secure {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.donation-testimonials {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.donation-testimonials blockquote {
    font-style: italic;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

.donation-testimonials cite {
    display: block;
    margin-top: 1rem;
    color: #003893;
    font-weight: 600;
}

/* ========================================
   NEWSLETTER PAGE - Full subscription experience
   ======================================== */

.newsletter-full-page {
    padding: 6rem 0;
    background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}

.newsletter-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.newsletter-header h1 {
    color: #003893;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter-intro {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.8;
}

.newsletter-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 56, 147, 0.15);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #DC143C;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #003893;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.newsletter-form-wrapper {
    background: linear-gradient(135deg, #003893 0%, #001a4d 100%);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.newsletter-signup-form h2 {
    margin-bottom: 2rem;
}

.newsletter-signup-form .form-group {
    margin-bottom: 1.5rem;
}

.newsletter-signup-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.newsletter-signup-form input[type="text"],
.newsletter-signup-form input[type="email"] {
    width: 100%;
    padding: 0.875rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
}

.newsletter-signup-form input[type="checkbox"] {
    margin-right: 0.5rem;
}

.newsletter-signup-form .btn-large {
    width: 100%;
    margin-top: 1rem;
}

.privacy-note {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    opacity: 0.9;
}

.privacy-note a {
    color: #00e0ff;
    text-decoration: underline;
}

/* ========================================
   CONTACT PAGE - Design futuriste moderne
   ======================================== */

.contact-futuristic-page {
    background: linear-gradient(180deg, #000814 0%, #001d3d 50%, #000814 100%);
    min-height: 100vh;
    padding: 0;
}

/* Hero Contact avec animation */
.contact-hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 224, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-icon-animated {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon-animated i {
    font-size: 4rem;
    color: #00e0ff;
    filter: drop-shadow(0 0 20px rgba(0, 224, 255, 0.8));
    z-index: 2;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border: 3px solid #00e0ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 0.5s;
}

.pulse-ring.delay-2 {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.gradient-text {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00e0ff 0%, #ffffff 50%, #DC143C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Grille principale */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    padding: 4rem 0 6rem;
    position: relative;
    z-index: 2;
}

/* Formulaire futuriste */
.contact-form-futuristic {
    background: rgba(0, 29, 61, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 224, 255, 0.2);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
}

.modern-contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Floating Labels */
.form-floating {
    position: relative;
    margin-bottom: 2rem;
}

.form-floating input,
.form-floating select,
.form-floating textarea {
    width: 100%;
    padding: 1.25rem 1rem 0.75rem;
    background: rgba(0, 56, 147, 0.2);
    border: none;
    border-bottom: 2px solid rgba(0, 224, 255, 0.3);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 10px 10px 0 0;
}

.form-floating input:focus,
.form-floating select:focus,
.form-floating textarea:focus {
    outline: none;
    background: rgba(0, 56, 147, 0.3);
    border-bottom-color: #00e0ff;
}

.form-floating label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label,
.form-floating select:focus + label,
.form-floating select:not([value=""]) + label,
.form-floating textarea:focus + label,
.form-floating textarea:not(:placeholder-shown) + label {
    top: 0.25rem;
    font-size: 0.75rem;
    color: #00e0ff;
}

.form-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00e0ff, #DC143C);
    transition: width 0.4s ease;
}

.form-floating input:focus ~ .form-bar,
.form-floating select:focus ~ .form-bar,
.form-floating textarea:focus ~ .form-bar {
    width: 100%;
}

.textarea-wrapper {
    position: relative;
}

.char-counter {
    position: absolute;
    bottom: -1.5rem;
    right: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Bouton futuriste */
.btn-futuristic {
    position: relative;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #DC143C 0%, #b01030 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.btn-futuristic:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: btnGlow 3s linear infinite;
}

@keyframes btnGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-success {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(0, 224, 127, 0.1);
    border: 1px solid #00e07f;
    border-radius: 15px;
    color: #00e07f;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: successSlide 0.5s ease;
}

@keyframes successSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carte communauté sociale dans formulaire */
.social-community-card {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(0, 56, 147, 0.2) 100%);
    border: 1px solid rgba(0, 224, 255, 0.3);
    border-radius: 25px;
    text-align: center;
}

.social-community-card h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.community-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.social-grid-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

/* Cartes d'information */
.contact-info-futuristic {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(0, 29, 61, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 224, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 224, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    border-color: #00e0ff;
    box-shadow: 0 10px 40px rgba(0, 224, 255, 0.2);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #DC143C, #b01030);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.info-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: #00e0ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #ffffff;
}

.small-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6) !important;
}

.link-futuristic {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00e0ff;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.75rem;
    transition: all 0.3s ease;
}

.link-futuristic:hover {
    gap: 0.75rem;
}

/* Réseaux sociaux */
.social-card {
    background: linear-gradient(135deg, rgba(0, 56, 147, 0.4) 0%, rgba(0, 29, 61, 0.6) 100%);
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link-futuristic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link-futuristic.facebook::before {
    background: linear-gradient(135deg, #1877f2, #0c5fcd);
}

.social-link-futuristic.twitter::before {
    background: linear-gradient(135deg, #1da1f2, #0c8bd9);
}

.social-link-futuristic.instagram::before {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-link-futuristic.linkedin::before {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.social-link-futuristic:hover::before {
    opacity: 1;
}

.social-link-futuristic:hover {
    border-color: white;
    transform: translateY(-5px);
}

.social-link-futuristic i {
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.social-name {
    font-size: 0.875rem;
    color: white;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.social-stat {
    font-size: 0.75rem;
    color: #00e0ff;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* FAQ Rapide */
.faq-quick {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2) 0%, rgba(0, 29, 61, 0.6) 100%);
}

.faq-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.faq-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.faq-list i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: #00e0ff;
}

.faq-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-list a:hover {
    color: #00e0ff;
    padding-left: 0.5rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gradient-text {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* CTA Cards Mobile */
    .cta-card-inline {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .cta-card-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cta-text-content {
        text-align: center;
    }
    
    .cta-card-content .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Contact Page Mobile */
    .contact-hero {
        padding: 5rem 0 3rem;
    }
    
    .gradient-text {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-icon-animated {
        width: 80px;
        height: 80px;
    }
    
    .hero-icon-animated i {
        font-size: 2.5rem;
    }
    
    .pulse-ring {
        width: 80px;
        height: 80px;
    }
    
    .contact-form-futuristic {
        padding: 2rem;
    }
    
    .modern-contact-form .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-grid,
    .social-grid-large {
        grid-template-columns: 1fr;
    }
    
    .social-community-card {
        padding: 2rem;
    }
}

/* Ancien style contact page (deprecated) */
.contact-full-page {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, white 50%);
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-header h1 {
    color: #003893;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.8;
}

.contact-content-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    color: #003893;
    margin-bottom: 2rem;
}

.contact-form-full .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-full .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-full label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.contact-form-full input,
.contact-form-full select,
.contact-form-full textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-full input:focus,
.contact-form-full select:focus,
.contact-form-full textarea:focus {
    outline: none;
    border-color: #003893;
}

.contact-form-full .btn-large {
    width: 100%;
    margin-top: 1rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-wrapper h2 {
    color: #003893;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: #DC143C;
    margin-top: 0.25rem;
}

.contact-info-item strong {
    display: block;
    color: #003893;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: #666;
    margin: 0;
}

.contact-social {
    background: linear-gradient(135deg, #003893 0%, #001a4d 100%);
    padding: 2rem;
    border-radius: 15px;
    color: white;
}

.contact-social h3 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #DC143C;
    transform: scale(1.1);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .cta-cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .donation-header h1,
    .newsletter-header h1,
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .newsletter-content-wrapper,
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-full .form-row {
        grid-template-columns: 1fr;
    }
    
    .donation-form,
    .newsletter-form-wrapper,
    .contact-form-wrapper {
        padding: 2rem;
    }
}
