    /* Style Form */
    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
        margin: 30px auto;
        padding: 20px;
        background: #f9f9f9;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .contact-form input,
    .contact-form textarea {
        padding: 14px;
        border-radius: 8px;
        border: 1px solid #ddd;
        font-size: 16px;
        width: 100%;
        transition: all 0.3s;
        box-sizing: border-box;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0,123,255,0.2);
    }

    .send-btn {
        padding: 14px;
        background: linear-gradient(to right, #007bff, #0056b3);
        color: white;
        font-size: 16px;
        font-weight: bold;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 6px rgba(0,123,255,0.2);
    }

    .send-btn:hover {
        background: linear-gradient(to right, #0056b3, #004494);
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0,123,255,0.3);
    }

    .send-btn:active {
        transform: translateY(0);
    }

    /* Container untuk animasi GIF */
    .animation-container {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1000;
        display: none;
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* GIF Styling */
    .status-gif {
        width: 150px;
        height: 150px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .status-text {
        font-weight: bold;
        font-size: 18px;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        margin-top: 10px;
    }

    /* Animasi untuk GIF */
    @keyframes fadeInOut {
        0% { opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { opacity: 0; }
    }

    .show-animation {
        display: flex;
        animation: fadeInOut 4s ease-in-out forwards;
    }

    /* Efek Konfeti */
    #confetti {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999;
        pointer-events: none;
        display: none;
    }

    .confetti-piece {
        position: absolute;
        width: 10px;
        height: 20px;
        opacity: 0;
        animation: confetti-fall 5s linear forwards;
    }

    @keyframes confetti-fall {
        0% {
            opacity: 1;
            top: -50px;
            transform: rotate(0deg);
        }
        100% {
            opacity: 0;
            top: 100vh;
            transform: rotate(720deg);
        }
    }

    /* Responsif untuk mobile */
    @media (max-width: 768px) {
        .status-gif {
            width: 120px;
            height: 120px;
        }
        
        .status-text {
            font-size: 16px;
        }
        
        .animation-container {
            width: 90%;
        }
        .contact-from {
            margin-top: 30px;
        }
    }