/* =========================================================
   MESSAGE DE CONFIRMATION — STYLE PREMIUM
   ========================================================= */

.success-message {
    background: rgba(0, 255, 150, 0.15);
    border: 1px solid rgba(0, 255, 150, 0.4);
    color: #00ff9a;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 12px rgba(0, 255, 150, 0.2);
    opacity: 0;
    transform: translateY(-8px);
}

.success-icon {
    font-size: 1.3rem;
    font-weight: bold;
}

.success-animate {
    animation: fadeSlideIn 0.6s ease forwards;
}

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


/* =========================================================
   FORMULAIRE DE CONTACT — STYLE PREMIUM
   ========================================================= */

.contact-form-pro {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 0.95rem;
    color: #e0e0e0;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 14px;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(6px);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #00ff9a;
    box-shadow: 0 0 10px rgba(0, 255, 150, 0.25);
}

textarea {
    min-height: 130px;
    resize: vertical;
}


/* =========================================================
   BOUTON ENVOYER — STYLE PREMIUM
   ========================================================= */

.btn-primary {
    background: linear-gradient(135deg, #00ff9a, #00c77a);
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 0 12px rgba(0, 255, 150, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(0, 255, 150, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 0 10px rgba(0, 255, 150, 0.2);
}