* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* bottom scrollbar fix */
}

.contact-section {
    margin-top: 80px;
}

/* LEFT CONTENT */
.left-content h5 {
    margin-bottom: 20px;
    color: #000;
}

.left-content h6 {
    color: #000;
    margin-top: 25px;
}

.left-content p {
    font-size: 15px;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.left-content span {
    font-size: 14px;
    color: #555;
}

/* RIGHT FORM */
.right-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.right-form input,
.right-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
}

/* CLICK / FOCUS BORDER */
.right-form input:focus,
.right-form textarea:focus {
    border: 1px solid #000;
}


.right-form textarea {
    resize: none;
}

.right-form button {
    width: 180px;
    padding: 13px;
    background: #1f1f1f;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 500;
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 576px) {

    /* Left content spacing & alignment */
    .left-content {
        margin-bottom: 25px;
    }

    .left-content h5,
    .left-content h6 {
        margin-bottom: 20px;
    }

    .left-content p {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .left-content span {
        font-size: 16px;
        color: #1f1f1f;
    }

    /* Form full width & spacing */
    .right-form input,
    .right-form textarea {
        width: 100%;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .right-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }

    /* Button full width on mobile */
    .right-form button {
        width: 45%;
        justify-content: start;
        padding: 12px;
        margin-top: 30px;
        margin-bottom: 70px;
    }
}