    .contact-hero {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: url('{{ asset("img/glow.png") }}') no-repeat center center fixed;
        background-size: cover;
        padding: 40px 20px;
    }

    .contact-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 80px; /* sama kaya sebelumnya */
    font-weight: 900;
    text-transform: uppercase; /* huruf besar semua */
    margin-bottom: 30px; /* sama kaya sebelumnya */
    
    /* gradasi warna */
    background: linear-gradient(
        to right,
        #ffffff 0%,
        #d9d9d9 40%,
        #555555 70%,
        #434343ff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* animasi muncul dari kiri */
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1.5s ease-out forwards;

    line-height: 1.1;
    word-wrap: break-word;
    text-align: left; /* posisinya sama kaya sebelumnya */
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



    .contact-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        max-width: 400px;
    }

    .contact-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 15px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 18px;
        background: #44B486;
        color: white;
        transition: 0.3s;
        width: 100%;
    }

    .contact-links a:hover {
        background: #2d7f5b;
        color: #fff;
    }

    .contact-links i {
        font-size: 24px;
    }