

/* MAIN WRAPPER */
.contact-section {
    padding: 60px 0;
    background: #f8f6f6;
    font-family: 'Inter', sans-serif;
}

/* FLEX BOX */
.contact-flex {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT FORM */
.left-form h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 35px;
}

/* FORM DESIGN */
.smart-form label {
    font-size: 14px;
    margin-top: 20px;
    display: block;
}

.smart-form input,
.smart-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #c9c9c9;
    padding: 12px 0;
    outline: none;
    background: transparent;
    font-size: 15px;
}

.smart-form textarea {
    height: 80px;
    resize: none;
}

/* GOLD BUTTON */
.submit-btn {
    margin-top: 30px;
    background: #c7a148;
    color: #fff;
    padding: 12px 35px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    border-radius: 4px;
    letter-spacing: 1px;
}

.submit-btn:hover {
    opacity: 0.9;
}

/* RIGHT INFO */
.right-info {
    max-width: 350px;
    font-size: 15px;
}

.phone-link {
    display: block;
    font-size: 18px;
    margin: 10px 0;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.call-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
}

.call-box img {
    width: 28px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-flex {
        flex-direction: column;
    }

    .right-info {
        margin-top: 40px;
    }
}
