/* =========== CONTACT SECTION =========== */
.contact-section {
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin: 80px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Form Styling */
.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section label {
    text-align: left;
    font-weight: bold;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.contact-section textarea {
    height: 120px;
    resize: none;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 12px;
    background: cyan;
    color: black;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: rgb(0, 255, 183);
    transform: scale(1.05);
}

/* Contact Icons */
.contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.contact-icons p {
    font-size: 16px;
    color: white;
    margin-right: 10px;
}

.icon {
    font-size: 32px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.icon.discord {
    color: #5865F2;
}

.icon.telegram {
    color: #0088cc;
}

.icon:hover {
    transform: scale(1.2) rotate(5deg);
}

.icon.discord:hover {
    color: #7289da;
}

.icon.telegram:hover {
    color: #00a6dd;
}

/* =========== RESPONSIVE CONTACT PAGE =========== */
@media screen and (max-width: 768px) {
    .contact-section {
        width: 90%;
        margin: 30px auto;
        padding: 20px;
    }

    .btn-submit {
        font-size: 14px;
        padding: 10px;
    }

    .contact-icons {
        flex-direction: column;
        gap: 10px;
    }

    .icon {
        font-size: 28px;
    }

    /* Footer tetap ada tetapi lebih kecil */
    footer {
        font-size: 12px;
        padding: 10px 0;
        text-align: center;
        position: relative;
        bottom: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
    }

    /* Menghindari scroll horizontal */
    body {
        overflow-x: hidden;
    }
}
