:root {
  color-scheme: light only;
}

/* Override any dark mode media queries */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light only;
  }
}

/* Team Page Styles */

.main-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 200px);
}

.team-container {
    width: 100%;
}

/* Header Section */
.team-header {
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.team-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.team-title i {
    margin-right: 0.5rem;
    color: #FFD700;
}

.team-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    opacity: 0.95;
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Team Member Cards */
.team-member {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4d18c9, #5552ee, #4d18c9);
    border-radius: 20px 20px 0 0;
}

.team-member:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Member Avatar */
.member-avatar {
    text-align: center;
    margin-bottom: 1.5rem;
}

.member-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.team-member:hover .member-logo {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Member Info */
.member-info {
    text-align: center;
}

.member-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.member-description {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Member Details */
.member-details {
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.detail-item i {
    font-size: 1.1rem;
    color: #FFD700;
    margin-right: 1rem;
    min-width: 22px;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.detail-item span {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Styles pour les liens dans les cartes des membres */
.detail-item a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

.detail-item a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    opacity: 0.8;
}

.detail-item a:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

.detail-item a:focus {
    color: #ffffff !important;
    text-decoration: none !important;
    outline: 1px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

/* Call to Action Section */
.team-cta {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 3.5rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.team-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4d18c9, #5552ee, #4d18c9);
    border-radius: 20px 20px 0 0;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.cta-content h2 i {
    margin-right: 0.5rem;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #FFA500, #FF6B6B);
}

.cta-button i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .team-title {
        font-size: 2rem;
    }
    
    .team-subtitle {
        font-size: 1rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-avatar i {
        font-size: 3rem;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .team-cta {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .detail-item i {
        margin-bottom: 0.3rem;
        margin-right: 0;
    }
}

/* Animation pour l'apparition des éléments */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-member {
    animation: fadeInUp 0.6s ease forwards;
}

/* Délai d'animation pour chaque carte */
.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }
.team-member:nth-child(5) { animation-delay: 0.5s; }
.team-member:nth-child(6) { animation-delay: 0.6s; }

/* Effet de survol pour les icônes */
.detail-item i {
    transition: all 0.3s ease;
}

.detail-item:hover i {
    transform: scale(1.2);
    color: #FFA500;
}

/* Effet de pulsation pour les avatars */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.member-avatar i {
    animation: pulse 3s ease-in-out infinite;
}

.team-member:hover .member-avatar i {
    animation: none;
}

/* Styles pour la page des mentions légales */
.legal-content {
    margin-bottom: 3rem;
}

.legal-section {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.legal-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.legal-info {
    text-align: center;
    margin-bottom: 2rem;
}

.legal-date {
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.legal-text {
    text-align: left;
}

.legal-text p {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.section-header h2 i {
    margin-right: 0.75rem;
    color: #FFD700;
    font-size: 1.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-content {
    text-align: left;
	color: #fff;
}

.section-content p {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.1rem;
    color: #FFD700;
    margin-right: 1rem;
    min-width: 22px;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-item span {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Animation pour l'apparition des sections légales */
.legal-section {
    animation: fadeInUp 0.6s ease forwards;
}

/* Délai d'animation pour chaque section */
.legal-section:nth-child(1) { animation-delay: 0.1s; }
.legal-section:nth-child(2) { animation-delay: 0.2s; }
.legal-section:nth-child(3) { animation-delay: 0.3s; }
.legal-section:nth-child(4) { animation-delay: 0.4s; }
.legal-section:nth-child(5) { animation-delay: 0.5s; }
.legal-section:nth-child(6) { animation-delay: 0.6s; }

/* Responsive pour les mentions légales */
@media (max-width: 768px) {
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-item i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

/* Styles pour la page À propos */
.about-content {
    margin: 0 auto;
}

.about-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-intro {
    text-align: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    margin: 0;
    font-weight: 300;
}

/* Styles pour les groupes cibles */
.target-groups {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.target-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.target-group:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.group-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.group-icon i {
    font-size: 1.5rem;
    color: #FFD700;
}

.group-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.group-content p {
    font-size: 0.95rem;
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

/* Styles pour la liste des objectifs */
.objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.objectives-list li {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
}

.objectives-list li:last-child {
    border-bottom: none;
}

.objectives-list li i {
    color: #FFD700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

/* Styles pour la carte développeur */
.developer-info {
    margin-top: 2rem;
}

.developer-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.developer-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.developer-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.developer-icon i {
    font-size: 1.8rem;
    color: #FFD700;
}

.developer-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.developer-content p {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

/* Responsive pour la page à propos */
@media (max-width: 768px) {
    .target-group {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .developer-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .objectives-list li {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 0.5rem;
    }
    
    .objectives-list li i {
        margin-right: 0;
        margin-bottom: 0.25rem;
    }
}

/* Styles pour la page Contact */
.contact-content {
    margin: 0 auto;
}

.contact-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Informations de contact */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.contact-icon i {
    font-size: 1.8rem;
    color: #FFD700;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.contact-details p {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-details a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Formulaire de contact */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.required {
    color: #FFD700;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* CAPTCHA */
.captcha-group {
    margin-top: 1rem;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

#captcha-image {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: white;
}

.refresh-btn {
    padding: 0.75rem;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #FFD700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: rotate(180deg);
}

/* Bouton de soumission */
.submit-btn {
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #FFA500, #FF6B6B);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Messages d'erreur */
.error-message {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	display: none;
}

/* Message de succès */
.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(40, 167, 69, 0.95);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.success-content p {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.6;
}

/* Informations de disponibilité */
.availability-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.availability-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.availability-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.availability-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.availability-icon i {
    font-size: 1.5rem;
    color: #FFD700;
}

.availability-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.availability-content p {
    font-size: 0.95rem;
    color: #ffffff;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

/* Responsive pour la page contact */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .availability-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .captcha-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
    
    .success-message {
        margin: 1rem;
        padding: 1.5rem;
    }
}
