﻿.hero {
    min-height: 0;
    padding-bottom: 30px;
}

.contact-section {
    width: 90%;
    max-width: 1400px;
    margin: 30px auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.left-content {
    flex: 1;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #d7e4ee;
    border-radius: 30px;
    background: #fff;
    color: #1e4b69;
    font-weight: 500;
    font-size: 12px;
}

.tag i {
    color: #1e4b69;
    font-size: 14px;
}

.left-content h1 {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 500;
    color: #111;
    margin-bottom: 14px;
}

.left-content p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 24px;
}

.contact-boxes {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 10px;
}

.light {
    background: #dff3ff;
}

.dark {
    background: #1e4b69;
    color: #fff;
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1e4b69;
    flex-shrink: 0;
}

.icon i {
    color: #fff;
    font-size: 16px;
}

.icon.white {
    background: #dff3ff;
}

.icon.white i {
    color: #1e4b69;
}

.white {
    background: #d8f4ff;
}

.card h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.card span {
    font-size: 13px;
}

.map {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.form-container {
    width: 580px;
    background: #fff;
    padding: 42px 44px;
    border-radius: 18px;
    border: 1px solid #ECECEC;
    box-shadow:
        0px 2px 6px rgba(0, 0, 0, .03),
        0px 10px 30px rgba(0, 0, 0, .04);
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: #f1f1f1;
    border-radius: 6px;
    margin-bottom: 22px;
    outline: none;
    font-size: 15px;
}

textarea {
    resize: none;
}

button {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 8px;
    background: #234F6D;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

button:hover {
    background: #1C445E;
}

@media(max-width:992px) {

    .contact-section {
        flex-direction: column;
    }

    .form-container {
        width: 100%;
    }

    .left-content h1 {
        font-size: 30px;
    }

    .contact-boxes {
        flex-direction: column;
    }

}
