.contact-section {
    padding: 50px 20px;
    background: linear-gradient(to right, #fff 50%, #f7fafa 50%);
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-left {
    flex: 1 1 45%;
}

.contact-left .tagline,
.contact-form .tagline {
    color: #0c5f4c;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px !important;
    text-transform: uppercase;
}

.contact-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px !important;
}

.contact-left .desc {
    font-size: 15px;
    color: #444;
    margin-bottom: 30px !important;
}

.contact-info {
    background: #f2f7f7;
    padding: 25px;
    border-radius: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px !important;
}

.info-item .icon {
    background: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.label {
    font-size: 13px;
    color: #888;
    margin-bottom: 4px !important;
}

.value {
    font-weight: 600;
    color: #103c36;
    font-size: 15px;
}

.contact-info hr {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 15px 0;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    flex: 1 1 45%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px !important;
    position: relative;
}

.form-title .underline {
    display: block;
    width: 80px;
    height: 5px;
    background: tomato;
    margin-top: 6px;
    border-radius: 2px;
}

form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px !important;
    flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
    resize: none;
}

input:focus,
textarea:focus {
    border-color: #0c5f4c;
}

.contact-form textarea {
    margin-bottom: 15px !important;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px !important;
    font-size: 14px;
}

.contact-form button {
    background: var(--black-color);
    color: #fff;
    border-radius: 6px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    border: none;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #094638;
}

.map_wrapper iframe {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-left,
    .contact-form {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-title {
        font-size: 20px;
    }
    .contact-form input, .contact-form textarea{
        padding: 8px 1rem;
    }

    .contact-left h2 {
        font-size: 20px;
    }
    .value{
        font-size: 14px;
    }
    .contact-form{
        padding: 20px;
    }
}