.thank-you-icon {
    animation: scaleIn 0.5s ease;
}

.thank-you-title {
    animation: fadeInUp 0.5s ease 0.2s both;
}

.thank-you-message {
    animation: fadeInUp 0.5s ease 0.4s both;
}

.call-button {
    animation: fadeInUp 0.5s ease 0.6s both;
}

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

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

.contact-info {
    animation: fadeIn 0.5s ease 0.8s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
