/* WRAPPER */
.contact-wrapper {
    width: 100%;
    padding: 60px 20px;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
}

/* CONTACT BOX */
.contact-box {
    width: 100%;
    max-width: 1100px;
    background: #fff;
    display: flex;
    gap: 40px;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* LEFT SIDE */
.contact-info {
    flex: 1;
}

.company-title {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 18px;
    line-height: 1.6;
    color: #555;
}

.contact-info i {
    margin-right: 8px;
    color: #0b3bbf;
}

/* RIGHT SIDE */
.contact-form {
    flex: 1;
}

.form-title {
    font-size: 30px;
    font-family: Roboto, sans-serif;
    color: #0b3bbf;
    font-weight: 600;
    margin-bottom: 30px;
}


/* FORM */
.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0b3bbf;
    outline: none;
}

.contact-form textarea {
    min-height: 120px;
    resize: none;
}

.btn-send {
    padding: 12px;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-send:hover {
    background-color: #092c8e !important;
}

/* ============================= */
/* 📱 RESPONSIVE MOBILE */
/* ============================= */

@media (max-width: 992px) {
    .contact-box {
        flex-direction: column;
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .page-title-area {
        padding: 60px 20px !important;
    }

    .page-title-area h1 {
        font-size: 26px;
    }

    .contact-wrapper {
        padding: 40px 15px;
    }

    .contact-box {
        padding: 20px;
    }

    .form-title {
    font-size: 20px;
    font-family: Roboto, sans-serif;
    color: #0b3bbf;
    font-weight: 500;
    margin-bottom: 20px;

    }
}

