.contact-top {
    padding: 35px 0px;
}

.contact-container {
    margin: auto;
    display: flex;
    gap: 60px;
    padding: 35px 0px;
    align-items: center;
}

/* LEFT */
.contact-left {
    width: 50%;
}

.contact-left h2 {
    font-size: 34px;
    color: #f7c41c;
    margin-bottom: 15px;
}

.subtitle {
    color: #ddd;
    margin-bottom: 30px;
}

.contact-info .info-item {
    display: flex;
    gap: 15px;
    /* margin-bottom: 20px; */
    font-size: 14px;
    line-height: 1.6;
}

.contact-info i {
    color: #f7c41c;
    font-size: 18px;
    margin-top: 4px;
}

/* RIGHT FORM */
.contact-right {
    width: 50%;
}

.contact-form {
    background: transparent;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: none;
    outline: none;
    font-size: 14px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(to right, #f7c41c, #82c513);
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}


.contact-icon {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    object-fit: contain;
}

.phone-link {
    color: #fff;              /* or #ddd / #f7c41c */
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    color: #f7c41c;
}

.contact-form button:hover {
    opacity: 0.9;
}

.contact-bottom {
    position: relative;
    height: 500px;        /* control height */
    overflow: hidden;
}

/* Background Image */
.contact-bg {
    position: absolute;
    inset: 0;
    background: url("../images/contact/img-4.webp") center/cover no-repeat;
    z-index: 1;
}

/* Container */
.container {
    margin: auto;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Responsive heights */
@media (max-width: 768px) {
    .contact-bottom {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .contact-bottom {
        height: 220px;
    }
}


.icon-box {
    display: flex;
    gap: 15px;
}

.icon-box span {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    display: grid;
    place-items: center;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.icon-box span:hover {
    background: #f7c41c;
    color: #000;
    border-color: #f7c41c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-top {
        padding: 30px 20px;
    }

    .contact-left h2 {
        font-size: 28px;
    }

    .contact-bottom h2 {
        font-size: 26px;
    }
}