/* ==========================
   Contact Form Success Message
   ========================== */

.contact-success-message {
    display: none;
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(197, 166, 83, 0.08) 0%, rgba(197, 166, 83, 0.02) 100%);
    border-radius: 12px;
    border: 2px solid rgba(197, 166, 83, 0.2);
    margin-top: 20px;
    max-width: 420px;
    animation: slideInUp 0.5s ease;
}

.contact-success-message.show {
    display: block;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #C5A653 0%, #8A6E11 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(197, 166, 83, 0.3);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    color: #ffffff;
    animation: checkmarkDraw 0.8s ease 0.3s both;
}

@keyframes checkmarkDraw {
    from {
        stroke-dasharray: 100;
        stroke-dashoffset: 100;
    }

    to {
        stroke-dasharray: 100;
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    animation: fadeInUp 0.5s ease 0.2s both;
}

.success-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    animation: fadeInUp 0.5s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}