.contact-section {
    padding: 60px 60px;
}

.contact-heading {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-sub {
    color: #bbb;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.contact-left {
    width: 90%;
    display: flex;
    flex-direction: column;
}

.contact-left label {
    margin-bottom: 5px;
}

.contact-left input,
.contact-left textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid #1d3c40;
    padding: 12px;
    border-radius: 8px;
    color: white;
    margin-bottom: 18px;
}

.contact-left textarea {
    height: 130px;
    resize: none;
}

.send-btn {
    width: 150px;
    margin-top: 5px;
}

.contact-right {
    width: 48%;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.whatsapp-btn,
.call-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.call-btn {
    background: #167cff;
    color: white;
}

.info-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid #1d3c40;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.info-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.info-box p {
    color: #ccc;
    margin-bottom: 5px;
}

.map-box {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #1d3c40;
}

.map-image {
    height: 120px;
    background: url("../images/mapp\ \(2\).png") center/cover no-repeat;
    border-radius: 8px;
    margin-bottom: 10px;
}



/* ============================== */



/* ===== CONTACT SECTION RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-container {
        flex-wrap: wrap;
        gap: 25px;
    }

    .contact-left,
    .contact-right {
        width: 48%;
    }

    .map-box iframe {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 20px;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-left input,
    .contact-left textarea {
        width: 100%;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .send-btn {
        width: 100%;
    }

    .map-box iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-heading {
        font-size: 22px;
    }

    .contact-sub {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .contact-left label {
        font-size: 14px;
    }

    .contact-left input,
    .contact-left textarea {
        padding: 10px;
        font-size: 14px;
    }

    .whatsapp-btn,
    .call-btn {
        font-size: 13px;
        padding: 10px 16px;
        justify-content: center;
    }

    .info-box h3 {
        font-size: 16px;
    }

    .info-box p {
        font-size: 13px;
    }

    .map-box p {
        font-size: 13px;
    }
}
