.container {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    display: flex;
    overflow: hidden;
}

/* LEFT */
.form-section {
    width: 60%;
    padding: 30px;
}

.form-section h2 {
    margin-bottom: 20px;
    color: var(--c1);
    display: flex;
    justify-content: center;
}

label {
    font-size: 14px;
    color: var(--c2);
    display: block;
    margin-bottom: 5px;
}

.phone select,
input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--c3);
    border-radius: 6px;
    font-size: 14px;
    color: var(--c1);
}

textarea {
    resize: none;
    height: 120px;
}

input[type="checkbox"] {
    width: 5%;
    accent-color: var(--c3);
    border-color: var(--c1);
}

.phone {
    display: flex;
    gap: 8px;
    flex-direction: row-reverse;
}

.phone select {
    width: 120px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.checkbox span {
    margin-bottom: 15px;
    color: var(--c2);
}

.buttons {
    display: flex;
    gap: 10px;
}

.buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.send {
    background: var(--c1);
    color: #fff;
}

.reset {
    background: var(--c3);
}

.info-bottom {
    display: flex;
    justify-content: space-evenly;
    margin-top: 25px;
    font-size: 13px;
    color: var(--c2);
    align-items: center;
}

.info-bottom strong {
    color: var(--c1);
}

/* RIGHT */
.info-section {
    width: 40%;
    background: linear-gradient(var(--c1), var(--c1), var(--c2), var(--c3), var(--arrow), #fff);
    color: #fff;
    padding: 30px;
}

.badge {
    background: var(--c3);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 13px;
    margin-bottom: 15px;
    position: relative;
    right: 80px;
}

.info-section h3 {
    margin: 10px 0;
    font-size: 22px;
}

.info-section p {
    font-size: 14px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    font-size: 14px;
}

.contact-item i {
    background: var(--c3);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 1px 5px #0000009c;
}

.contact-item i:hover {
    background: #fff;
    color: var(--c3);
    box-shadow: 0 2px 6px #fff;
}

.tel p {
    direction: ltr;
}

.map {
    margin-top: 20px;
    background: linear-gradient(var(--c1), var(--arrow));
    height: 150px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c3);
}

.map:hover {
    background: linear-gradient(var(--arrow), var(--c1));
}

.social-us {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-us a {
    border: 1px solid #fff;
    padding: 8px 15px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

@media(max-width:900px) {
    .container {
        flex-direction: column;
    }

    .form-section,
    .info-section {
        width: 100%;
    }


    .social-us {
        margin-top: 40px;
    }

    .social-us a {
        border: 1px solid var(--c2);
        color: var(--c2);
    }
}